diff --git a/history.txt b/history.txt index bddab445eeb3315399b44c318815cf328c051940..41b4de3628e21d901326d2f646910cc7bcbc3ae3 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,19 @@ +2019-11-30 zzz + * Pull translations + +2019-11-30 sadie + * Console, SusiDNS: CSS updates + +2019-11-29 zzz + * Console, proxy, SusiDNS: Add partial Persian translations + +2019-11-27 zzz + * GeoIP update + +2019-11-24 zzz + * Debian: Add apparmor support for Java 11 (Github PR #19) + * i2psnark: File system error message improvements + 2019-11-23 zzz * Router: - Don't count zero-hop tunnels as part of the pool when building @@ -46,10 +62,9 @@ * i2psnark: Add HTML5 players on details page 2019-11-06 idk - * Router: - - Use Local Application Data(%LOCALAPPDATA%) instead of Roaming for config - * Console: - - Change home page organization, headlines, to expose more information + * Router: Use Local Application Data(%LOCALAPPDATA%) + instead of Roaming for config (ticket #1258) + * Console: Change home page organization and headers 2019-11-05 zzz * Router: No longer check the clove ID in the Bloom filter diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index c10128fe6223a59f4fa2320e38c3309487438a87..c76c0f106be43d07e056ed06220e4166302f7a85 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,10 +18,10 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 6; + public final static long BUILD = 7; /** for example "-test" */ - public final static String EXTRA = ""; + 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);