Author: nextgens
Date: 2006-11-22 16:16:40 +0000 (Wed, 22 Nov 2006)
New Revision: 11030
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
Freenet 0.7 build 999 is now available. Here is a sum up of the changelog :
* #900 Get rid of unnecessary pings in BlockTransmitter. => should
reduce the memory footprint (Zothar)
* Get rid of messages unclaimed for more than an hour (Zothar)
* Improvement on MessageFilter.match() => slight performance gain
(Zothar)
* #891 Remove a peer's extra-peer-data directory when removing the peer
from the node. (Zothar)
* #815 Allow columns to be sorted on /darknet/ (nextgens)
* Add a "port list" box on fproxy (Zothar)
* Add NodeStarter.RECOMMENDED_EXT_BUILD_NUMBER on fproxy when needed
(nextgens)
* Add an unclaimed message counter on fproxy (Zothar)
* Fix and ArithmeticException (UniquePerson)
* some method refactoring and documentation (toad)
* freenet-ext.jar has been updated (nextgens)
* increase the NodeStarter.RECOMMENDED_EXT_BUILD_NUMBER value to 7
(nextgens)
* Major refactoring of auto-update code. Now support auto-updating
freenet-ext.jar. (toad)
* Added complete build/revision info to FCP NodeData message. (Zothar)
* Make our DSA code use Yarrow everywhere (toad)
* Change the MTU (toad)
Plus some general bugfixing, phrasing improving, and refactoring.
Build 998 is going to be mandatory in December.
Please upgrade.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-11-22 10:30:32 UTC (rev
11029)
+++ trunk/freenet/src/freenet/node/Version.java 2006-11-22 16:16:40 UTC (rev
11030)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 998;
+ private static final int buildNumber = 999;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 978;
- private static final int newLastGoodBuild = 990;
+ private static final int oldLastGoodBuild = 990;
+ private static final int newLastGoodBuild = 998;
private static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2006, Calendar.OCTOBER, 13, 0, 0, 0 );
+ _cal.set( 2006, Calendar.DECEMBER, 1, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}