Compare commits

...

2 Commits

Author SHA1 Message Date
zzz
a36f1d2bba bump -6 2025-08-12 10:00:55 -04:00
zzz
f5db530c0e Console: Don't hide SSU2 peers with long idle time
because it makes the total look wrong.
2025-08-12 10:00:05 -04:00
3 changed files with 21 additions and 3 deletions

View File

@@ -644,8 +644,8 @@ public class PeerHelper extends HelperBase {
buf.setLength(0);
long now = _context.clock().now();
for (PeerState peer : peers) {
if (now-peer.getLastReceiveTime() > 60*60*1000)
continue; // don't include old peers
//if (now-peer.getLastReceiveTime() > 60*60*1000)
// continue; // don't include old peers
buf.append("<tr><td class=\"cells\" align=\"left\" nowrap>");
buf.append(_context.commSystem().renderPeerHTML(peer.getRemotePeer()));

View File

@@ -1,3 +1,21 @@
2025-08-10 zzz
* Console:
- Hide b32 link on netdb LS tabs for encrypted LS
- Fix layout for final LS data section on netdb LS debug tab
* i2psnark: Handle UDP trackers in magnet links
2025-08-09 zzz
* Console: Fix NPE on netdb LS debug tab rendering encrypted LS
2025-07-27 zzz
* Crypto: Reduce YK precalc pool size
* I2CP: Stub out new HostLookup types for service records (proposal 167)
* i2ptunnel: Expose 6,4 option to non-advanced-config
* Tomcat 9.0.107
2025-07-17 zzz
* I2CP: Client-side destroy session fixes
2025-07-04 zzz
* i2psnark: UDP announce fixes
* SSU: Increase inbound ban time

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