Author: toad
Date: 2008-11-18 23:39:58 +0000 (Tue, 18 Nov 2008)
New Revision: 23746

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1180: (MANDATORY THURSDAY)
Client layer:
- Paranoia in archive unpacking.
- Trivial refactoring.
Temp buckets:
- Probably fix bug #2694: Fix a bug with migrating a bucket to disk closing all 
the input streams. This was a regression introduced in 22299. Add a unit test 
for it. Also add a unit test.
Misc:
- Pull ext #25.
Dev stuff:
- Use a relative svn:externals for the plugins. Fixes building from anonymously 
checked out source.
- Support standards-compliant base64 encoding/decoding as well as our variant.
- Comments.
- Logging.

Website:
- Remove --ignore-externals from svn co, not needed now.

XMLLibrarian:
- 16: update wAnnA? to edition 16

nextgens
toad
sdiz


EXT #25:
- Fix a major bug in MersenneTwister: a build optimisation accidentally caused 
us to only fill every fourth slot in the seed ints, resulting in different 
output for the same byte[] input, resulting in FEC breaking whenever the last 
block is in the input to the decode.
- Introduce unit tests to prevent this from happening again!


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-11-18 20:50:45 UTC (rev 
23745)
+++ trunk/freenet/src/freenet/node/Version.java 2008-11-18 23:39:58 UTC (rev 
23746)
@@ -24,17 +24,17 @@
        public static final String protocolVersion = "1.0";
 
        /** The build number of the current revision */
-       private static final int buildNumber = 1179;
+       private static final int buildNumber = 1180;
 
        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 1175;
-       private static final int newLastGoodBuild = 1178;
+       private static final int oldLastGoodBuild = 1178;
+       private static final int newLastGoodBuild = 1180;
        static final long transitionTime;
        
        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2008, Calendar.NOVEMBER, 16, 0, 0, 0 );
+               _cal.set( 2008, Calendar.NOVEMBER, 20, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }
        

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to