From 049a083e42d3d8c6cdfed54a39778f20cce5a0be Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 27 Apr 2010 01:43:35 +0000 Subject: [PATCH] 0.7.13 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 2 ++ installer/install.xml | 2 +- installer/resources/initialNews.xml | 4 +-- installer/resources/news.xml | 31 +++++++------------ .../src/net/i2p/router/RouterVersion.java | 4 +-- 6 files changed, 19 insertions(+), 26 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 7465774e2..58c162857 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.7.12"; + public final static String VERSION = "0.7.13"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 7469899db..4e7971b9a 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2010-04-27 0.7.13 released + 2010-04-23 zzz * Plugins: Cleanups diff --git a/installer/install.xml b/installer/install.xml index 6cc0b3ff8..ea5234838 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.7.12 + 0.7.13 diff --git a/installer/resources/initialNews.xml b/installer/resources/initialNews.xml index 66daf15b0..907d9f724 100644 --- a/installer/resources/initialNews.xml +++ b/installer/resources/initialNews.xml @@ -1,6 +1,6 @@

  • Congratulations on getting I2P installed!

diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 8a31fb44f..733875f2e 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,28 +1,19 @@ -

+

-The 0.7.12 release contains support for user-generated plugins. These plugins may contain console web applications, -themes, translations, or standalone programs. -Some plugins are available for testing at -i2pbote.i2p -and -stats.i2p. -We are hopeful this support will enable rapid development of innovative i2p applications. +The 0.7.13 release contains several changes and bug fixes to improve performance. +It also includes improvements for the plugin support that was +introduced in the last release. +The new, smaller tunnel build message is enabled, +to reduce overhead and increase build success.

-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. -

-As usual, the release contains more anonymity and performance improvements, -translation updates, and an assortment of other bug fixes. +Of course, there is the usual assortment of bug fixes as well. Upgrading is recommended. -

-The last 6 months of development have dramatically increased the performance and capacity of the network. -Please help grow the network. +Please help grow the network! +Say hello to the volunteers on the new #i2p-help IRC channel. Give the developers feedback on IRC #i2p or forum.i2p and get involved, diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 421ff4f63..a411b0099 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 = 16; + 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);