Author: toad
Date: 2008-11-27 20:38:41 +0000 (Thu, 27 Nov 2008)
New Revision: 23920
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1185: (MANDATORY MONDAY)
Maybe fix bandwidth collapsing bug:
- On blocking, and on disconnect, we were losing messages: not requeueing them,
and not calling the callbacks either.
- This seems to be at least part of the cause of request handler IDs not being
removed, which seems to be the cause of the bandwidth usage collapsing bug.
Salted hash datastore:
- Missed a file in useralert.
Misc:
- Make the node fetch freenet-ext.jar edition 26.
- Fix an NPE on loading the homepage when the plugins haven't been loaded yet.
Dev stuff:
- Logging.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-11-27 19:30:09 UTC (rev
23919)
+++ trunk/freenet/src/freenet/node/Version.java 2008-11-27 20:38:41 UTC (rev
23920)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1184;
+ private static final int buildNumber = 1185;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1180;
- private static final int newLastGoodBuild = 1181;
+ private static final int oldLastGoodBuild = 1181;
+ private static final int newLastGoodBuild = 1185;
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.NOVEMBER, 23, 0, 0, 0 );
+ _cal.set( 2008, Calendar.DECEMBER, 1, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}
_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs