0.7.14
This commit is contained in:
@ -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.7.13";
|
public final static String VERSION = "0.7.14";
|
||||||
|
|
||||||
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);
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
* 2010-06-07 0.7.14 released
|
||||||
|
|
||||||
|
2010-06-07 zzz
|
||||||
|
* Misc tweaks after code review
|
||||||
|
|
||||||
2010-06-05 zzz
|
2010-06-05 zzz
|
||||||
* Netdb:
|
* Netdb:
|
||||||
- Use new receivedAsReply flag in LeaseSet to mark
|
- Use new receivedAsReply flag in LeaseSet to mark
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<info>
|
<info>
|
||||||
<appname>i2p</appname>
|
<appname>i2p</appname>
|
||||||
<appversion>0.7.13</appversion>
|
<appversion>0.7.14</appversion>
|
||||||
<authors>
|
<authors>
|
||||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
<author name="I2P" email="http://forum.i2p2.de/"/>
|
||||||
</authors>
|
</authors>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!--
|
<!--
|
||||||
<i2p.news date="$Date: 2010-04-27 00:00:00 $">
|
<i2p.news date="$Date: 2010-06-07 00:00:00 $">
|
||||||
<i2p.release version="0.7.13" date="2010/04/27" minVersion="0.6"/>
|
<i2p.release version="0.7.14" date="2010/06/07" minVersion="0.6"/>
|
||||||
-->
|
-->
|
||||||
<h4><ul><li>Congratulations on getting I2P installed!</li></ul></h4>
|
<h4><ul><li>Congratulations on getting I2P installed!</li></ul></h4>
|
||||||
<p>
|
<p>
|
||||||
|
@ -1,17 +1,20 @@
|
|||||||
<!--
|
<!--
|
||||||
<i2p.news date="$Date: 2010-04-27 00:00:00 $">
|
<i2p.news date="$Date: 2010-06-07 00:00:00 $">
|
||||||
<i2p.release version="0.7.13" date="2010/04/27" minVersion="0.6" />
|
<i2p.release version="0.7.14" date="2010/06/07" minVersion="0.6" />
|
||||||
-->
|
-->
|
||||||
<h4><ul><li>2010-04-27: <b>0.7.13 <a href="http://www.i2p2.i2p/release-0.7.13.html">Released</a></b></li></ul></h4>
|
<h4><ul><li>2010-06-07: <b>0.7.14 <a href="http://www.i2p2.i2p/release-0.7.14.html">Released</a></b></li></ul></h4>
|
||||||
<p>
|
<p>
|
||||||
The 0.7.13 release contains several changes and bug fixes to improve performance.
|
The 0.7.14 release contains the usual collection of bug fixes and performance tweaks.
|
||||||
It also includes improvements for the plugin support that was
|
There are also some i2psnark improvements and more fixes for plugins.
|
||||||
introduced in the last release.
|
|
||||||
The new, smaller tunnel build message is enabled,
|
|
||||||
to reduce overhead and increase build success.
|
|
||||||
</p><p>
|
|
||||||
Of course, there is the usual assortment of bug fixes as well.
|
|
||||||
Upgrading is recommended.
|
Upgrading is recommended.
|
||||||
|
</p><p>
|
||||||
|
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.
|
||||||
|
</p><p>
|
||||||
Please help grow the network!
|
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 new <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
|
||||||
Give the
|
Give the
|
||||||
|
@ -18,10 +18,10 @@ 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 = 18;
|
public final static long BUILD = 0;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "-rc";
|
public final static String EXTRA = "";
|
||||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||||
|
Reference in New Issue
Block a user