diff --git a/history.txt b/history.txt index 077782a95..4974fa3da 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,24 @@ +2009-12-20 zzz + * Console: + - Fix status to show a disconnected network error rather than + clock skew or UDP error when disconnected + - Use peer clock skew rather than clock offset for determining + whether to display clock skew error + - tunnels.jsp: Clarify tunnel table headings + * Contexts: Add isRouterContext() method + * Profile, DBHistory: + - Tweak the rate periods + - Add a global fail rate stat + - Increase the HashMap sizes + * Router: Move some more threads to I2PAppThread so an OOM won't + crash the router + * Timestamper: Reduce delays (cuts 10s out of router startup) + * Transport: Rework peer clock skew method to always return a value + * Tunnels: + - Reduce the drop probability for TunnelBuildMessages at the OBEP + - Schedule outbound startup instead of hanging the thread for 3s + - Cleanup preprocessor code, add comments + 2009-12-18 zzz * Console: Fix spacing in update section * I2CP: 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;