Author: toad
Date: 2008-02-29 20:04:15 +0000 (Fri, 29 Feb 2008)
New Revision: 18266
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1117:
Link layer:
- Fix the group-lookup code (off by one bug). Sadly that means this will also
have to be mandatory.
- Simplify the noderef decompression code so this doesn't happen again.
- Prevent an unlikely ArrayIndexOutOfBoundsException.
Client layer:
- Fix subdirs in implicit containers.
Dev stuff:
- Logging.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-02-29 20:01:11 UTC (rev
18265)
+++ trunk/freenet/src/freenet/node/Version.java 2008-02-29 20:04:15 UTC (rev
18266)
@@ -24,11 +24,11 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1116;
+ private static final int buildNumber = 1117;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1113;
- private static final int newLastGoodBuild = 1116;
+ private static final int newLastGoodBuild = 1117;
static final long transitionTime;
static {