This commit is contained in:
zzz
2024-09-10 14:38:46 -04:00
parent 7ca36e011a
commit 4beb858d39
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,21 @@
2024-09-10 zzz
* Console: Refactor netdb search (Gitlab MR #217)
2024-08-31 zzz
* Console: Consolidate hash comparators (Gitlab MR #214)
2024-08-23 zzz
* I2CP: Don't include lease about to expire in LS request
2024-08-19 zzz
* i2psnark: Fix clear messages button (light theme) (Gitlab #479, Github #81)
2024-08-17 zzz
* Naming: lookup fixes
2024-08-16 zzz 2024-08-16 zzz
* NetDB, I2CP: Fix tunnels going yellow for several minutes (Gitlab #487) * NetDB, I2CP: Fix tunnels going yellow for several minutes (Gitlab #487)
* SVG: Optimize output for horizontal/vertical segments in paths
2024-08-12 zzz 2024-08-12 zzz
* Util: Add temp dir timestamper to prevent deletion by systemd * Util: Add temp dir timestamper to prevent deletion by systemd

View File

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