0.8.1
This commit is contained in:
@ -274,7 +274,7 @@ public class I2PSnarkServlet extends Default {
|
||||
out.write("</th>\n<th align=\"center\">");
|
||||
out.write("<img border=\"0\" src=\"/themes/snark/ubergine/images/eta.png\" title=\"");
|
||||
out.write(_("Estimated Download Time"));
|
||||
out.write("\"> ");
|
||||
out.write("\">"); // space here would look better but nbsp is too big and thinsp breaks
|
||||
out.write(_("ETA"));
|
||||
out.write("</th>\n<th align=\"center\">");
|
||||
out.write("<img border=\"0\" src=\"/themes/console/images/inbound.png\" title=\"");
|
||||
|
@ -16,7 +16,7 @@ package net.i2p;
|
||||
public class CoreVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = "0.8";
|
||||
public final static String VERSION = "0.8.1";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Core version: " + VERSION);
|
||||
|
@ -1,3 +1,5 @@
|
||||
* 2010-11-15 0.8.1 released
|
||||
|
||||
2010-11-08 zzz
|
||||
* I2CP: Fix NPE caused by null session options (seen in i2pbote)
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<info>
|
||||
<appname>i2p</appname>
|
||||
<appversion>0.8</appversion>
|
||||
<appversion>0.8.1</appversion>
|
||||
<authors>
|
||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
||||
</authors>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<!--
|
||||
<i2p.news date="$Date: 2010-07-12 00:00:00 $">
|
||||
<i2p.release version="0.8" date="2010/07/12" minVersion="0.6"/>
|
||||
<i2p.news date="$Date: 2010-11-15 00:00:00 $">
|
||||
<i2p.release version="0.8.1" date="2010/11/15" minVersion="0.6"/>
|
||||
-->
|
||||
<div lang="en">
|
||||
<h4><ul><li>Congratulations on getting I2P installed!</li></ul></h4>
|
||||
|
@ -1,17 +1,20 @@
|
||||
<!--
|
||||
<i2p.news date="$Date: 2010-07-12 00:00:00 $">
|
||||
<i2p.release version="0.8" date="2010/07/12" minVersion="0.6" />
|
||||
<i2p.news date="$Date: 2010-11-15 00:00:00 $">
|
||||
<i2p.release version="0.8.1" date="2010/11/15" minVersion="0.6" />
|
||||
-->
|
||||
<div lang="en">
|
||||
<h4><ul><li>2010-07-12: <b>0.8 <a href="http://www.i2p2.i2p/release-0.8.html">Released</a></b></li></ul></h4>
|
||||
<p>
|
||||
The 0.8 release contains the usual collection of bug fixes,
|
||||
as well as completion of the German translation by eche|on and a complete Dutch translation by monkeybrains and duck.
|
||||
This release is fully compatible with the 0.7.x releases.
|
||||
The 0.8.1 release contains the usual collection of bug fixes,
|
||||
and a newly colorful i2psnark theme by dr|zed.
|
||||
For increased security, files created by the router will now be readable only by the owner (mode 600).
|
||||
As usual, upgrading is recommended.
|
||||
</p><p>
|
||||
We have updated all our <a href="http://www.i2p2.i2p/how">technical specifications</a>
|
||||
and <a href="http://docs.i2p2.de/javadoc/">Javadocs</a>, check them out.
|
||||
|
||||
Please help grow the network!
|
||||
Say hello to the volunteers on the new <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
|
||||
Say hello to the volunteers on the <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
|
||||
Give the
|
||||
developers feedback on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p</a> or <a href="http://forum.i2p">forum.i2p</a>
|
||||
and <a href="http://www.i2p2.i2p/getinvolved.html">get involved</a>,
|
||||
|
@ -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 = 19;
|
||||
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);
|
||||
|
Reference in New Issue
Block a user