Author: toad
Date: 2008-03-28 19:00:58 +0000 (Fri, 28 Mar 2008)
New Revision: 18811
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1129: (mandatory sunday)
L10n:
- German update.
Bookmarks:
- Update editions and change FAI description slightly.
Queue page:
- Better text for progress % not accurate tooltip, separate slightly different
message for uploads.
Stats:
- Don't doublecount payload in various places. Fixes the negative Other Output
bug, which was causing major problems when a few nodes did a UOM because the
node thought it had huge overhead when it didn't.
- Fix fproxy showing 100% when following a redirect because we didn't call
notifyClients().
Opennet:
- Only give nodes a grace period if DISCONNECTED, not for wierd connection
errors.
Java detection:
- Use java.* rather than java.vm.*, because for recent versions java.vm.version
is confusing.
Config:
- Document the scheduler options (indicate which is which).
Dev stuff:
- Logging.
Installer:
- Start a copy of the main firefox profile, pointing to a short explanation
page, before starting the custom profile for Freenet itself. This is necessary
because if there is no firefox running the main profile running then clicking
on the normal firefox button/start menu item will start another browser running
the Freenet profile!
juiceman
mosteo
NEOatNHNG
nextgens
toad
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-03-28 18:59:49 UTC (rev
18810)
+++ trunk/freenet/src/freenet/node/Version.java 2008-03-28 19:00:58 UTC (rev
18811)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1128;
+ private static final int buildNumber = 1129;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1126;
- private static final int newLastGoodBuild = 1128;
+ private static final int oldLastGoodBuild = 1128;
+ private static final int newLastGoodBuild = 1129;
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.MARCH, 27, 0, 0, 0 );
+ _cal.set( 2008, Calendar.MARCH, 30, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}