This commit is contained in:
zzz
2009-06-07 14:47:04 +00:00
parent 9b0e553ece
commit 45d9f9d07d
2 changed files with 26 additions and 3 deletions

View File

@ -1,5 +1,21 @@
2009-06-07 zzz
* Build file:
- Add updaterWithJettyFixesAndGeoIP, use it in pkg for one release
- Cleanups
* Console:
- netdb.jsp cleanup
- tunnels.jsp cleanup
* Timestamper:
- Use locale country if geoip unavailable
* Transport:
- Lower min NTCP idle time to 3m (was 5m)
- Increase SSU conn limit by 33%
* UPnP: Fix deprecation warning
* Watchdog:
- Defang him again
2009-06-06 sponge 2009-06-06 sponge
* Added BOB's liscense to liscenses * Added BOB's license to licenses
* Janitorial javadoc fixes *sigh* * Janitorial javadoc fixes *sigh*
* bump to -13 * bump to -13
@ -15,8 +31,15 @@
time out. What should happen is the streaming lib should cause an IO time out. What should happen is the streaming lib should cause an IO
error to the pending read or write. error to the pending read or write.
2009-06-05 zzz
* Build file:
- Add license info for launch4j includes
* Console:
- 16x11 transparent flags for ch and np, thanks anonim!
2009-06-04 zzz 2009-06-04 zzz
* Console: * Console:
- Update geoip file to June 3 version
- Hide some controls if no wrapper on configservice.jsp - Hide some controls if no wrapper on configservice.jsp
* I2PTunnel: * I2PTunnel:
- Fix bug where delayed-open and close-on-idle tunnels would - Fix bug where delayed-open and close-on-idle tunnels would

View File

@ -18,9 +18,9 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 13; public final static long BUILD = 14;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-Janitor"; public final static String EXTRA = "-rc";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + FULL_VERSION); System.out.println("I2P Router version: " + FULL_VERSION);