rename windows installer; 0.9

This commit is contained in:
zzz
2012-05-01 21:06:17 +00:00
parent 7af65f4346
commit 7a690b245f
6 changed files with 46 additions and 37 deletions

View File

@@ -1384,7 +1384,7 @@
<echo message="New version number is ${release.number}" /> <echo message="New version number is ${release.number}" />
<copy file="i2pupdate.zip" tofile="i2pupdate_${release.number}.zip" /> <copy file="i2pupdate.zip" tofile="i2pupdate_${release.number}.zip" />
<copy file="i2pinstall_${full.version}_windows-only.exe" tofile="i2pinstall_${release.number}.exe" /> <copy file="i2pinstall_${full.version}_windows-only.exe" tofile="i2pinstall_${release.number}_windows.exe" />
<copy file="i2pinstall_${full.version}.jar" tofile="i2pinstall_${release.number}.jar" /> <copy file="i2pinstall_${full.version}.jar" tofile="i2pinstall_${release.number}.jar" />
<delete file="i2pupdate.sud" /> <delete file="i2pupdate.sud" />
<delete file="i2pupdate.su2" /> <delete file="i2pupdate.su2" />
@@ -1483,13 +1483,13 @@
<arg value="i2p-${release.number}/" /> <arg value="i2p-${release.number}/" />
</exec> </exec>
<echo message="Sign the files:" /> <echo message="Sign the files:" />
<delete file="i2pinstall_${release.number}.exe.sig" /> <delete file="i2pinstall_${release.number}_windows.exe.sig" />
<delete file="i2pinstall_${release.number}.jar.sig" /> <delete file="i2pinstall_${release.number}.jar.sig" />
<delete file="i2psource_${release.number}.tar.bz2.sig" /> <delete file="i2psource_${release.number}.tar.bz2.sig" />
<delete file="i2pupdate_${release.number}.zip.sig" /> <delete file="i2pupdate_${release.number}.zip.sig" />
<exec executable="gpg" failonerror="true"> <exec executable="gpg" failonerror="true">
<arg value="-b" /> <arg value="-b" />
<arg value="i2pinstall_${release.number}.exe" /> <arg value="i2pinstall_${release.number}_windows.exe" />
</exec> </exec>
<exec executable="gpg" failonerror="true"> <exec executable="gpg" failonerror="true">
<arg value="-b" /> <arg value="-b" />
@@ -1505,13 +1505,13 @@
</exec> </exec>
<exec executable="chmod" failonerror="true"> <exec executable="chmod" failonerror="true">
<arg value="444" /> <arg value="444" />
<arg value="i2pinstall_${release.number}.exe" /> <arg value="i2pinstall_${release.number}_windows.exe" />
<arg value="i2pinstall_${release.number}.jar" /> <arg value="i2pinstall_${release.number}.jar" />
<arg value="i2psource_${release.number}.tar.bz2" /> <arg value="i2psource_${release.number}.tar.bz2" />
<arg value="i2pupdate_${release.number}.zip" /> <arg value="i2pupdate_${release.number}.zip" />
<arg value="i2pupdate.su2" /> <arg value="i2pupdate.su2" />
<arg value="i2pupdate.sud" /> <arg value="i2pupdate.sud" />
<arg value="i2pinstall_${release.number}.exe.sig" /> <arg value="i2pinstall_${release.number}_windows.exe.sig" />
<arg value="i2pinstall_${release.number}.jar.sig" /> <arg value="i2pinstall_${release.number}.jar.sig" />
<arg value="i2psource_${release.number}.tar.bz2.sig" /> <arg value="i2psource_${release.number}.tar.bz2.sig" />
<arg value="i2pupdate_${release.number}.zip.sig" /> <arg value="i2pupdate_${release.number}.zip.sig" />
@@ -1519,20 +1519,20 @@
<echo message="File sizes:" /> <echo message="File sizes:" />
<exec executable="ls" failonerror="true"> <exec executable="ls" failonerror="true">
<arg value="-l" /> <arg value="-l" />
<arg value="i2pinstall_${release.number}.exe" /> <arg value="i2pinstall_${release.number}_windows.exe" />
<arg value="i2pinstall_${release.number}.jar" /> <arg value="i2pinstall_${release.number}.jar" />
<arg value="i2psource_${release.number}.tar.bz2" /> <arg value="i2psource_${release.number}.tar.bz2" />
<arg value="i2pupdate_${release.number}.zip" /> <arg value="i2pupdate_${release.number}.zip" />
<arg value="i2pupdate.su2" /> <arg value="i2pupdate.su2" />
<arg value="i2pupdate.sud" /> <arg value="i2pupdate.sud" />
<arg value="i2pinstall_${release.number}.exe.sig" /> <arg value="i2pinstall_${release.number}_windows.exe.sig" />
<arg value="i2pinstall_${release.number}.jar.sig" /> <arg value="i2pinstall_${release.number}.jar.sig" />
<arg value="i2psource_${release.number}.tar.bz2.sig" /> <arg value="i2psource_${release.number}.tar.bz2.sig" />
<arg value="i2pupdate_${release.number}.zip.sig" /> <arg value="i2pupdate_${release.number}.zip.sig" />
</exec> </exec>
<echo message="SHA256 sums:" /> <echo message="SHA256 sums:" />
<exec executable="sha256sum" failonerror="true"> <exec executable="sha256sum" failonerror="true">
<arg value="i2pinstall_${release.number}.exe" /> <arg value="i2pinstall_${release.number}_windows.exe" />
<arg value="i2pinstall_${release.number}.jar" /> <arg value="i2pinstall_${release.number}.jar" />
<arg value="i2psource_${release.number}.tar.bz2" /> <arg value="i2psource_${release.number}.tar.bz2" />
<arg value="i2pupdate_${release.number}.zip" /> <arg value="i2pupdate_${release.number}.zip" />

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.13"; public final static String VERSION = "0.9";
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 @@
* 2012-05-02 0.9 released
2012-04-26 kytv 2012-04-26 kytv
* German, Spanish, and Swedish Translation updates * German, Spanish, and Swedish Translation updates
from Transifex from Transifex

