diff --git a/history.txt b/history.txt index ab69419fd..f0d713d48 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,23 @@ +2009-07-11 zzz + * Build Handler: Drop rather than reject requests when near + conn limits and the next hop is not connected, to reduce + connection congestion + * Console: Force IE to the classic theme + * I2PSnark: + - Bring back details links for Postman2 B64 torrents + * I2PTunnel: + - Make reduce-on-idle the default for all the shared clients + for new installs (15m) + * Profile Organizer: + - Allow NTCP-only peers in inbound tunnels + * Transports: + - Move from a single connection limit threshold (80%) to + two (75% and 87%), and only start rejecting tunnels + at the higher threshold, to increase build success + - Move some limit methods from the transports to TransportImpl + - Add limit methods with a threshold argument + - Increase default SSU conn limits a little more + 2009-07-07 dr|z3d * Introducing 2 new console themes (light & dark), in addition to changes to the console navigation; navbar now resides in diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index b54d1de4b..5a4225cae 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 = 5; + public final static long BUILD = 6; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;