forked from I2P_Developers/i2p.i2p
0.8.4
This commit is contained in:
@@ -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.3";
|
public final static String VERSION = "0.8.4";
|
||||||
|
|
||||||
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);
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
* 2011-03-02 0.8.4 released
|
||||||
|
|
||||||
2011-02-27 zzz
|
2011-02-27 zzz
|
||||||
* Console:
|
* Console:
|
||||||
- Fix numerous readme HTML errors
|
- Fix numerous readme HTML errors
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<info>
|
<info>
|
||||||
<appname>i2p</appname>
|
<appname>i2p</appname>
|
||||||
<appversion>0.8.3</appversion>
|
<appversion>0.8.4</appversion>
|
||||||
<authors>
|
<authors>
|
||||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
<author name="I2P" email="http://forum.i2p2.de/"/>
|
||||||
</authors>
|
</authors>
|
||||||
|
@@ -1,24 +1,13 @@
|
|||||||
<!--
|
<!--
|
||||||
<i2p.news date="$Date: 2011-01-24 00:00:00 $">
|
<i2p.news date="$Date: 2011-03-02 00:00:00 $">
|
||||||
<i2p.release version="0.8.3" date="2011/01/24" minVersion="0.6" />
|
<i2p.release version="0.8.4" date="2011/03/02" minVersion="0.6" />
|
||||||
-->
|
-->
|
||||||
<div lang="en">
|
<div lang="en">
|
||||||
<h3>2011-01-24: <b>0.8.3 <a href="http://www.i2p2.i2p/release-0.8.3.html">Released</a></b></h3>
|
<h3>2011-03-02: <b>0.8.4 <a href="http://www.i2p2.i2p/release-0.8.4.html">Released</a></b></h3>
|
||||||
<p>
|
<p>
|
||||||
The 0.8.3 release contains several performance improvements, including reduction of threads and
|
The 0.8.4 release contains some performance improvements and important bug fixes.
|
||||||
memory usage, and faster I2CP (client-router) communication.
|
Also, i2psnark now supports magnet links.
|
||||||
</p><p>
|
As usual, upgrading is recommended.
|
||||||
There is also new SSL router console support
|
|
||||||
(<a href="http://zzz.i2p/topics/800">instructions here</a>),
|
|
||||||
a new <a href="/configreseed">reseed configuration page</a> including HTTP proxy support for those behind restrictive firewalls,
|
|
||||||
a new <a href="/configclients#i2cp">I2CP configuration section</a> including I2CP-over-SSL support for remote clients,
|
|
||||||
a new <a href="/i2ptunnel/edit?tunnel=3">server connection limits and blacklist configuration section</a> for enhanced DoS protection,
|
|
||||||
and a new
|
|
||||||
<a href="/i2ptunnel/edit?tunnel=0">HTTP proxy jump server configuration section</a> so you may easily add alternative jump servers.
|
|
||||||
Statistics are now limited by default to reduce memory usage; the full set of statistics may be re-enabled on the
|
|
||||||
<a href="/configstats">stats configuration page</a>.
|
|
||||||
There are also bug fixes, of course, so
|
|
||||||
as usual, upgrading is recommended.
|
|
||||||
</p><p>
|
</p><p>
|
||||||
Please help grow the network.
|
Please help grow the network.
|
||||||
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>.
|
||||||
@@ -27,6 +16,6 @@ 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.
|
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-dev</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -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 = 21;
|
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);
|
||||||
|
Reference in New Issue
Block a user