View File

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

View File

@@ -1,36 +1,43 @@
<!-- <!--
<i2p.news date="$Date: 2012-01-06 00:00:00 $"> <i2p.news date="$Date: 2012-01-06 00:00:00 $">
<i2p.release version="0.8.13" date="2012/02/27" minVersion="0.6" /> <i2p.release version="0.9" date="2012/05/02" minVersion="0.6" />
--> -->
<div lang="en"> <div lang="en">
<h3>2012-02-27: <b>0.8.13 <a href="http://www.i2p2.i2p/release-0.8.13.html">Released</a></b></h3> <h3>2012-05-02: <b>0.9 <a href="http://www.i2p2.i2p/release-0.9.html">Released</a></b></h3>
<p> <p>
The 0.8.13 release contains several bug fixes and a couple of new features. In the 0.9 release we migrate to Jetty 6 for the console and eepsite web server,
We are pleased that the last release significantly improved performance, and introduce a simplified router console home page.
and the network is running well despite continued rapid growth. This release is network-compatible with prior releases, however see below for important
information on compatibility with existing eepsites, plugins, and webapps.
Upgrading is recommended. Upgrading is recommended.
</p><p> </p>
This is likely to be the last release before 0.9, in which we will migrate to Jetty 6,
and introduce a simplified router console home page. Monitor the news section of <p><strong>Update info</strong></p>
your the router console in the coming weeks for more information on the next release.
</p><p> <p> In-network updates and new installs will include Jetty 6, Tomcat, and JSTL.
Starting with this release, the router will PPA (Ubuntu/Debian) updates will have new dependencies for these packages.</p>
check for and install plugin updates shortly upon restarting after a router update.
To prevent this, add the <a href="/configadvanced">advanced configuration</a> <p> If you have not enabled or modified your eepsite settings, the update should automatically migrate you to Jetty 6.
<tt>plugins.autoUpdate=false</tt> before restarting. If you do not use Jetty for your eepsite, the update will not affect it.
There is also a new update-all button on <a href="/configclients#plugin">the client configuration page</a>. </p>
</p><p>
Routers in certain countries will now automatically enable hidden mode for increased protection. <p> If you have more than one Jetty eepsite or you have changed the local port (7658 by default) or otherwise edited jetty.xml,
However, hidden mode may have lower performance or reliability, and is still a work in progress. you must manually edit the new jetty configuration files after updating, and then restart. </p>
To disable hidden mode before restarting, add the <a href="/configadvanced">advanced configuration</a>
<tt>router.isHidden=false</tt>. <p>For those with Jetty-based eepsites, we recommend that you verify that the upgrade
To disable hidden mode later, select <i>use all auto-detect methods</i> under <i>IP Configuration</i> on the was successful and the eepsites are operational after the router restarts.
<a href="/confignet">network configuration page</a>.
For the list of countries see <a href="http://zzz.i2p/topics/969">this thread on zzz.i2p</a>. <p> Plugin information:
The only country on the list that has more than one or two I2P users is China. <br /> Plugins not listed below should continue to work under Jetty 6.
</p><p> <br /> The following plugins require updates for Jetty 6. The router will download and install them a few minutes
After you have upgraded, check out the <a href="/i2ptunnel/wizard">new tunnel creation wizard</a>. after upgrading: i2pbote, pebble, zzzot
<br /> The following plugins have been renamed and for Jetty 6. Users must manually remove them and download the new versions
after upgrading: neodatis, seedless
</p>
<p> Other non-standard console and eepsite webapps not packaged by the I2P development team may or may not
require modifications.
</p><p> </p><p>
Say hello to the volunteers on the <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>.
<a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>, <a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>,

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 = 28; public final static long BUILD = 0;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";