* Write announcement and prepare for release
This commit is contained in:
@ -14,8 +14,8 @@ package net.i2p;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class CoreVersion {
|
public class CoreVersion {
|
||||||
public final static String ID = "$Revision: 1.72 $ $Date: 2007-08-23 19:33:31 $";
|
public final static String ID = "$Revision: 1.72 $ $Date: 2008-06-07 23:00:00 $";
|
||||||
public final static String VERSION = "0.6.1.33";
|
public final static String VERSION = "0.6.2";
|
||||||
|
|
||||||
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,8 @@
|
|||||||
|
* 2008-06-07 0.6.2 released
|
||||||
|
|
||||||
|
2008-06-07 Complication
|
||||||
|
* Write announcement and prepare for release
|
||||||
|
|
||||||
2008-05-29 zzz
|
2008-05-29 zzz
|
||||||
* Transport:
|
* Transport:
|
||||||
- NTCP and UDP: Don't bid to connect to private IP addresses, mark unreachable
|
- NTCP and UDP: Don't bid to connect to private IP addresses, mark unreachable
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<i2p.news date="$Date: 2008-04-26 15:00:00 $">
|
<i2p.news date="$Date: 2008-06-07 23:00:00 $">
|
||||||
<i2p.release version="0.6.1.33" date="2008/04/26" minVersion="0.6"
|
<i2p.release version="0.6.2" date="2008/06/07" minVersion="0.6"
|
||||||
/>
|
/>
|
||||||
<center><h2>Congratulations on getting I2P installed!</h2></center>
|
<center><h2>Congratulations on getting I2P installed!</h2></center>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<info>
|
<info>
|
||||||
<appname>i2p</appname>
|
<appname>i2p</appname>
|
||||||
<appversion>0.6.1.33</appversion>
|
<appversion>0.6.2</appversion>
|
||||||
<authors>
|
<authors>
|
||||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
<author name="I2P" email="http://forum.i2p2.de/"/>
|
||||||
</authors>
|
</authors>
|
||||||
|
17
news.xml
17
news.xml
@ -11,14 +11,17 @@
|
|||||||
publiclogs="http://www.i2p.net/meeting141" />
|
publiclogs="http://www.i2p.net/meeting141" />
|
||||||
<p>
|
<p>
|
||||||
•
|
•
|
||||||
2008-04-26: <b>0.6.1.33 <a href="http://www.i2p2.i2p/release-0.6.1.33.html">Released</a></b>
|
2008-06-07: <b>0.6.2 <a href="http://www.i2p2.i2p/release-0.6.2.html">Released</a></b>
|
||||||
</p><p>
|
</p><p>
|
||||||
The 0.6.1.33 release contains several important bug fixes and performance improvements
|
The 0.6.2 release delivers notable performance and anonymity improvements.
|
||||||
in SSU reachability detection, floodfill peer selection, tunnel peer selection, tunnel testing,
|
LeaseSet data is no longer added to every end-to-end message, reducing protocol overhead.
|
||||||
NTCP idle detection, the streaming lib, and news fetching.
|
Unreachable peers are avoided as inbound tunnel gateways,
|
||||||
It also adds secondary tracker support to i2psnark.
|
which helps reliability and makes it possible to use persistent Lease selection,
|
||||||
Please upgrade as soon as you can, as these fixes
|
which in turn helps performance by reducing out-of-order message delivery.
|
||||||
should improve the reliability of the whole network.
|
The sequence of peers in a tunnel is now kept in a strict order
|
||||||
|
according to XOR distance from a random value, to make it harder
|
||||||
|
for an adversary to gather meaningful statistics for a predecessor attack.
|
||||||
|
Improvements to applications like I2PSnark and the Router Console are also introduced.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class RouterVersion {
|
public class RouterVersion {
|
||||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $";
|
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||||
public final static String VERSION = "0.6.1.33";
|
public final static String VERSION = "0.6.2";
|
||||||
public final static long BUILD = 9;
|
public final static long BUILD = 0;
|
||||||
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