* build.xml: Add some apps to javadoc

* checklist.txt: Add some things
    * news.xml: Minor edit
    * runplain.sh: Add some comments
This commit is contained in:
zzz
2008-02-06 16:38:23 +00:00
parent 134ec7acea
commit 093c69637d
6 changed files with 33 additions and 4 deletions

View File

@ -138,6 +138,9 @@
<pathelement location="apps/i2ptunnel/java/src" /> <pathelement location="apps/i2ptunnel/java/src" />
<pathelement location="apps/systray/java/src" /> <pathelement location="apps/systray/java/src" />
<pathelement location="apps/routerconsole/java/src" /> <pathelement location="apps/routerconsole/java/src" />
<pathelement location="apps/addressbook/java/src" />
<pathelement location="apps/i2psnark/java/src" />
<pathelement location="apps/sam/java/src" />
</sourcepath> </sourcepath>
<classpath> <classpath>
<pathelement location="apps/jetty/jettylib/org.mortbay.jetty.jar" /> <pathelement location="apps/jetty/jettylib/org.mortbay.jetty.jar" />

View File

@ -2,9 +2,10 @@ Release checklist
----------------- -----------------
Change revision in: Change revision in:
history.txt
initialNews.xml initialNews.xml
news.xml
installer/install.xml installer/install.xml
news.xml
router/java/src/net/i2p/router/RouterVersion.java router/java/src/net/i2p/router/RouterVersion.java
make dist make dist
@ -13,6 +14,10 @@ Create a signed update file with:
export I2P=~/i2p 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 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: More signatures:
sha1sum i2pinstall.exe i2p.tar.bz2 i2p-0.6.1.xx.tar.bz2 i2pupdate.zip sha1sum i2pinstall.exe i2p.tar.bz2 i2p-0.6.1.xx.tar.bz2 i2pupdate.zip
gpg -b i2pinstall.exe gpg -b i2pinstall.exe
@ -20,7 +25,14 @@ More signatures:
gpg -b i2p-0.6.1.xx.tar.bz2 gpg -b i2p-0.6.1.xx.tar.bz2
gpg -b i2pupdate.zip gpg -b i2pupdate.zip
Distribute files to download locations
Website files to change: Website files to change:
announcements.html announcements.html
download.html download.html
index.html index.html
hosts.txt (copy from mtn)
Copy news.xml to subscription location
Announce on #i2p, forum.i2p, Syndie

View File

@ -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 2008-02-05 Complication
* Change the dates too (sorry for such forgetfulness!) * Change the dates too (sorry for such forgetfulness!)

View File

@ -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; export CP=. ; for j in lib/* ; do export CP=$CP:$j ; done;
JAVA=java JAVA=java

View File

@ -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 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. The release will include SAM v2, new jump server links, and addressbook, IRC proxy, and i2psnark improvements.
</p><p> </p><p>
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, 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. be announced.
<ol><li> <ol><li>
On On

View File

@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.548 $ $Date: 2008-01-08 21:15:43 $"; 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 String VERSION = "0.6.1.30";
public final static long BUILD = 26; public final static long BUILD = 27;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);