forked from I2P_Developers/i2p.i2p
0.9.3
This commit is contained in:
@@ -16,7 +16,7 @@ package net.i2p;
|
|||||||
public class CoreVersion {
|
public class CoreVersion {
|
||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = "0.9.2";
|
public final static String VERSION = "0.9.3";
|
||||||
|
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Core version: " + VERSION);
|
System.out.println("I2P Core version: " + VERSION);
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
* 2012-10-27 0.9.3 released
|
||||||
|
|
||||||
2012-10-25 zzz
|
2012-10-25 zzz
|
||||||
* BuildHandler: Fix "too slow" rejections due to internal clock skew
|
* BuildHandler: Fix "too slow" rejections due to internal clock skew
|
||||||
|
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
<info>
|
<info>
|
||||||
<appname>i2p</appname>
|
<appname>i2p</appname>
|
||||||
<appversion>0.9.2</appversion>
|
<appversion>0.9.3</appversion>
|
||||||
<authors>
|
<authors>
|
||||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
<author name="I2P" email="http://www.i2p2.de/"/>
|
||||||
</authors>
|
</authors>
|
||||||
<url>http://www.i2p2.de/</url>
|
<url>http://www.i2p2.de/</url>
|
||||||
<javaversion>1.5</javaversion>
|
<javaversion>1.5</javaversion>
|
||||||
|
@@ -1,16 +1,18 @@
|
|||||||
<!--
|
<!--
|
||||||
<i2p.news date="$Date: 2012-09-21 00:00:00 $">
|
<i2p.news date="$Date: 2012-10-27 00:00:00 $">
|
||||||
<i2p.release version="0.9.2" date="2012/09/21" minVersion="0.6" />
|
<i2p.release version="0.9.3" date="2012/10/27" minVersion="0.6" />
|
||||||
-->
|
-->
|
||||||
<div lang="en">
|
<div lang="en">
|
||||||
<h3>2012-09-21: <b>0.9.2 <a href="http://www.i2p2.i2p/release-0.9.2.html">Released</a></b></h3>
|
<h3>2012-10-27: <b>0.9.3 <a href="http://www.i2p2.i2p/release-0.9.3.html">Released</a></b></h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
0.9.2 includes extensive low-level changes to improve the performance and efficiency of the router.
|
0.9.3 includes extensive low-level changes to the queueing of messages in the router.
|
||||||
We have updated our UPnP library, to hopefully make UPnP work for more people.
|
We implement the CoDel Active Queue Management (AQM) algoorithm.
|
||||||
I2PSnark now has DHT support, but it is not yet enabled by default, as we plan to do more
|
We also unify the queueing and priority mechanisms in the transports to aid diagnosis and reduce network latency.
|
||||||
testing during the upcoming 0.9.3 development cycle.
|
Work continues on fixing UDP transport bugs and making UDP more resistant to attacks.
|
||||||
As usual, there's also lots of bug fixes in this release, so updating is recommended.
|
There are more changes to improve the performance of the router and reduce its memory usage.
|
||||||
|
Also, we enable i2psnark's DHT support, introduced last release, by default.
|
||||||
|
As usual, there's also lots of bug fixes in this release, so updating is recommended.
|
||||||
</p><p>
|
</p><p>
|
||||||
Say hello to the volunteers on the <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
|
Say hello to the volunteers on the <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
|
||||||
<a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>,
|
<a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>,
|
||||||
|
@@ -18,10 +18,10 @@ 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 = 22;
|
public final static long BUILD = 0;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "-rc";
|
public final static String EXTRA = "";
|
||||||
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);
|
||||||
|
Reference in New Issue
Block a user