From 26f02a4771a951f90485b33251162386c4dc987f Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 20 Oct 2009 16:35:13 +0000 Subject: [PATCH] -4 --- history.txt | 33 +++++++++++++++++-- .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/history.txt b/history.txt index 58c7d89ce..d015a5e97 100644 --- a/history.txt +++ b/history.txt @@ -1,14 +1,43 @@ +2009-10-20 zzz + * I2NP: Remove old TunnelCreateMessage and TunnelCreateStatusMessage + * Logger: Don't kill the whole JVM if we can't open the log file + * MessageHistory: Cleanups + * NetDb: Move renderStatusHTML to routerconsole + * Router Console translation infrastructure: + - Persistent lang setting with routerconsole.lang=xx + - Loading any page with ?lang=xx changes the persistent setting + - Add a custom Jetty handler to load foo_xx.jsp if it + exists for language xx. This is for jsp files with lots + of text in them. Otherwise use inline translate methods. + Not for included jsps. + - Add a script to create and update messages_xx.po translation + files, and create ResourceBundles from them + - Add class to translate strings from cached ResourceBundles + - Add translate wrappers to HelperBase, FormHandler, and *Renderer, + so calls can be made from both jsp and java files + - Add example translations on configupdate.jsp - two in + the jsp itself and one in the helper. + - This is for strings in routerconsole only. Will be expanded + to other webapps and the router later. + * summarynoframe.jsp: + - Refactor to SummaryBarRenderer (saves 100KB) + - Add translate tags + - Use context RNG for nonces + - Transitional HTML style for input tags + * TunnelDispatcher: Drop messages that expire far in the future + * TunnelPoolManager: Move renderStatusHTML to routerconsole + 2009-10-16 dr|z3d * Extensive UI whitespace cleanups and positional finessing. 2009-10-16 zzz * Crypto: Two more test classes out of the lib * FloodfillMonitor: Slow down the volunteers again - * oldconsole.jsp: Remove almost all of it, add lines for tino - * MessageHistory: Cleanups + * i2psnark: Add TPB tracker * NetDb: Rework part 1 of N: - Flood only to those closest to the key - Java 5 fixups + * oldconsole.jsp: Remove almost all of it, add lines for tino * ProfileOrganizerRenderer: - Move to routerconsole - Write directly to Writer for speed diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ef84e9e97..e4d51a2bb 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 = 3; + public final static long BUILD = 4; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;