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 {
/** deprecated */
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[]) {
System.out.println("I2P Core version: " + VERSION);

View File

@ -1,3 +1,5 @@
* 2011-11-08 0.8.11 released
2011-11-05 kytv
* Update geoip.txt based on Maxmind GeoLite Country
database from 2011-11-02

View File

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

View File

@ -1,25 +1,38 @@
<!--
<i2p.news date="$Date: 2011-10-20 00:00:00 $">
<i2p.release version="0.8.10" date="2011/10/20" minVersion="0.6" />
<i2p.news date="$Date: 2011-11-08 00:00:00 $">
<i2p.release version="0.8.11" date="2011/11/08" minVersion="0.6" />
-->
<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>
Release 0.8.10 includes two changes intended to reduce the number of router-to-router connections,
and therefore improve tunnel build success rates and general reliability.
Of course, there's also a few bug fixes and translation updates.
The unprecedented network growth starting October 5th
has dramatically increased network congestion, especially on evenings (UTC)
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>
The network has grown quite rapidly in recent weeks, and that's great news,
but it has caused some instability. We welcome all our new users and we
ask you to be patient as we make improvements to the software.
Release 0.8.11 includes several more changes to reduce the number of router-to-router
connections and increase connection and tunnel build capacity. The goal, of course,
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>
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>,
spread the word,
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>.
We are still looking for volunteers to work on new and existing translations.
Please volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p-dev</a>.
To help on translations,
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>
</div>

View File

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