* 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:
@ -138,6 +138,9 @@
|
||||
<pathelement location="apps/i2ptunnel/java/src" />
|
||||
<pathelement location="apps/systray/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>
|
||||
<classpath>
|
||||
<pathelement location="apps/jetty/jettylib/org.mortbay.jetty.jar" />
|
||||
|
@ -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
|
||||
|
@ -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!)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
4
news.xml
4
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.
|
||||
</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,
|
||||
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.
|
||||
<ol><li>
|
||||
On
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user