From ef1447a8166a9cbcb80bc1392a8e8bc0340a8676 Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 27 Feb 2012 15:25:23 +0000 Subject: [PATCH] 0.8.13 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 2 ++ installer/install.xml | 2 +- installer/resources/news.xml | 33 +++++++++++++++---- .../src/net/i2p/router/RouterVersion.java | 4 +-- 5 files changed, 33 insertions(+), 10 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 50ea690685..788e8f363b 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -16,7 +16,7 @@ package net.i2p; public class CoreVersion { /** deprecated */ public final static String ID = "Monotone"; - public final static String VERSION = "0.8.12"; + public final static String VERSION = "0.8.13"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 4c51037de4..e3b1aae098 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2012-02-27 0.8.13 released + 2012-02-22 kytv * Updated German, Italian, Spanish, Swedish, and Ukrainian translations from Transifex. diff --git a/installer/install.xml b/installer/install.xml index d6e802890e..b830de9ed6 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.12 + 0.8.13 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 324c580644..b30b5a02a8 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,15 +1,36 @@
-

2012-01-06: 0.8.12 Released

+

2012-02-27: 0.8.13 Released

-The 0.8.12 release fixes several serious message corruption bugs. -It also contains a redesign of the router's congestion control, and continued -optimization of CPU and memory usage. We are hopeful that these changes will -improve network performance. Upgrading is recommended. +The 0.8.13 release contains several bug fixes and a couple of new features. +We are pleased that the last release significantly improved performance, +and the network is running well despite continued rapid growth. +Upgrading is recommended. +

+This is likely to be the last release before 0.9, in which we will migrate to Jetty 6, +and introduce a simplified router console home page. Monitor the news section of +your the router console in the coming weeks for more information on the next release. +

+Starting with this release, the router will +check for and install plugin updates shortly upon restarting after a router update. +To prevent this, add the advanced configuration +plugins.autoUpdate=false before restarting. +There is also a new update-all button on the client configuration page. +

+Routers in certain countries will now automatically enable hidden mode for increased protection. +However, hidden mode may have lower performance or reliability, and is still a work in progress. +To disable hidden mode before restarting, add the advanced configuration +router.isHidden=false. +To disable hidden mode later, select use all auto-detect methods under IP Configuration on the +network configuration page. +For the list of countries see this thread on zzz.i2p. +The only country on the list that has more than one or two I2P users is China. +

+After you have upgraded, check out the new tunnel creation wizard.

Say hello to the volunteers on the #i2p-help IRC channel. Get involved, diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 14408f1ed4..a411b00998 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -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 = 18; + 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);