Author: nextgens
Date: 2008-07-02 16:04:24 +0000 (Wed, 02 Jul 2008)
New Revision: 20933
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1153: Mandatory on the 9th of July
We don't provide 1.4-compatible bytecode anymore.
fproxy:
- bug #2437: 'Freenet Applications Freesite' Default Bookmark points to
old key
- bug #2432: No alerts showing on the homepage
- bug #2436
content-filter:
- Fix bug #2392: Breaking closing meta tags
- Add links to allow better sorting of peers on the ConnectionToadlet
FRED:
- seed the PRNG with blocking random sources (bug #229: More entropy
issues)
- bug #2143: Remove the code to understand bothNoderefs packets
- Attempt to detect whether the native-library loading worked or not
- bug #2427: Bad node ref (if physical.udp was too long the reference
was rejected)
- fix a HTL related bug in probe requests
FCP:
- rename PersistenceType to Persistence
- Add Global=true/false to URIGenerated
l10n:
- Start the framework earlier on so that more messages can be translated
- bug #2424: FProxy chooses l10n from OS locale rather than language
used for installer
- update to the italian translation by Luke711
- update to the chinese translation by yongjhen
- update to the french translation by batosai
And of course some work on logging and some dead-code removal...
Authors:
- bombe
- nextgens
- toad
- sdiz
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-07-02 16:03:42 UTC (rev
20932)
+++ trunk/freenet/src/freenet/node/Version.java 2008-07-02 16:04:24 UTC (rev
20933)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1152;
+ private static final int buildNumber = 1153;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1145;
- private static final int newLastGoodBuild = 1152;
+ private static final int newLastGoodBuild = 1153;
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.JUNE, 15, 0, 0, 0 );
+ _cal.set( 2008, Calendar.JULY, 9, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}