This commit is contained in:
zzz
2012-02-27 15:25:23 +00:00
parent 7e8de0602b
commit ef1447a816
5 changed files with 33 additions and 10 deletions

View File

@ -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.8.12"; public final static String VERSION = "0.8.13";
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);

View File

@ -1,3 +1,5 @@
* 2012-02-27 0.8.13 released
2012-02-22 kytv 2012-02-22 kytv
* Updated German, Italian, Spanish, Swedish, and Ukrainian translations * Updated German, Italian, Spanish, Swedish, and Ukrainian translations
from Transifex. from Transifex.

View File

@ -4,7 +4,7 @@
<info> <info>
<appname>i2p</appname> <appname>i2p</appname>
<appversion>0.8.12</appversion> <appversion>0.8.13</appversion>
<authors> <authors>
<author name="I2P" email="http://forum.i2p2.de/"/> <author name="I2P" email="http://forum.i2p2.de/"/>
</authors> </authors>

View File

@ -1,15 +1,36 @@
<!-- <!--
<i2p.news date="$Date: 2012-01-06 00:00:00 $"> <i2p.news date="$Date: 2012-01-06 00:00:00 $">
<i2p.release version="0.8.12" date="2012/01/06" minVersion="0.6" /> <i2p.release version="0.8.13" date="2012/02/27" minVersion="0.6" />
--> -->
<div lang="en"> <div lang="en">
<h3>2012-01-06: <b>0.8.12 <a href="http://www.i2p2.i2p/release-0.8.12.html">Released</a></b></h3> <h3>2012-02-27: <b>0.8.13 <a href="http://www.i2p2.i2p/release-0.8.13.html">Released</a></b></h3>
<p> <p>
The 0.8.12 release fixes several serious message corruption bugs. The 0.8.13 release contains several bug fixes and a couple of new features.
It also contains a redesign of the router's congestion control, and continued We are pleased that the last release significantly improved performance,
optimization of CPU and memory usage. We are hopeful that these changes will and the network is running well despite continued rapid growth.
improve network performance. Upgrading is recommended. Upgrading is recommended.
</p><p>
This is likely to be the last release before 0.9, in which we will migrate to Jetty 6,
and introduce a simplified router console home page. Monitor the news section of
your the router console in the coming weeks for more information on the next release.
</p><p>
Starting with this release, the router will
check for and install plugin updates shortly upon restarting after a router update.
To prevent this, add the <a href="/configadvanced">advanced configuration</a>
<tt>plugins.autoUpdate=false</tt> before restarting.
There is also a new update-all button on <a href="/configclients#plugin">the client configuration page</a>.
</p><p>
Routers in certain countries will now automatically enable hidden mode for increased protection.
However, hidden mode may have lower performance or reliability, and is still a work in progress.
To disable hidden mode before restarting, add the <a href="/configadvanced">advanced configuration</a>
<tt>router.isHidden=false</tt>.
To disable hidden mode later, select <i>use all auto-detect methods</i> under <i>IP Configuration</i> on the
<a href="/confignet">network configuration page</a>.
For the list of countries see <a href="http://zzz.i2p/topics/969">this thread on zzz.i2p</a>.
The only country on the list that has more than one or two I2P users is China.
</p><p>
After you have upgraded, check out the <a href="/i2ptunnel/wizard">new tunnel creation wizard</a>.
</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>,

View File

@ -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 = 18; 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);