Author: toad
Date: 2007-07-27 12:01:10 +0000 (Fri, 27 Jul 2007)
New Revision: 14374
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1049: (mandatory 0:00 tuesday)
- fix "Bucket is read-only" bug (we were setting read-only if the file didn't
exist... except we were supposed to be creating it...!)
- l10n:
-- add WelcomeToadlet.keyRequestLabel
-- _ph00's italian translation v20
-- Michael T?\195?\164nzer's updated german translation
-- batosai's updated french translation
- fix plugins NPE on startup by separating creation of
FCPServer/FProxy/TMCIServer from actually starting them, as is the case for
everything else
- don't infinite loop if can't create file in ConfigurablePersister
- logging
GSoC:
sback - unit tests
- test HTMLEncoder/HTMLDecoder, and some minor changes to their code
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-07-27 11:59:25 UTC (rev
14373)
+++ trunk/freenet/src/freenet/node/Version.java 2007-07-27 12:01:10 UTC (rev
14374)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1048;
+ private static final int buildNumber = 1049;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1047;
- private static final int newLastGoodBuild = 1048;
+ private static final int oldLastGoodBuild = 1048;
+ private static final int newLastGoodBuild = 1049;
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, 27, 0, 0, 0 );
+ _cal.set( 2007, Calendar.JULY, 31, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}