This commit is contained in:
zzz
2019-11-30 19:00:16 +00:00
parent 51f7348d8a
commit 32044f1682
2 changed files with 21 additions and 6 deletions

View File

@ -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 2019-11-23 zzz
* Router: * Router:
- Don't count zero-hop tunnels as part of the pool when building - Don't count zero-hop tunnels as part of the pool when building
@ -46,10 +62,9 @@
* i2psnark: Add HTML5 players on details page * i2psnark: Add HTML5 players on details page
2019-11-06 idk 2019-11-06 idk
* Router: * Router: Use Local Application Data(%LOCALAPPDATA%)
- Use Local Application Data(%LOCALAPPDATA%) instead of Roaming for config instead of Roaming for config (ticket #1258)
* Console: * Console: Change home page organization and headers
- Change home page organization, headlines, to expose more information
2019-11-05 zzz 2019-11-05 zzz
* Router: No longer check the clove ID in the Bloom filter * Router: No longer check the clove ID in the Bloom filter

View File

@ -18,10 +18,10 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 6; public final static long BUILD = 7;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "-rc";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + FULL_VERSION); System.out.println("I2P Router version: " + FULL_VERSION);