Author: toad
Date: 2008-01-19 18:39:04 +0000 (Sat, 19 Jan 2008)
New Revision: 17168
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1101:
- Minor Serializer fix: when reading a boolean we could mistake end of file for
false.
- Turn off request coalescing.
- Slightly better RecentlyFailed handling.
Apologies for the short mandatory, but the request coalescing is fairly
significant, and we need to get an alpha out soon!
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-01-19 18:34:03 UTC (rev
17167)
+++ trunk/freenet/src/freenet/node/Version.java 2008-01-19 18:39:04 UTC (rev
17168)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1100;
+ private static final int buildNumber = 1101;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1094;
- private static final int newLastGoodBuild = 1100;
+ private static final int newLastGoodBuild = 1101;
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.JANUARY, 23, 0, 0, 0 );
+ _cal.set( 2008, Calendar.JANUARY, 21, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}