From 97bb2d81b703d4bf4c0cc8ab111d37324b6b360a Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 18 Apr 2011 03:12:51 +0000 Subject: [PATCH] 0.8.5 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 2 ++ installer/install.xml | 2 +- installer/resources/news.xml | 9 ++++----- router/java/src/net/i2p/router/RouterVersion.java | 2 +- .../i2p/router/peermanager/ProfilePersistenceHelper.java | 6 +++--- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 230f55eae..4039caa82 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.4"; + public final static String VERSION = "0.8.5"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 20924cd6d..2f9cfc8c7 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2011-04-18 0.8.5 released + 2011-04-11 zzz * Console: Hide iframe on mobile browsers * DataHelper: Speed up eq() (Ticket #437) diff --git a/installer/install.xml b/installer/install.xml index 40a6e59c8..2f2e03f47 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.4 + 0.8.5 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index c8a740085..9006e0c8e 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,12 +1,11 @@
-

2011-03-02: 0.8.4 Released

+

2011-04-18: 0.8.5 Released

-The 0.8.4 release contains some performance improvements and important bug fixes. -Also, i2psnark now supports magnet links. +The 0.8.5 release contains a few bug fixes and performance improvements, and lots of translation updates. As usual, upgrading is recommended.

Please help grow the network. diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f2522cd4e..a411b0099 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 9; + public final static long BUILD = 0; /** for example "-test" */ public final static String EXTRA = ""; diff --git a/router/java/src/net/i2p/router/peermanager/ProfilePersistenceHelper.java b/router/java/src/net/i2p/router/peermanager/ProfilePersistenceHelper.java index e278063aa..af0167f20 100644 --- a/router/java/src/net/i2p/router/peermanager/ProfilePersistenceHelper.java +++ b/router/java/src/net/i2p/router/peermanager/ProfilePersistenceHelper.java @@ -28,9 +28,9 @@ import net.i2p.util.SecureFileOutputStream; /** * Write profiles to disk at shutdown, * read at startup. - * The files are gzip compressed, however we unfortunately store them - * with a ".dat" extension instead of ".txt.gz", so it isn't apparent. - * TODO: Migrate to new extension. + * The files are gzip compressed, we previously stored them + * with a ".dat" extension instead of ".txt.gz", so it wasn't apparent. + * Now migrated to a ".txt.gz" extension. */ class ProfilePersistenceHelper { private final Log _log;