Author: toad
Date: 2008-10-27 21:10:43 +0000 (Mon, 27 Oct 2008)
New Revision: 23116
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1166: Emergency revert and release with two NPE fixes and nothing else.
1165 was seriously broken.
USERS MAY HAVE TO UPDATE MANUALLY, since the PeerNode NPE probably breaks
message sending and therefore UOM ...
We have probably lost more than half the network, since most users won't ...
I'm sorry ...
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-10-27 21:07:42 UTC (rev
23115)
+++ trunk/freenet/src/freenet/node/Version.java 2008-10-27 21:10:43 UTC (rev
23116)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1165;
+ private static final int buildNumber = 1166
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1164;
- private static final int newLastGoodBuild = 1165;
+ private static final int oldLastGoodBuild = 1165;
+ private static final int newLastGoodBuild = 1166;
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.OCTOBER, 3, 0, 0, 0 );
+ _cal.set( 2008, Calendar.OCTOBER, 29, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}