[Unison-hackers] [unison-svn] r314 - trunk/src

Benjamin C. Pierce bcpierce at seas.upenn.edu
Mon Dec 1 09:00:47 EST 2008


Author: bcpierce
Date: 2008-12-01 09:00:40 -0500 (Mon, 01 Dec 2008)
New Revision: 314

Modified:
   trunk/src/RECENTNEWS
   trunk/src/TODO.txt
   trunk/src/mkProjectInfo.ml
Log:
* Bumped version number to reflect newly added preference





Modified: trunk/src/RECENTNEWS
===================================================================
--- trunk/src/RECENTNEWS	2008-12-01 03:57:57 UTC (rev 313)
+++ trunk/src/RECENTNEWS	2008-12-01 14:00:40 UTC (rev 314)
@@ -1,3 +1,11 @@
+CHANGES FROM VERSION 2.32.0
+
+* Bumped version number to reflect newly added preference
+
+
+
+
+-------------------------------
 CHANGES FROM VERSION 2.31.11
 
 * Fixed a bug that was causing new files to be created with

Modified: trunk/src/TODO.txt
===================================================================
--- trunk/src/TODO.txt	2008-12-01 03:57:57 UTC (rev 313)
+++ trunk/src/TODO.txt	2008-12-01 14:00:40 UTC (rev 314)
@@ -698,7 +698,28 @@
      http://www-2.cs.cmu.edu/~jcl/programs/sync_file.tar.gz
   Make sure you pay attention to the compile line as it is important.
 
+[Ivo Welch] I would do a quick test of case sensitivity in the program
+itself at the time you do a first prf sync, so that the user does not have
+to bother with it.  Just write two files on each end which differ in case,
+and see if there is overwriting.  Then do the smart thing.  The long-named
+file in the .unison directory should keep this information thereafter.
+(BCP: Implementing this is more difficult than it might seem.  E.g.,
+whenever a symlink is followed we might need to go through the same
+exercise.  And then we'd need to be able to deal with replicas that are not
+all one way or the other...)
 
+[Ivo Welch] I would give some examples in the man page of what an xxx
+specification is.
+
+[Ivo Welch] I would allow '--' switches, in addition to the '-' switch spec.
+
+[Ivo Welch] On OSX, create a link from ~/Library/Application Support/Unison
+to .unison, just for ease of finding it. It took me a long time to find my
+.prf files.
+
+[Ivo Welch] the OSX GUI front end should be clear which side (left or right)
+the local host and which side the remote host is.
+
 * USER INTERFACE
 * ==============
 

Modified: trunk/src/mkProjectInfo.ml
===================================================================
--- trunk/src/mkProjectInfo.ml	2008-12-01 03:57:57 UTC (rev 313)
+++ trunk/src/mkProjectInfo.ml	2008-12-01 14:00:40 UTC (rev 314)
@@ -5,8 +5,8 @@
 
 let projectName = "unison"
 let majorVersion = 2
-let minorVersion = 31
-let pointVersionOrigin = 301 (* Revision that corresponds to point version 0 *)
+let minorVersion = 32
+let pointVersionOrigin = 313 (* Revision that corresponds to point version 0 *)
 
 (* Documentation:
    This is a program to construct a version of the form Major.Minor.Point,
@@ -98,3 +98,4 @@
 
 
 
+



More information about the Unison-hackers mailing list