Console: More links on sybil page

This commit is contained in:
zzz
2018-12-21 11:37:09 +00:00
parent 9f64cc7c60
commit f3a4b115f3
3 changed files with 24 additions and 2 deletions

View File

@ -722,7 +722,11 @@ public class SybilRenderer {
} }
if (!full) { if (!full) {
buf.append("<a title=\"View extended router info\" class=\"viewfullentry\" href=\"netdb?r=") buf.append("<a title=\"View extended router info\" class=\"viewfullentry\" href=\"netdb?r=")
.append(hash, 0, 6).append("\" >[").append(_t("Full entry")).append("]</a></th><th>"); .append(hash, 0, 6).append("\" >[").append(_t("Full entry")).append("]</a>");
buf.append("<a title=\"View profile data\" class=\"viewfullentry\" href=\"viewprofile?peer=")
.append(hash).append("\" >[").append(_t("profile")).append("]</a>");
buf.append("<a title=\"").append(_t("Configure peer")).append("\" class=\"viewfullentry\" href=\"configpeer?peer=")
.append(hash).append("\" >+-</a></th><th>");
} }
if (_context.portMapper().isRegistered("imagegen")) if (_context.portMapper().isRegistered("imagegen"))
buf.append("<img src=\"/imagegen/id?s=32&amp;c=" + hash.replace("=", "%3d") + "\" height=\"32\" width=\"32\"> "); buf.append("<img src=\"/imagegen/id?s=32&amp;c=" + hash.replace("=", "%3d") + "\" height=\"32\" width=\"32\"> ");

View File

@ -1,3 +1,21 @@
2018-12-21 zzz
* Transports: Improve banning of routers from wrong network
2018-12-19 zzz
* NTCP: Efficiency improvements (ticket #2355)
2018-12-17 zzz
* Console: Sybil tool background analysis
* Data: Set encrypted LS2 hash (proposal 123)
* GeoIP: Fix NPE (thx parg)
* NTCP: Use new HKDF class
2018-12-15 zzz
* Console: Sybil tool refactoring
2018-12-13 zzz
* Crypto: Add HKDF class for LS2 and NTCP2 (proposal 123)
2018-12-12 zzz 2018-12-12 zzz
* DTG: Use UrlLauncher to launch browser * DTG: Use UrlLauncher to launch browser
* Installer: Drop unused systray.config * Installer: Drop unused systray.config

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 9; public final static long BUILD = 10;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";