This commit is contained in:
zzz
2010-02-15 12:43:28 +00:00
parent 51a1564566
commit abd96a920f
7 changed files with 26 additions and 19 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.7.10"; public final static String VERSION = "0.7.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 @@
* 2010-02-15 0.7.11 released
2010-02-13 sponge 2010-02-13 sponge
* Fix addWebApplications API goofup * Fix addWebApplications API goofup
* Bump BOB version, which I forgot to do. * Bump BOB version, which I forgot to do.

View File

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

View File

@ -9,8 +9,9 @@
# wrapper configuration file. # wrapper configuration file.
# #
# Note that the wrapper only supports Windows, Mac, and # Note that the wrapper only supports Windows, Mac, and
# certain Linux architectures. If this script fails to # certain Linux architectures.
# successfully invoke i2psvc on your platform, # It may also fail on some 64-bit platforms.
# If this script fails to successfully invoke i2psvc on your platform,
# try the runplain.sh script instead. # try the runplain.sh script instead.
# #

View File

@ -1,6 +1,6 @@
<!-- <!--
<i2p.news date="$Date: 2010-01-22 00:00:00 $"> <i2p.news date="$Date: 2010-02-15 00:00:00 $">
<i2p.release version="0.7.10" date="2010/01/22" minVersion="0.6"/> <i2p.release version="0.7.11" date="2010/02/15" minVersion="0.6"/>
--> -->
<h4><ul><li>Congratulations on getting I2P installed!</li></ul></h4> <h4><ul><li>Congratulations on getting I2P installed!</li></ul></h4>
<p> <p>

View File

@ -1,21 +1,25 @@
<!-- <!--
<i2p.news date="$Date: 2010-01-22 00:00:00 $"> <i2p.news date="$Date: 2010-02-15 00:00:00 $">
<i2p.release version="0.7.10" date="2010/01/22" minVersion="0.6" /> <i2p.release version="0.7.11" date="2010/02/15" minVersion="0.6" />
--> -->
<h4><ul><li>2010-01-22: <b>0.7.10 <a href="http://www.i2p2.i2p/release-0.7.10.html">Released</a></b></li></ul></h4> <h4><ul><li>2010-02-15: <b>0.7.11 <a href="http://www.i2p2.i2p/release-0.7.11.html">Released</a></b></li></ul></h4>
<p> <p>
0.7.10 closes some recently-discovered vulnerabilities related to the The 0.7.11 release fixes several issues, some related to clocks, which prevented new routers from quickly integrating into the network.
way routers communicate with floodfill peers. It also fixes the installer for 64-bit Windows.
Network database stores and verifies are moved from exploratory to client tunnels, and are encrypted. The release includes an
update to <a href="http://old.nabble.com/jetty-5.1.15,-6.1.18-and-7.0.0.M2-td23652819.html">Jetty 5.1.15</a>
to fix <a href="http://www.kb.cert.org/vuls/id/402580">this vulnerability</a>.
</p><p> </p><p>
Also, to improve anonymity, router's fast peer set is now limited to a maximum of 30. As usual, the release contains more anonymity and performance improvements,
The release also fixes a bug causing Windows installs to fail when the install or user path and an assortment of bug fixes.
contained a "\r" or "\n".
Upgrading is recommended. Upgrading is recommended.
</p><p>
We already have more big improvements in development for the next two releases.
Please give the Please give the
developers feedback on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p</a> or <a href="http://forum.i2p">forum.i2p</a> developers feedback on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p</a> or <a href="http://forum.i2p">forum.i2p</a>
and <a href="http://www.i2p2.i2p/getinvolved.html">get involved</a> and <a href="http://www.i2p2.i2p/getinvolved.html">get involved</a>,
or <a href="http://www.i2p2.i2p/donate.html">donate</a>! spread the word,
We are still looking for help on new and existing translations. and <a href="http://www.i2p2.i2p/donate.html">donate</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</a>. Please volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p</a>.
</p> </p>

View File

@ -18,7 +18,7 @@ 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 = 14; public final static long BUILD = 0;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";