Author: toad
Date: 2007-07-17 15:19:46 +0000 (Tue, 17 Jul 2007)
New Revision: 14163

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1045:
- opennet fixes
-- fix adding opennet peers when less than the full number - we weren't adding 
the peer to the routing table!!!!
-- always show the opennet noderef, not just in advanced mode
- further FCP/opennet fixes, add ListPeer command
- french translation updates
Related:
- Work on the spider
- Work on JFK
- Work on the C++ FCP library
Credits:
- zothar
- batosai
- nextgens
- toad
- swati
- kryptos
- mkolar

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-07-17 15:17:17 UTC (rev 
14162)
+++ trunk/freenet/src/freenet/node/Version.java 2007-07-17 15:19:46 UTC (rev 
14163)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";

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

        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1041;
-       private static final int newLastGoodBuild = 1044;
+       private static final int oldLastGoodBuild = 1044;
+       private static final int newLastGoodBuild = 1045;
        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.JULY, 17, 0, 0, 0 );
+               _cal.set( 2007, Calendar.JULY, 19, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to