This commit is contained in:
zzz
2025-04-08 09:08:12 -04:00
parent 40a5cac67f
commit 7ae01862ad
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2025-04-08 zzz
* Console: Add world map with locations of routers and tunnels
* Wrapper:
- Update wrapper to 3.5.60
- Remove Linux PPC 32-bit BE wrapper files
- Remove Solaris Sparc 32-bit wrapper files
- Add patch to fix breakage on Debian xx-ea Java versions
2025-04-04 zzz
* Crypto: Use /dev/random PRNG by default

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;