This commit is contained in:
zzz
2024-08-16 07:43:29 -04:00
parent 73a9bf87f2
commit 2f7fe96d67
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2024-08-16 zzz
* NetDB, I2CP: Fix tunnels going yellow for several minutes (Gitlab #487)
2024-08-12 zzz
* Util: Add temp dir timestamper to prevent deletion by systemd
2024-08-11 zzz
* NetDB:
- Don't expire entries in test mode
- Don't immediately expire entries for Android
2024-08-09 zzz
* i2psnark: Reduce minimum banwdith, reduce max connections if low bandwidth
* i2psnark, susimail: Normailze strings when searching (Gitlab #488)

View File

@ -20,7 +20,7 @@ public class RouterVersion {
public final static String VERSION = CoreVersion.VERSION;
/** for example: "beta", "alpha", "rc" */
public final static String QUALIFIER = "";
public final static long BUILD = 1;
public final static long BUILD = 2;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;