From 413ab6d7e42f117be282a78cc7b217a46954375e Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 4 Nov 2009 16:12:59 +0000 Subject: [PATCH] -12 --- history.txt | 16 ++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index d8b3e3dcd..864f4e5e5 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,19 @@ +2009-11-04 zzz + * Build: + - Move some files to installer/resources + - Fix initialNews.xml in install package + * Console: More tagging + * NetDb: Reduce routerinfo expiration slightly + * Profiles: + - Remove the almost-unused send and receive size RateStats; + this also reduces the effective time for isActive() + - Only store DB history on-demand to save space; + fix up resulting NPEs + - Savings: ~2MB heap + * Throttle: Reduce max msg delay to 1250ms (was 1500) + * UDP: Pick a random port on first install or bind failure - + No more port 8887 to prevent easy state-level blocking + 2009-11-04 sponge * Fixups to Slackware scripts diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 217d41d54..3e5e8985d 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 = 11; + public final static long BUILD = 12; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;