Author: toad
Date: 2007-09-07 13:48:55 +0000 (Fri, 07 Sep 2007)
New Revision: 14996

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1058: Fix freenet-ext.jar auto-update. Mandatory on Wednesday.

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-09-07 13:41:42 UTC (rev 
14995)
+++ trunk/freenet/src/freenet/node/Version.java 2007-09-07 13:48:55 UTC (rev 
14996)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1054;
-       private static final int newLastGoodBuild = 1056;
+       private static final int oldLastGoodBuild = 1056;
+       private static final int newLastGoodBuild = 1058;
        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.AUGUST, 31, 0, 0, 0 );
+               _cal.set( 2007, Calendar.SEPTEMBER, 12, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to