Skip to content

Commit

Permalink
0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zzz committed Apr 18, 2011
1 parent 9c4d107 commit 97bb2d8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion core/java/src/net/i2p/CoreVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
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);
Expand Down
2 changes: 2 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion installer/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<info>
<appname>i2p</appname>
<appversion>0.8.4</appversion>
<appversion>0.8.5</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
</authors>
Expand Down
9 changes: 4 additions & 5 deletions installer/resources/news.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<!--
<i2p.news date="$Date: 2011-03-02 00:00:00 $">
<i2p.release version="0.8.4" date="2011/03/02" minVersion="0.6" />
<i2p.news date="$Date: 2011-04-18 00:00:00 $">
<i2p.release version="0.8.5" date="2011/04/18" minVersion="0.6" />
-->
<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>
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.
</p><p>
Please help grow the network.
Expand Down
2 changes: 1 addition & 1 deletion router/java/src/net/i2p/router/RouterVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
/**
* 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;
Expand Down

0 comments on commit 97bb2d8

Please sign in to comment.