Author: nextgens
Date: 2008-02-26 08:53:20 +0000 (Tue, 26 Feb 2008)
New Revision: 18164
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1113: mandatory on the 27th
YetAnotherBugfixBuild
- Some trivial l10n updates
- new useralert : NotEnoughNiceLevels
- Show unconfirmed sizes in advanced mode only, and indicate that they
are unconfirmed with ">= <size> ??"
- Prefix explanation tooltip with blocks got/needed.
- Show which node we last routed to in node stats
- Fix "Received packet while disconnected!"
- Fix "Segment finished but didn't tell us!"
- Some changes to the HTL handling
- Implement a CooldownQueue to enable the node to deal with more
requests simultaneously
- Lots of bugfixes on the client-layer (especially to ULPRS)
- Fix the infamous "Filter strips tabs" bug (#1920)
- More temporary file leaks have been caught
- The x509 certificate generation code has been commented out (it uses
sun's API)
- Dev stuffs (variable renaming, dead code removal, comments, logging,
...)
Website:
- fix a typo
- Provide a link to a .exe for Vista users
Installer:
- fix a stupid bug preventing the installer to workaround local
password policies
- Improve the windows uninstaller
Thaw: 0.8.3
- Display the WoT graphically on a new plugin
Thingamablog:
- It's now built by emu and reachable at
http://downloads.freenetproject.org/alpha/Thingamablog/
- 1.4 code compatibility
- new feature: insert through FCP
- many bugfixes
dieppe
jflesch
nextgens
toad
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-02-26 08:34:18 UTC (rev
18163)
+++ trunk/freenet/src/freenet/node/Version.java 2008-02-26 08:53:20 UTC (rev
18164)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1112;
+ private static final int buildNumber = 1113;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1111;
- private static final int newLastGoodBuild = 1112;
+ private static final int oldLastGoodBuild = 1112;
+ private static final int newLastGoodBuild = 1113;
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.FEBRUARY, 21, 0, 0, 0 );
+ _cal.set( 2008, Calendar.FEBRUARY, 27, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}