diff --git a/apps/routerconsole/jsp/configservice.jsp b/apps/routerconsole/jsp/configservice.jsp index 38ea13d8c8..a0575d487a 100644 --- a/apps/routerconsole/jsp/configservice.jsp +++ b/apps/routerconsole/jsp/configservice.jsp @@ -39,9 +39,11 @@
" > " > - <% } %>
- -<% if (formhandler.shouldShowSystray()) { %> + +<% + } + if (formhandler.shouldShowSystray()) { +%>

<%=intl._t("Systray integration")%>

<%=intl._t("Control the system tray icon")%>


@@ -69,11 +71,14 @@ <% } %>

<%=intl._t("Debugging")%> [<%=intl._t("View the job queue")%>]

-<% if (System.getProperty("wrapper.version") != null) { %>

- <%=intl._t("At times, it may be helpful to debug I2P by getting a thread dump. To do so, please select the following option and review the thread dumped to wrapper.log.")%>

-
+<% if (System.getProperty("wrapper.version") != null) { %> + <%=intl._t("At times, it may be helpful to debug I2P by getting a thread dump. To do so, please select the following option and review the thread dumped to wrapper.log.")%> +<% } else { // hack to make layout work for non-wrapper %> +   <% } %> +

+
" > <% if (System.getProperty("wrapper.version") != null) { %> diff --git a/history.txt b/history.txt index 4eebe28f95..0ee9d6cd97 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,10 @@ +2018-07-16 zzz + * Console: Fix HTML error on /configservice w/o wrapper + 2018-07-15 zzz + * I2CP: Add option for forcing gzip on/off per-message * NTCP: Increase failsafe sleep threshold (ticket #2251) + * Router: Add CLI tool to generate family keys 2018-07-14 zzz * i2psnark: Recreate deleted files on recheck/reopen (ticket #2125) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 7f4edb9752..31c35f8c3e 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 = 13; + public final static long BUILD = 14; /** for example "-test" */ public final static String EXTRA = "";