This commit is contained in:
zzz
2011-11-07 14:48:31 +00:00
parent 8ecf423dfc
commit 530b481ffd
5 changed files with 30 additions and 15 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.10"; public final static String VERSION = "0.8.11";
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 @@
* 2011-11-08 0.8.11 released
2011-11-05 kytv 2011-11-05 kytv
* Update geoip.txt based on Maxmind GeoLite Country * Update geoip.txt based on Maxmind GeoLite Country
database from 2011-11-02 database from 2011-11-02

View File

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

View File

@@ -1,25 +1,38 @@
<!-- <!--
<i2p.news date="$Date: 2011-10-20 00:00:00 $"> <i2p.news date="$Date: 2011-11-08 00:00:00 $">
<i2p.release version="0.8.10" date="2011/10/20" minVersion="0.6" /> <i2p.release version="0.8.11" date="2011/11/08" minVersion="0.6" />
--> -->
<div lang="en"> <div lang="en">
<h3>2011-10-20: <b>0.8.10 <a href="http://www.i2p2.i2p/release-0.8.10.html">Released</a></b></h3> <h3>2011-11-08: <b>0.8.11 <a href="http://www.i2p2.i2p/release-0.8.11.html">Released</a></b></h3>
<p> <p>
Release 0.8.10 includes two changes intended to reduce the number of router-to-router connections, The unprecedented network growth starting October 5th
and therefore improve tunnel build success rates and general reliability. has dramatically increased network congestion, especially on evenings (UTC)
Of course, there's also a few bug fixes and translation updates. and weekends. The last two releases contained a few changes that we hoped
would relieve the pressure, but unfortunately these measures have been only
modest successes. The primary issue is to limit the number of direct router
to-router connections in the network. This isn't a new problem; we've been
working on it for several years, usually with good results. However, the recent
growth pushed us over the edge once again.
</p><p> </p><p>
The network has grown quite rapidly in recent weeks, and that's great news, Release 0.8.11 includes several more changes to reduce the number of router-to-router
but it has caused some instability. We welcome all our new users and we connections and increase connection and tunnel build capacity. The goal, of course,
ask you to be patient as we make improvements to the software. is to improve tunnel build success rates and general reliability. As always, there's
a few bug fixes and translation updates.
</p><p>
We welcome all our new users. Please be patient as we work to improve network
performance. Debugging congestion problems in a distributed anonymous network
is a continuing challenge. Please help improve the network
by restarting your router once the upgrade is downloaded.
</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>,
spread the word, spread the word,
and <a href="http://www.i2p2.i2p/donate.html">donate</a>! and <a href="http://www.i2p2.i2p/donate.html">donate</a>!
If you find a bug, please enter a report on <a href="http://trac.i2p2.i2p/report/1">trac</a>. If you find a bug, please enter a report on <a href="http://trac.i2p2.i2p/report/1">trac</a>.
We are still looking for volunteers to work on new and existing translations. To help on translations,
Please volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p-dev</a>. volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p-dev</a>
or sign up on <a href="https://www.transifex.net/projects/p/I2P/">Transifex</a>.
</p> </p>
</div> </div>

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