forked from I2P_Developers/i2p.i2p
-2
This commit is contained in:
22
history.txt
22
history.txt
@@ -1,3 +1,25 @@
|
|||||||
|
2009-02-01 zzz
|
||||||
|
* Convert some inner classes to static (findbugs)
|
||||||
|
* DataHelper.readLong(): Was returning -1 on EOF instead
|
||||||
|
of throwing exception
|
||||||
|
* i2psnark: Increase tunnels and pipeline to 3
|
||||||
|
* NTCP: Use a java.util.concurrent execution queue instead of
|
||||||
|
SimpleTimer for afterSend() to reduce lock contention
|
||||||
|
* Remove source from susimail.war, susidns.war, i2ptunnel.war (85KB)
|
||||||
|
* Routerconsole:
|
||||||
|
- Move common methods to new HelperBase class
|
||||||
|
- Make reseed link a button
|
||||||
|
* SimpleScheduler: New replacement for SimpleTimer when events
|
||||||
|
will not be rescheduled or cancelled, to reduce SimpleTimer
|
||||||
|
lock contention
|
||||||
|
* Tunnel Pool:
|
||||||
|
- Remove tunnel from participating if can't contact next hop
|
||||||
|
- Fail outbound build faster if can't contact first hop
|
||||||
|
* Wrapper: Remove dup timeout
|
||||||
|
|
||||||
|
2009-01-31 dream
|
||||||
|
* Debian files
|
||||||
|
|
||||||
2009-01-31 sponge
|
2009-01-31 sponge
|
||||||
* One line BOB discarded interger fix
|
* One line BOB discarded interger fix
|
||||||
(not that it mattered at this point)
|
(not that it mattered at this point)
|
||||||
|
@@ -16,8 +16,8 @@ import net.i2p.CoreVersion;
|
|||||||
*/
|
*/
|
||||||
public class RouterVersion {
|
public class RouterVersion {
|
||||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||||
public final static String VERSION = "0.7";
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 1;
|
public final static long BUILD = 2;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||||
System.out.println("Router ID: " + RouterVersion.ID);
|
System.out.println("Router ID: " + RouterVersion.ID);
|
||||||
|
Reference in New Issue
Block a user