From 41e4e952b7c67de9b0f32615821b3eeab879a611 Mon Sep 17 00:00:00 2001 From: zzz Date: Thu, 3 Jun 2010 16:53:55 +0000 Subject: [PATCH] * Update: Fix multiple updates after manually starting update - caused by refreshing summary bar (thx 'backup'!) --- apps/routerconsole/jsp/summaryframe.jsp | 2 +- history.txt | 6 ++++++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/routerconsole/jsp/summaryframe.jsp b/apps/routerconsole/jsp/summaryframe.jsp index 867678299..2f6f19ec0 100644 --- a/apps/routerconsole/jsp/summaryframe.jsp +++ b/apps/routerconsole/jsp/summaryframe.jsp @@ -41,7 +41,7 @@ long delay = 60; try { delay = Long.parseLong(d); } catch (NumberFormatException nfe) {} if (delay*1000 < timeleft + 5000) - out.print("\n"); + out.print("\n"); else shutdownSoon = true; } diff --git a/history.txt b/history.txt index e3515e597..1ad9e0812 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,9 @@ +2010-06-03 zzz + * NewsFetcher: Delay a minimum amount at startup + * Update: Fix multiple updates after manually + starting update - caused by refreshing summary bar + (thx 'backup'!) + 2010-06-02 zzz * graphs.jsp: Tag some more * Translation: Set xgettext add-comments option diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 421ff4f63..098e16d49 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 16; + public final static long BUILD = 17; /** for example "-test" */ public final static String EXTRA = "-rc";