forked from I2P_Developers/i2p.i2p
SU3File: Add date output to CLI
Bump -5 for previous Ratchet Elligator2 change
This commit is contained in:
@ -733,8 +733,16 @@ public class SU3File {
|
||||
String versionString = file.getVersionString();
|
||||
if (versionString.equals(""))
|
||||
System.out.println("No version string found in file '" + signedFile + "'");
|
||||
else {
|
||||
long ver = 0;
|
||||
try {
|
||||
ver = Long.parseLong(versionString);
|
||||
} catch (NumberFormatException nfe) {}
|
||||
if (ver > 1000000000L)
|
||||
System.out.println("Version: " + versionString + " (" + DataHelper.formatTime(ver * 1000) + ')');
|
||||
else
|
||||
System.out.println("Version: " + versionString);
|
||||
}
|
||||
String signerString = file.getSignerString();
|
||||
if (signerString.equals(""))
|
||||
System.out.println("No signer string found in file '" + signedFile + "'");
|
||||
|
10
history.txt
10
history.txt
@ -1,4 +1,14 @@
|
||||
2020-01-21 zzz
|
||||
* Ratchet: Randomize two high bits of Elligator2 encoding
|
||||
|
||||
2020-01-15 zzz
|
||||
* i2ptunnel: Fix NPE if no config file
|
||||
|
||||
2020-01-11 zzz
|
||||
* SSU: Extend timeout for msgs with multiple fragments (ticket #2640)
|
||||
|
||||
2020-01-08 zzz
|
||||
* i2psnark: Support "preview" HTML5 play for partial files
|
||||
* Jetty 9.2.29.v20191105
|
||||
* Tomcat 8.5.50
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 4;
|
||||
public final static long BUILD = 5;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user