[Codestriker-commits] CVS update: codestriker/lib/Codestriker/Repository Cvs.pm
Brought to you by:
sits
|
From: <si...@us...> - 2008-07-05 04:06:55
|
User: sits
Date: 08/07/04 21:06:55
Modified: . CHANGELOG
lib/Codestriker/Repository Cvs.pm
Log:
* "Default to head" option for CVS topic creation was not used when
selected, but when it was unselected. This has now been fixed.
Spotted by mn...@us....
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -r1.239 -r1.240
--- CHANGELOG 2 Jul 2008 00:39:53 -0000 1.239
+++ CHANGELOG 5 Jul 2008 04:06:54 -0000 1.240
@@ -1,6 +1,12 @@
*** When upgrading, don't forget to: "cd bin ; ./install.pl" ***
*** Also, it is _highly_ advisable to backup your data before upgrading ***
+Version 1.9.6
+
+* "Default to head" option for CVS topic creation was not used when
+ selected, but when it was unselected. This has now been fixed.
+ Spotted by mn...@us....
+
Version 1.9.5
* Syntax highlighting is now supported using the highlight package from
Index: Cvs.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/Repository/Cvs.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Cvs.pm 6 Sep 2007 08:02:17 -0000 1.9
+++ Cvs.pm 5 Jul 2008 04:06:54 -0000 1.10
@@ -142,7 +142,7 @@
}
# Cheat - having two '-u's changes nothing.
- my $extra_options = $default_to_head ? '-u' : '-f';
+ my $extra_options = $default_to_head ? '-f' : '-u';
$ENV{'CVS_RSH'} = $Codestriker::ssh if defined $Codestriker::ssh;
|