diff --git a/history.txt b/history.txt index e64d4ce32..76402fb28 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,21 @@ +2009-06-07 zzz + * Build file: + - Add updaterWithJettyFixesAndGeoIP, use it in pkg for one release + - Cleanups + * Console: + - netdb.jsp cleanup + - tunnels.jsp cleanup + * Timestamper: + - Use locale country if geoip unavailable + * Transport: + - Lower min NTCP idle time to 3m (was 5m) + - Increase SSU conn limit by 33% + * UPnP: Fix deprecation warning + * Watchdog: + - Defang him again + 2009-06-06 sponge - * Added BOB's liscense to liscenses + * Added BOB's license to licenses * Janitorial javadoc fixes *sigh* * bump to -13 @@ -15,8 +31,15 @@ time out. What should happen is the streaming lib should cause an IO error to the pending read or write. +2009-06-05 zzz + * Build file: + - Add license info for launch4j includes + * Console: + - 16x11 transparent flags for ch and np, thanks anonim! + 2009-06-04 zzz * Console: + - Update geoip file to June 3 version - Hide some controls if no wrapper on configservice.jsp * I2PTunnel: - Fix bug where delayed-open and close-on-idle tunnels would diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index b05ad1ead..7843a3f63 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,9 +18,9 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 13; + public final static long BUILD = 14; /** for example "-test" */ - public final static String EXTRA = "-Janitor"; + public final static String EXTRA = "-rc"; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public static void main(String args[]) { System.out.println("I2P Router version: " + FULL_VERSION);