diff --git a/history.txt b/history.txt index b22b8c3f4..3fc6c976f 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,22 @@ +2008-06-01 zzz + * Client Apps: Add new parameter for clients.config, + clientApp.x.startOnLoad=false, to disable loading + (for SAM for example). Defaults to true of course. + * Logging: Move common WARN output to DEBUG so we can ask users to + set the default log level to WARN without massive spewage + * ProfileOrganizer: Restrict !isSelectable() (i.e. shitlisted) peers from the High Capacity tier, + not just the Fast tier, since we don't use them for tunnels anyway + * SAM: Add some compiler flexibility to two obscure makefiles + * i2psnark: Change displayed peer idents to match that shown by bytemonsoon + (sponge's suggestion) + * summary bar: + - Hide ident, provide a tooltip and a link + - Add a warning if you are firewalled and class O + 2008-05-29 zzz + * Fix up initialNews.xml + +2008-05-27 zzz * Transport: - NTCP and UDP: Don't bid to connect to private IP addresses, mark unreachable - UDP: Don't bid when IP address missing, mark unreachable diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 15ebe7eb4..8e9ac9b18 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ import net.i2p.CoreVersion; public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $"; public final static String VERSION = "0.6.1.33"; - public final static long BUILD = 9; + public final static long BUILD = 2001; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);