Author: toad
Date: 2006-11-29 02:53:32 +0000 (Wed, 29 Nov 2006)
New Revision: 11107
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1003 changelog:
- 1002 Mandatory on December 13.
- Fix the USK inserts bug. (Broke jSite inserts except for the first time).
- Probably fix the node-to-node messages flood bug.
- Significantly reduce the packet size of the final stages of connection setup,
hopefully fixes some connection issues where the user is behind a stupid
firewall.
- Require a DSA group and public key in any noderef.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-11-29 01:28:17 UTC (rev
11106)
+++ trunk/freenet/src/freenet/node/Version.java 2006-11-29 02:53:32 UTC (rev
11107)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1002;
+ private static final int buildNumber = 1003;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 990;
- private static final int newLastGoodBuild = 998;
+ private static final int newLastGoodBuild = 1002;
private static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2006, Calendar.DECEMBER, 1, 0, 0, 0 );
+ _cal.set( 2006, Calendar.DECEMBER, 13, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}