diff --git a/apps/routerconsole/java/src/net/i2p/router/web/NewsFetcher.java b/apps/routerconsole/java/src/net/i2p/router/web/NewsFetcher.java
index 8bb388d87..06a15dbac 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/NewsFetcher.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/NewsFetcher.java
@@ -221,8 +221,8 @@ public class NewsFetcher implements Runnable, EepGet.StatusListener {
}
public void transferFailed(String url, long bytesTransferred, long bytesRemaining, int currentAttempt) {
- if (_log.shouldLog(Log.ERROR))
- _log.error("Failed to fetch the news from " + url);
+ if (_log.shouldLog(Log.WARN))
+ _log.warn("Failed to fetch the news from " + url);
File temp = new File(TEMP_NEWS_FILE);
temp.delete();
}
diff --git a/checklist.txt b/checklist.txt
new file mode 100644
index 000000000..7fc0f6bc0
--- /dev/null
+++ b/checklist.txt
@@ -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
diff --git a/history.txt b/history.txt
index 407ea5c28..6eee68349 100644
--- a/history.txt
+++ b/history.txt
@@ -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
* Addressbook: Change default subscription
* ConfigUpdateHandler: Change default news URL
diff --git a/installer/install.xml b/installer/install.xml
index dc2a7d954..77a9240cb 100644
--- a/installer/install.xml
+++ b/installer/install.xml
@@ -4,11 +4,11 @@
i2p
- 0.6.1.30
+ 0.6.1.31
-
+
- http://www.i2p.net
+ http://www.i2p2.de
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 9befb02c6..859f2fda9 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 = 22;
+ public final static long BUILD = 23;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);