Author: toad
Date: 2007-02-09 02:05:06 +0000 (Fri, 09 Feb 2007)
New Revision: 11702

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
1012:
- replace old ARKs with new (post-1010 crypto) ARKs if necessary; keep the old 
one as old-ark for now, and insert to both
- new (post-1010) updater keys
- lots of memory churn optimisations: don't create so many temporary objects
- minor optimisation: lazily create hex versions of DSAGroup, DSAPublicKey 
params
- added new FCP message PersistentRequestRemoved (may be sent before GetFailed; 
wait for next build for fix)
- always ack ModifyPersistentRequest
- fix a bug in store reconstruction (related to 1010)
- fix an NPE in the filter
- fix a deadlock, reduce locking a bit
- try not to get restarted while cleaning temp dir
- better generation of filenames in fproxy
- too high ping time -> increase bwlimit, not decrease
- move thread count below cpu count in stats page
- BDB stats button on stats page
- correct the alert for too high average ping time
- slightly better OutOfMemoryError handling (less code, more explanation)
- dump persistent requests without a ClientName (occasional startup blocker)
- trivial optimisations
- try to track down NPEs
- last good version changeover occurs when time >= target, not >
- minor code clarifications, comments, delete unused code, spelling, logging


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-02-09 01:43:20 UTC (rev 
11701)
+++ trunk/freenet/src/freenet/node/Version.java 2007-02-09 02:05:06 UTC (rev 
11702)
@@ -24,7 +24,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 1011;
+       private static final int buildNumber = 1012;

        /** Oldest build of Fred we will talk to */
        private static final int oldLastGoodBuild = 1010;


Reply via email to