diff --git a/apps/routerconsole/jsp/config.jsp b/apps/routerconsole/jsp/config.jsp index 20726de147..8ef8c097ab 100644 --- a/apps/routerconsole/jsp/config.jsp +++ b/apps/routerconsole/jsp/config.jsp @@ -44,10 +44,11 @@ Bandwidth share percentage:
<% int share = nethelper.getShareBandwidth(); - if (share <= 16) { + if (share < 12) { out.print("NOTE: You have configured I2P to share only " + share + "KBps. "); - out.print("I2P requires over 16KBps to enable sharing. "); - out.print("Please enable sharing by configuring greater than 16 KBps to improve your anonymity and help the network.
"); + out.print("I2P requires at least 12KBps to enable sharing. "); + out.print("Please enable sharing (participating in tunnels) by configuring more bandwidth. "); + out.print("It improves your anonymity by creating cover traffic, and helps the network.
"); } else { out.print("You have configured I2P to share " + share + "KBps. "); out.print("The higher the share bandwidth the more you improve your anonymity and help the network.
"); diff --git a/history.txt b/history.txt index a2010e59be..a0761ef148 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,8 @@ -$Id: history.txt,v 1.579 2007-07-16 16:15:51 zzz Exp $ +$Id: history.txt,v 1.580 2007-08-04 22:25:30 complication Exp $ + +2007-08-05 Complication + * Update the sharing calculator on config.jsp + and explain the trade-off even more thoroughly. 2007-08-04 Complication * Lower the threshold between the K and L bandwidth class, diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 00705309ad..4d69162bc7 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -15,9 +15,9 @@ import net.i2p.CoreVersion; * */ public class RouterVersion { - public final static String ID = "$Revision: 1.514 $ $Date: 2007-07-16 16:15:53 $"; + public final static String ID = "$Revision: 1.515 $ $Date: 2007-08-04 22:25:31 $"; public final static String VERSION = "0.6.1.28"; - public final static long BUILD = 17; + public final static long BUILD = 18; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);