From 456ed0aab48abf0c20bf0e63399dedb512c2e477 Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 24 Aug 2009 00:28:49 +0000 Subject: [PATCH] history for 2 props, -17 --- history.txt | 30 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index dd75c70233..181c85cfd1 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,33 @@ +2009-08-24 zzz + * ClientManager: + - Prevent client destination theft by rejecting duplicates + - Java 5 cleanups + * Console: + - Put favicon on every page + - Make every page UTF-8, ☃ safe for snowmen + - Remove options boxes on configtunnels.jsp + - Fix UTF-8 form submission (i2ptunnel too) + - Throw 403 instead of 404 from flags.jsp and viewstat.jsp + so we don't render error.jsp + * I2CP: Fix the SessionConfig serializer in DataHelper, + so that UTF-8 tunnel names are not corrupted by + I2CP and can be displayed on the console + * Message: Move 2 unused classes out of the router lib (~15KB) + (more SKM prep) + * Message, I2PSession, SessionKeyManager, Console: + Prep for SessionKeyManager work in the router - + Fix up SKM renderStatusHTML(); add debug.jsp to see it; + Redefine getClientSessionKeyManager(); + More cleanups + * Ministreaming: Kill deprecation warnings + * profiles.jsp: Bulletproofing, less memory usage + * Streaming, I2PSession: + Prep for SessionKeyManager work in the router - + Comment out, deprecate, and javadoc for unused keys and tags, + they are vestiges of end-to-end crypto + * Updates: Verify zip at startup before extracting + * Wrapper: Take a couple fields out of the log so it's narrower + 2009-08-20 zzz * Config files: - Add some path and encoding help diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ac10366983..32a2083be1 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 = 16; + public final static long BUILD = 17; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;