Author: nextgens
Date: 2007-07-15 13:42:42 +0000 (Sun, 15 Jul 2007)
New Revision: 14134
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1044:
Mandatory on the 17th.
Core:
- Path folding (one additional step towards having a working
opennet)
- RRNFs weren't accounted as RNFs whereas they should have been
- Introduce a new connection failure code (CONN_ERROR)
- Fix a bug which might have caused heavy backoff
- Add FCP messages to handle opennet references
- Some work on the plugin code
- Some locking changes
L10n:
- updated norwegian translation
- various fixes/improvements to the english version
Credits:
- toad_, Zothar and Nogasso
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-07-15 10:45:28 UTC (rev
14133)
+++ trunk/freenet/src/freenet/node/Version.java 2007-07-15 13:42:42 UTC (rev
14134)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1043;
+ private static final int buildNumber = 1044;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1041;
- private static final int newLastGoodBuild = 1041;
+ private static final int newLastGoodBuild = 1044;
static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2007, Calendar.JULY, 10, 0, 0, 0 );
+ _cal.set( 2007, Calendar.JULY, 17, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}