-2
This commit is contained in:
25
history.txt
25
history.txt
@ -1,5 +1,28 @@
|
||||
2009-04-23 zzz
|
||||
* Blocklist: cleanup
|
||||
* eepget: handle -h, --help, bad options, etc.
|
||||
(http://forum.i2p/viewtopic.php?p=16261#16261)
|
||||
* Fragmenter: don't re-throw the corrupt fragment IllegalStateException,
|
||||
to limit the damage - root cause still not found
|
||||
* i2psnark: (http://forum.i2p/viewtopic.php?t=3317)
|
||||
- Change file limit to 512 (was 256)
|
||||
- Change size limit to 10GB (was 5GB)
|
||||
- Change request size to 16KB (was 32KB)
|
||||
- Change pipeline to 5 (was 3)
|
||||
* logs.jsp: Move version info to the top
|
||||
* Jetty: Fix temp dir name handling on windows, which was
|
||||
causing susidns not to start
|
||||
(http://forum.i2p/viewtopic.php?t=3364)
|
||||
* NTCP: Prevent IllegalStateException
|
||||
* PeerProfile:
|
||||
- Replace a hot lock with concurrent RW lock
|
||||
- Rewrite ugly IP Restriction code
|
||||
- Also use transport IP in restriction code
|
||||
* RouterConsole: Make summary bar a refreshing iframe
|
||||
* Transport: Start the previously unused CleanupUnreachable
|
||||
|
||||
2009-04-21 sponge
|
||||
* Code janator work, basic corrections involving @Override, and
|
||||
* Code janitor work, basic corrections involving @Override, and
|
||||
appling final where it is important. Also fixed some equals methods
|
||||
and commented places that need fixing.
|
||||
|
||||
|
@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||
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[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
Reference in New Issue
Block a user