From 7725b9e8a14b09b0d40867f0ee71611cdcdacf87 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 30 May 2009 16:34:58 +0000 Subject: [PATCH] -10 --- history.txt | 33 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 32bf7cb33..6e62d8851 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,36 @@ +2009-05-30 zzz + * Console: + - config.jsp now cause graceful restart + - More peers.jsp and profiles.jsp cleanup + - tunnels.jsp improvements + - Use CSS for form messages + - Goodbye nonce spoof messages (sorry jr) + - config.jsp: Comment out unused burst config code + - Don't forget Serbia! + - configadvanced.jsp cleanup + * LoadTestManager: Delete, unused + * Peer Selector: Make strict order opaque to hash value + * SendGarlicMessageJob: Delete, unused + * Session Keys: + - Don't instantiate unused SessionKeyPersistenceHelper + - Use TransientSessionKeyManager instead of PersistentSessionKeyManager + - Add generics to TransientSessionKeyManager to help understand it + - Change initial session map size to 64 (was 1024) + - Prepare for per-destination SessionKeyManagers in ElGamalAESEngine + - More stubs for per-destination managers in the client manager + * Transports: + - Adjust bids when near conn capacity + * UDP: + - Remove unused stats and test code + - Only save IP when it changes + * UPnP: + - Prevent NPE after ParserException + - Tweak to help startup problems? + - Retry port forward if it fails + - Make peers.jsp display faster + - Lengthen POST timeout + - More comments + 2009-05-29 sponge * added big fat start/stop lock into BOB * added zap command to shut down BOB... now we need a way to start it diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f47a425fd..1440f81c0 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 9; + public final static long BUILD = 10; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;