
2005-03-18 jrandom * Minor tweak to the timestamper to help reduce small skews * Adjust the stats published to include only the relevent ones * Only show the currently used speed calculation on the profile page * Allow the full max # resends to be sent, rather than piggybacking the RESET packet along side the final resend (duh) * Add irc.postman.i2p to the default list of IRC servers for new installs * Drop support for routers running 0.5 or 0.5.0.1 while maintaining backwards compatability for users running 0.5.0.2.
28 lines
928 B
Java
28 lines
928 B
Java
package net.i2p.router;
|
|
/*
|
|
* free (adj.): unencumbered; not under the control of others
|
|
* Written by jrandom in 2003 and released into the public domain
|
|
* with no warranty of any kind, either expressed or implied.
|
|
* It probably won't make your computer catch on fire, or eat
|
|
* your children, but it might. Use at your own risk.
|
|
*
|
|
*/
|
|
|
|
import net.i2p.CoreVersion;
|
|
|
|
/**
|
|
* Expose a version string
|
|
*
|
|
*/
|
|
public class RouterVersion {
|
|
public final static String ID = "$Revision: 1.166 $ $Date: 2005/03/18 03:48:01 $";
|
|
public final static String VERSION = "0.5.0.3";
|
|
public final static long BUILD = 0;
|
|
public static void main(String args[]) {
|
|
System.out.println("I2P Router version: " + VERSION);
|
|
System.out.println("Router ID: " + RouterVersion.ID);
|
|
System.out.println("I2P Core version: " + CoreVersion.VERSION);
|
|
System.out.println("Core ID: " + CoreVersion.ID);
|
|
}
|
|
}
|