Author: toad
Date: 2007-11-30 11:49:19 +0000 (Fri, 30 Nov 2007)
New Revision: 16119

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1079: (Mandatory soon)
- Italian updates from _ph00
- Fix various bugs clobbering various files (only on Windows) due to us not 
closing the fd's before moving the files.

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-11-30 11:43:25 UTC (rev 
16118)
+++ trunk/freenet/src/freenet/node/Version.java 2007-11-30 11:49:19 UTC (rev 
16119)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 1078;
+       private static final int buildNumber = 1079;

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1074;
-       private static final int newLastGoodBuild = 1078;
+       private static final int newLastGoodBuild = 1079;
        static final long transitionTime;

        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2007, Calendar.DECEMBER, 5, 0, 0, 0 );
+               _cal.set( 2007, Calendar.DECEMBER, 6, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to