diff --git a/build.xml b/build.xml index ca4d444cd..297b3a3ee 100644 --- a/build.xml +++ b/build.xml @@ -138,6 +138,9 @@ + + + diff --git a/checklist.txt b/checklist.txt index 6f2dc8dfa..6e40c3114 100644 --- a/checklist.txt +++ b/checklist.txt @@ -2,9 +2,10 @@ Release checklist ----------------- Change revision in: + history.txt initialNews.xml - news.xml installer/install.xml + news.xml router/java/src/net/i2p/router/RouterVersion.java make dist @@ -13,6 +14,10 @@ Create a signed update file with: export I2P=~/i2p java -cp $I2P/lib/i2p.jar net.i2p.crypto.TrustedUpdate sign i2pupdate.zip i2pupdate.sud /path/to/private.key 0.6.1.xx +Verify signed update file with: + java -cp $I2P/lib/i2p.jar net.i2p.crypto.TrustedUpdate showversion i2pupdate.sud + java -cp $I2P/lib/i2p.jar net.i2p.crypto.TrustedUpdate verifysig i2pupdate.sud + More signatures: sha1sum i2pinstall.exe i2p.tar.bz2 i2p-0.6.1.xx.tar.bz2 i2pupdate.zip gpg -b i2pinstall.exe @@ -20,7 +25,14 @@ More signatures: gpg -b i2p-0.6.1.xx.tar.bz2 gpg -b i2pupdate.zip +Distribute files to download locations + Website files to change: announcements.html download.html index.html + hosts.txt (copy from mtn) + +Copy news.xml to subscription location + +Announce on #i2p, forum.i2p, Syndie diff --git a/history.txt b/history.txt index 7619aa585..60a560807 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,10 @@ +2008-02-06 zzz + * build.xml: Add some apps to javadoc + * checklist.txt: Add some things + * news.xml: make links relative + * runplain.sh: Add some comments + * wrapper.config: Add some comments + 2008-02-05 Complication * Change the dates too (sorry for such forgetfulness!) diff --git a/installer/resources/runplain.sh b/installer/resources/runplain.sh index 5f970cf1a..25221f513 100644 --- a/installer/resources/runplain.sh +++ b/installer/resources/runplain.sh @@ -1,3 +1,10 @@ +# +# This runs the router by itself, WITHOUT the wrapper. +# This means the router will not restart if it crashes. +# Also, you will be using the default memory size, which is +# probably not enough for i2p. +# You should really use the i2prouter script instead. +# export CP=. ; for j in lib/* ; do export CP=$CP:$j ; done; JAVA=java diff --git a/news.xml b/news.xml index 05ed8fec2..9260af5d0 100644 --- a/news.xml +++ b/news.xml @@ -43,9 +43,9 @@ Make the following configuration changes and your router will automatically inst the upcoming 0.6.1.31 release when it becomes available. The release will include SAM v2, new jump server links, and addressbook, IRC proxy, and i2psnark improvements.

-We recommend the automated process as will verify the key of the signed update file. +We recommend the automated process as it will verify the key of the signed update file. If you do not make these changes, -you will still be able to download the new i2pupdate.zip file yourself from locations to +you will still be able to manually download the new i2pupdate.zip file from locations to be announced.

  1. On diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 332140ea1..94d7e4b28 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ import net.i2p.CoreVersion; public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-01-08 21:15:43 $"; public final static String VERSION = "0.6.1.30"; - public final static long BUILD = 26; + public final static long BUILD = 27; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);