* NewsFetcher: Change fetch failed from error to warning

* installer: Fix URL and "email"
    * checklist.txt: New release checklist
This commit is contained in:
zzz
2008-01-31 19:56:00 +00:00
parent 83f51b4a66
commit 22f1684262
5 changed files with 23 additions and 6 deletions

View File

@ -221,8 +221,8 @@ public class NewsFetcher implements Runnable, EepGet.StatusListener {
} }
public void transferFailed(String url, long bytesTransferred, long bytesRemaining, int currentAttempt) { public void transferFailed(String url, long bytesTransferred, long bytesRemaining, int currentAttempt) {
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.WARN))
_log.error("Failed to fetch the news from " + url); _log.warn("Failed to fetch the news from " + url);
File temp = new File(TEMP_NEWS_FILE); File temp = new File(TEMP_NEWS_FILE);
temp.delete(); temp.delete();
} }

12
checklist.txt Normal file
View File

@ -0,0 +1,12 @@
Release checklist
-----------------
Change revision in:
initialNews.xml
news.xml
installer/install.xml
router/java/src/net/i2p/router/RouterVersion.java
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

View File

@ -1,4 +1,9 @@
2008-01-31 zzz
* NewsFetcher: Change fetch failed from error to warning
* installer: Fix URL and "email"
* checklist.txt: New release checklist
2008-01-29 zzz 2008-01-29 zzz
* Addressbook: Change default subscription * Addressbook: Change default subscription
* ConfigUpdateHandler: Change default news URL * ConfigUpdateHandler: Change default news URL

View File

@ -4,11 +4,11 @@
<info> <info>
<appname>i2p</appname> <appname>i2p</appname>
<appversion>0.6.1.30</appversion> <appversion>0.6.1.31</appversion>
<authors> <authors>
<author name="I2P" email="support@i2p.net"/> <author name="I2P" email="http://forum.i2p.net"/>
</authors> </authors>
<url>http://www.i2p.net</url> <url>http://www.i2p2.de</url>
</info> </info>
<guiprefs width="590" height="356" resizable="yes"> <guiprefs width="590" height="356" resizable="yes">

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 = 22; public final static long BUILD = 23;
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);