pick a better icon for hidden services manager, improve some text, and hide some of the stuff in /monitoring

This commit is contained in:
hankhill19580
2019-11-11 17:57:08 +00:00
parent 9ddb655a88
commit eda91af7c7
5 changed files with 19 additions and 15 deletions

View File

@@ -85,8 +85,12 @@ public class ConfigHomeHandler extends FormHandler {
app = new App(name, "", url, "/themes/console/images/eepsite.png");
else if ("2".equals(group))
app = new App(name, "", url, "/themes/console/images/title_window.png");
else
else if ("3".equals(group))
app = new App(name, "", url, "/themes/console/images/question.png");
else if ("4".equals(group))
app = new App(name, "", url, "/themes/console/images/server.png");
else if ("5".equals(group))
app = new App(name, "", url, "/themes/console/images/chart_line.png");
apps.add(app);
addFormNotice(_t("Added") + ": " + app.name);
} else {

View File

@@ -38,7 +38,7 @@ public class HomeHelper extends HelperBase {
// No commas allowed in text strings!
static final String DEFAULT_SERVICES =
_x("Email") + S + _x("Anonymous webmail client") + S + "/webmail" + S + I + "email.png" + S +
_x("I2P Tunnel") + S + _x("Port-Forwarding to and from I2P") + S + "/i2ptunnelmgr" + S + I + "itoopie_xsm.png" + S +
_x("Hidden Services Manager") + S + _x("Control your client and server tunnels") + S + "/i2ptunnelmgr" + S + I + "server_32x32.png" + S +
_x("Torrents") + S + _x("Built-in anonymous BitTorrent Client") + S + "/torrents" + S + I + "i2psnark.png" + S +
_x("Web Server") + S + _x("Local web server for hosting your own content on I2P") + S + "http://127.0.0.1:7658/" + S + I + "server_32x32.png" + S +
_x("Addressbook") + S + _x("Manage your I2P hosts file here (I2P domain name resolution)") + S + "/dns" + S + I + "book_addresses.png" + S +
@@ -97,10 +97,7 @@ public class HomeHelper extends HelperBase {
// No commas allowed in text strings!
static final String DEFAULT_MONITORING =
_x("Logs") + S + _x("View the logs") + S + "/logs" + S + I + "billiard_marker.png" + S +
_x("Router Stats") + S + _x("View router stats") + S + "/stats" + S + I + "info/bandwidth.png" + S +
_x("Charts and Graphs") + S + _x("Visualize information about the router") + S + "/graphs" + S + I + "chart_line.png" + S +
_x("Network Database") + S + _x("View the NetDB") + S + "/netdb" + S + I + "support.png" + S +
_x("Peers") + S + _x("View your known peers") + S + "/peers" + S + I + "group.png" + S +
_x("Graphs") + S + _x("Visualize information about the router") + S + "/graphs" + S + I + "chart_line.png" + S +
"";
public boolean shouldShowWelcome() {