This commit is contained in:
zzz
2011-04-18 03:12:51 +00:00
parent 9c4d107b5d
commit 97bb2d81b7
6 changed files with 12 additions and 11 deletions

View File

@ -16,7 +16,7 @@ package net.i2p;
public class CoreVersion { public class CoreVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; 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[]) { public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION); System.out.println("I2P Core version: " + VERSION);

View File

@ -1,3 +1,5 @@
* 2011-04-18 0.8.5 released
2011-04-11 zzz 2011-04-11 zzz
* Console: Hide iframe on mobile browsers * Console: Hide iframe on mobile browsers
* DataHelper: Speed up eq() (Ticket #437) * DataHelper: Speed up eq() (Ticket #437)

View File

@ -4,7 +4,7 @@
<info> <info>
<appname>i2p</appname> <appname>i2p</appname>
<appversion>0.8.4</appversion> <appversion>0.8.5</appversion>
<authors> <authors>
<author name="I2P" email="http://forum.i2p2.de/"/> <author name="I2P" email="http://forum.i2p2.de/"/>
</authors> </authors>

View File

@ -1,12 +1,11 @@
<!-- <!--
<i2p.news date="$Date: 2011-03-02 00:00:00 $"> <i2p.news date="$Date: 2011-04-18 00:00:00 $">
<i2p.release version="0.8.4" date="2011/03/02" minVersion="0.6" /> <i2p.release version="0.8.5" date="2011/04/18" minVersion="0.6" />
--> -->
<div lang="en"> <div lang="en">
<h3>2011-03-02: <b>0.8.4 <a href="http://www.i2p2.i2p/release-0.8.4.html">Released</a></b></h3> <h3>2011-04-18: <b>0.8.5 <a href="http://www.i2p2.i2p/release-0.8.5.html">Released</a></b></h3>
<p> <p>
The 0.8.4 release contains some performance improvements and important bug fixes. The 0.8.5 release contains a few bug fixes and performance improvements, and lots of translation updates.
Also, i2psnark now supports magnet links.
As usual, upgrading is recommended. As usual, upgrading is recommended.
</p><p> </p><p>
Please help grow the network. Please help grow the network.

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 9; public final static long BUILD = 0;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";

View File

@ -28,9 +28,9 @@ import net.i2p.util.SecureFileOutputStream;
/** /**
* Write profiles to disk at shutdown, * Write profiles to disk at shutdown,
* read at startup. * read at startup.
* The files are gzip compressed, however we unfortunately store them * The files are gzip compressed, we previously stored them
* with a ".dat" extension instead of ".txt.gz", so it isn't apparent. * with a ".dat" extension instead of ".txt.gz", so it wasn't apparent.
* TODO: Migrate to new extension. * Now migrated to a ".txt.gz" extension.
*/ */
class ProfilePersistenceHelper { class ProfilePersistenceHelper {
private final Log _log; private final Log _log;