From 5a4752e4dfc620adfe526ca50fd40bf9544bff35 Mon Sep 17 00:00:00 2001 From: zzz Date: Thu, 24 Apr 2025 18:34:55 -0400 Subject: [PATCH] dev -5 --- history.txt | 20 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 5b0852dc9e..0aec7984ac 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,23 @@ +2025-04-24 zzz + * Blockfile: Catch unchecked exceptions thrown from value deserializers + * CLI: Add -6 flag to force IPv6 reseed test + * i2ptunnel: Force CSS load before render on proxy error pages + * NetDB: Add new reseed + +2025-04-23 zzz + * i2psnark standalone: Change Ref id to refid in Jetty config file + +2025-04-20 zzz + * Build: Change Ref id to refid in Jetty config files + * Use Long.compare() in comparators + * i2psnark: + - Remove outstanding requests from pieces when connection is replaced + - Show lifetime download rate since added on details page + - Show current tunnel config in dropdowns even if outside normal range + - Add 2nd tie break for peer count when sorting by status + - Make standalone buildable on windows without zip + * SusiDNS: Add b32 and dest reverse lookups + 2025-04-16 zzz * Tunnels: Implement proposal 168 (part 1) - Add bw params to build requests diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ca3640d9db..39dc8c8e3d 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -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 = 4; + public final static long BUILD = 5; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;