This commit is contained in:
zzz
2010-03-15 18:03:46 +00:00
parent 52e2aaa20d
commit 5026cbdc8d
6 changed files with 27 additions and 17 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.11"; public final static String VERSION = "0.7.12";
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-03-15 0.7.12 released
2010-03-13 zzz 2010-03-13 zzz
* Partial fix for i2ptunnel nonce troubles * Partial fix for i2ptunnel nonce troubles

View File

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

View File

@ -1,6 +1,6 @@
<!-- <!--
<i2p.news date="$Date: 2010-02-15 00:00:00 $"> <i2p.news date="$Date: 2010-03-15 00:00:00 $">
<i2p.release version="0.7.11" date="2010/02/15" minVersion="0.6"/> <i2p.release version="0.7.12" date="2010/03/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,29 @@
<!-- <!--
<i2p.news date="$Date: 2010-02-15 00:00:00 $"> <i2p.news date="$Date: 2010-03-15 00:00:00 $">
<i2p.release version="0.7.11" date="2010/02/15" minVersion="0.6" /> <i2p.release version="0.7.12" date="2010/03/15" minVersion="0.6" />
--> -->
<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> <h4><ul><li>2010-03-15: <b>0.7.12 <a href="http://www.i2p2.i2p/release-0.7.12.html">Released</a></b></li></ul></h4>
<p> <p>
The 0.7.11 release fixes several issues, some related to clocks, which prevented new routers from quickly integrating into the network. The 0.7.12 release contains support for user-generated plugins. These plugins may contain console web applications,
It also fixes the installer for 64-bit Windows. themes, translations, or standalone programs.
The release includes an Some plugins are available for testing at
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> <a href="http://i2pbote.i2p/">i2pbote.i2p</a>
to fix <a href="http://www.kb.cert.org/vuls/id/402580">this vulnerability</a>. and
<a href="http://stats.i2p/i2p/plugins/">stats.i2p</a>.
We are hopeful this support will enable rapid development of innovative i2p applications.
</p><p>
The release fixes the blank-page bug when an eepsite is not reachable,
and also improves handling of clock skews and IP changes.
It adds support for a new, smaller tunnel build message,
that will be tested in this release and enabled in the next release.
</p><p> </p><p>
As usual, the release contains more anonymity and performance improvements, As usual, the release contains more anonymity and performance improvements,
and an assortment of bug fixes. translation updates, and an assortment of other bug fixes.
Upgrading is recommended. Upgrading is recommended.
</p><p> </p><p>
We already have more big improvements in development for the next two releases. The last 6 months of development have dramatically increased the performance and capacity of the network.
Please give the Please help grow the network.
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>,
spread the word, spread the word,

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