From 5bbd61b75cdebb010fc81344e84abe2ec49e6e0e Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 7 Jun 2010 12:18:43 +0000 Subject: [PATCH] 0.7.14 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 5 ++++ installer/install.xml | 2 +- installer/resources/initialNews.xml | 4 ++-- installer/resources/news.xml | 23 +++++++++++-------- .../src/net/i2p/router/RouterVersion.java | 4 ++-- 6 files changed, 24 insertions(+), 16 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 58c162857..00495669c 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.13"; + public final static String VERSION = "0.7.14"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index bca327011..7a36876bd 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,8 @@ +* 2010-06-07 0.7.14 released + +2010-06-07 zzz + * Misc tweaks after code review + 2010-06-05 zzz * Netdb: - Use new receivedAsReply flag in LeaseSet to mark diff --git a/installer/install.xml b/installer/install.xml index 37fe5fce1..248e594b8 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.7.13 + 0.7.14 diff --git a/installer/resources/initialNews.xml b/installer/resources/initialNews.xml index 907d9f724..1ad5b28ad 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 733875f2e..20001e842 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,17 +1,20 @@ -

+

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

-Of course, there is the usual assortment of bug fixes as well. +The 0.7.14 release contains the usual collection of bug fixes and performance tweaks. +There are also some i2psnark improvements and more fixes for plugins. Upgrading is recommended. +

+Important note: Due to a bug in 0.7.13 and earlier releases, clicking 'Download 0.7.14 Update' +in your router console summary bar, when you have the summary bar refresh enabled, +may result in multiple downloads of the update. Please disable the summary bar refresh +before clicking the download button. +If your update policy is set to 'Download and Verify Only' (the default) then +you should not have a problem, the router will download the file once. +

Please help grow the network! Say hello to the volunteers on the new #i2p-help IRC channel. Give the diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 14408f1ed..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 = 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);