Author: nextgens
Date: 2006-12-05 21:12:52 +0000 (Tue, 05 Dec 2006)
New Revision: 11249

Modified:
   trunk/apps/Thaw/src/thaw/core/Main.java
Log:
Tweak Thaw's versionning system so that emu's autobuild script can parse it 
more easily


Modified: trunk/apps/Thaw/src/thaw/core/Main.java
===================================================================
--- trunk/apps/Thaw/src/thaw/core/Main.java     2006-12-05 20:47:06 UTC (rev 
11248)
+++ trunk/apps/Thaw/src/thaw/core/Main.java     2006-12-05 21:12:52 UTC (rev 
11249)
@@ -12,11 +12,17 @@
  */
 public class Main {

-       public final static String VERSION="0.6 WIP r at custom@";
-       //public final static String VERSION="0.5.9b Beta";
+       public final static String VERSION;

+       static{
+               char    _major = 0,
+                       _minor = 6;
+               String  _svnBuildNumber = "@custom@";
+               VERSION = _major + '.' + _minor + " WIP r"+_svnBuildNumber;
+       }
+
        /**
-        * Look & feel use by GUI front end
+        * Look & feel use by GUI front end
         */
        private static String lookAndFeel = null;



Reply via email to