diff --git a/installer/resources/themes/console/dark/default.css b/installer/resources/themes/console/dark/default.css
index 7abc47d3ae069f36b78b090a25d42ae0e080b0da..f28e869b1d31683ecfa8962732cc8b20b913a612 100644
--- a/installer/resources/themes/console/dark/default.css
+++ b/installer/resources/themes/console/dark/default.css
@@ -250,18 +250,22 @@ hr {
 
 a:link{
      color: #99f;
+     text-decoration: none;
 }
 
 a:visited{
      color: #7bb;
+     text-decoration: none;
 }
 
 a:hover{
      color: #ff6600;
+     text-decoration: underline;
 }
 
 a:active{
      color: #900;
+     text-decoration: underline;
 }
 
 input {
diff --git a/installer/resources/themes/console/light/default.css b/installer/resources/themes/console/light/default.css
index 0acd0f1f56802bde1a22d2a1b8f1c51919c853ef..c133f159889dcec859ca906bb2a8fa41bdfc6a7b 100644
--- a/installer/resources/themes/console/light/default.css
+++ b/installer/resources/themes/console/light/default.css
@@ -38,7 +38,7 @@ label {
 }
 
 h4 {
-     font-size: 11pt;
+     font-size: 14px;
      font-weight: bold !important;
      color: #001;
      text-align: center;
@@ -139,13 +139,13 @@ hr {
 .freetext {
      width: 150px;
      height: 24px;
-     border: 1px solid #eef;
+     border: 1px solid #44d;
      padding: 2px;
      margin: 4px 0 2px 0px;
      font: 10pt "Lucida Console", "DejaVu Sans Mono", Courier, mono;
      font-weight: bold;
-     background: #001;
-     color: #fff;
+     background: #ddf;
+     color: #001;
      -moz-border-radius: 0 4px 4px 0;
      -khtml-border-radius: 0 4px 4px 0;
      border-radius: 0 4px 4px 0;
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index a8f5f8e9f4b6620dcba3a7f13e6167d164a52b31..4841cfe2e3bd99d6e7ef511ba931e7e89ff9202d 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 = 31;
+    public final static long BUILD = 32;
     /** for example "-test" */
     public final static String EXTRA = "-rc";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;