Author: nextgens
Date: 2008-09-06 21:37:19 +0000 (Sat, 06 Sep 2008)
New Revision: 22508
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1162: mandatory monday
l10n: german, french and swedish update
dev-stuffs: warning-hunt (is likely to be reverted before 1163
fix a deadlock and tell the node to fetch freenet-ext #22
Authors:
toad, nextgens, sdiz, saces, batosai, tommy and Coo
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-09-06 20:27:18 UTC (rev
22507)
+++ trunk/freenet/src/freenet/node/Version.java 2008-09-06 21:37:19 UTC (rev
22508)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1161;
+ private static final int buildNumber = 1162;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1160;
- private static final int newLastGoodBuild = 1161;
+ private static final int newLastGoodBuild = 1162;
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.SEPTEMBER, 13, 0, 0, 0 );
+ _cal.set( 2008, Calendar.SEPTEMBER, 8, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}