Skip to content

Commit

Permalink
0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zzz committed Jan 24, 2011
1 parent bf99b04 commit 6566709
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion core/java/src/net/i2p/CoreVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class CoreVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = "0.8.2";
public final static String VERSION = "0.8.3";

public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);
Expand Down
2 changes: 2 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* 2011-01-24 0.8.3 released

2011-01-16 zzz
* Console: Allow editing of console args
* UDP: Prevent rare startup NPE
Expand Down
2 changes: 1 addition & 1 deletion installer/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<info>
<appname>i2p</appname>
<appversion>0.8.2</appversion>
<appversion>0.8.3</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
</authors>
Expand Down
25 changes: 16 additions & 9 deletions installer/resources/news.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
<!--
<i2p.news date="$Date: 2010-12-22 00:00:00 $">
<i2p.release version="0.8.2" date="2010/12/22" minVersion="0.6" />
<i2p.news date="$Date: 2011-01-24 00:00:00 $">
<i2p.release version="0.8.3" date="2011/01/24" minVersion="0.6" />
-->
<div lang="en">
<h3>2010-12-22: <b>0.8.2 <a href="http://www.i2p2.i2p/release-0.8.2.html">Released</a></b></h3>
<h3>2011-01-24: <b>0.8.3 <a href="http://www.i2p2.i2p/release-0.8.3.html">Released</a></b></h3>
<p>
The 0.8.2 release includes extensive bug fixes and theme updates in the router and in i2psnark.
There are also optimizations to reduce memory usage in i2psnark.
The HTTP and SOCKS proxies now support local and remote authorization.
As usual, upgrading is recommended.
The 0.8.3 release contains several performance improvements, including reduction of threads and
memory usage, and faster I2CP (client-router) communication.
</p><p>
I2P will be at 27C3 in Berlin the week of the December 27th.
Look for the I2P people there and ask for I2P stickers!
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>
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>.
Expand Down
4 changes: 2 additions & 2 deletions router/java/src/net/i2p/router/RouterVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 12;
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);
Expand Down

0 comments on commit 6566709

Please sign in to comment.