Author: nextgens
Date: 2008-08-18 13:11:00 +0000 (Mon, 18 Aug 2008)
New Revision: 22001
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1157: Mandatory on the 20th.
It features an important bugfix: if you are running 1156 you WANT to update!
dev stuff:
- generics for LRUQueue, DoublyLinkedList
- improve the unit test of our lineReader
- switch from a NotImplementedException we used from wrapper to an
UnsupportedOperationException which is in the standard api (needed for next
freenet-ext.jar)
- build.xml: delete the bytecode of the tests in between runs so that
we don't run into problems; Enable stricter compiler warnings
- more work on Buckets ... I'm going to rethink the whole think when
the build is out.
node:
- remove pre-build 1066 datastore compatibility (r15477)
- bug #2501: fix FCP/frost... and probably other not-yet-discovered bugs
- Key: pass a long for maxLength so that it doesn't get casted down
(fix XMLlibrarian)
performance:
- various tweaks to HTMLNode to make fproxy faster
l10n:
- chineses translation update from yongjhen
- german language update from NEOatNHNG
authors:
nextgens
sdiz
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-08-18 13:05:20 UTC (rev
22000)
+++ trunk/freenet/src/freenet/node/Version.java 2008-08-18 13:11:00 UTC (rev
22001)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1156;
+ private static final int buildNumber = 1157;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1154;
- private static final int newLastGoodBuild = 1155;
+ private static final int oldLastGoodBuild = 1155;
+ private static final int newLastGoodBuild = 1157;
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.AUGUST, 13, 0, 0, 0 );
+ _cal.set( 2008, Calendar.AUGUST, 20, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}