diff --git a/apps/routerconsole/jsp/logs.jsp b/apps/routerconsole/jsp/logs.jsp index da33b9179..c2cbd2f71 100644 --- a/apps/routerconsole/jsp/logs.jsp +++ b/apps/routerconsole/jsp/logs.jsp @@ -18,7 +18,7 @@ <%=intl._("You may use the username \"guest\" and password \"guest\" if you do not wish to register.")%>
<%=intl._("Please include this information in bug reports")%>:
-I2P version:
+I2P version: <%=net.i2p.router.RouterVersion.FULL_VERSION%>
Java version: <%=System.getProperty("java.vendor")%> <%=System.getProperty("java.version")%> (<%=System.getProperty("java.runtime.name")%> <%=System.getProperty("java.runtime.version")%>)
Platform: <%=System.getProperty("os.name")%> <%=System.getProperty("os.arch")%> <%=System.getProperty("os.version")%>
Processor: <%=net.i2p.util.NativeBigInteger.cpuModel()%> (<%=net.i2p.util.NativeBigInteger.cpuType()%>)
diff --git a/history.txt b/history.txt
index 0e951f9a0..9f778d525 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,12 @@
+2011-03-10 zzz
+ * configclients.jsp: Split form up, fix HTML warnings
+ * configui.jsp: Fix lang setting broken by previous nonce change
+ * Console: Consolidate nonce handling
+ * eepget: Don't send X-Accept-Encoding header to proxy (ticket #422)
+ * logs.jsp: Fix NPE (ticket #430)
+ * netdb.jsp: Fix table alignment
+ * Tunnel Preprocessor: Use entropy for padding more efficiently
+
2011-03-08 zzz
* Clock: Cleanups and javadocs
* Console:
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index f6e6df3a5..4e28a2c8d 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 = 4;
+ public final static long BUILD = 5;
/** for example "-test" */
public final static String EXTRA = "";