Author: nextgens
Date: 2007-11-30 14:14:29 +0000 (Fri, 30 Nov 2007)
New Revision: 16128

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1081: mandatory on the 02/12/07
        * Fix "the connection time isn't displayed anymore on /friends/"
        * Fix the infamous "my node has emptyed his configuration files" bug
        * Really fix insert resuming and maybe fix bugs related to the node not 
sending "completionTime" over fcp

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-11-30 14:06:11 UTC (rev 
16127)
+++ trunk/freenet/src/freenet/node/Version.java 2007-11-30 14:14:29 UTC (rev 
16128)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1074;
-       private static final int newLastGoodBuild = 1080;
+       private static final int newLastGoodBuild = 1081;
        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, 6, 0, 0, 0 );
+               _cal.set( 2007, Calendar.DECEMBER, 2, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to