This commit is contained in:
zzz
2023-12-22 12:03:41 -05:00
parent 1c4aa12e35
commit dffa2b7a0d
2 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,20 @@
2023-12-22 zzz
* Blockfile: Fix bug in unused getNames()
* Console: Fix encoding issues in persisted news
* I2CP: Add router rates to bandwidth limits message
* i2psnark: Adjust max peers for small torrents
* i2ptunnel:
- Change return code for host-not-in-addressbook to 502
- Log correct server host/port on error when there are multiple targets configured
* NTCP2: Add key validity check
* Plugins: Don't auto-update in test mode
* Ratchet: Use correct method for Elg2 keygen
* Susimail: Include attachment sizes in displayed draft size
* Transports: Don't flood huge RIs
* Util:
- Catch OOM in timer
- Add 2nd order comparison in ObjectCounterUnsafe sort
2023-12-18 2.4.0 (API 0.9.61) released
2023-12-15 idk

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 = 0;
public final static long BUILD = 1;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;