I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4fb3e86e authored by zzz's avatar zzz
Browse files

Truncate and linkify magnet link in summary bar update message

parent fba596c7
No related branches found
No related tags found
No related merge requests found
...@@ -111,7 +111,7 @@ class UpdateRunner implements UpdateTask, CompleteListener { ...@@ -111,7 +111,7 @@ class UpdateRunner implements UpdateTask, CompleteListener {
} }
_snark = _smgr.addMagnet(name, ih, trackerURL, true, true, this); _snark = _smgr.addMagnet(name, ih, trackerURL, true, true, this);
if (_snark != null) { if (_snark != null) {
updateStatus("<b>" + _smgr.util().getString("Updating from {0}", updateURL) + "</b>"); updateStatus("<b>" + _smgr.util().getString("Updating from {0}", linkify(updateURL)) + "</b>");
new Timeout(); new Timeout();
break; break;
} }
...@@ -291,6 +291,12 @@ class UpdateRunner implements UpdateTask, CompleteListener { ...@@ -291,6 +291,12 @@ class UpdateRunner implements UpdateTask, CompleteListener {
//////// end CompleteListener methods //////// end CompleteListener methods
private static String linkify(String url) {
String durl = url.length() <= 28 ? url :
url.substring(0, 25) + "&hellip;";
return "<a target=\"_blank\" href=\"" + url + "\"/>" + durl + "</a>";
}
private void updateStatus(String s) { private void updateStatus(String s) {
_umgr.notifyProgress(this, s); _umgr.notifyProgress(this, s);
} }
......
...@@ -18,7 +18,7 @@ public class RouterVersion { ...@@ -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 = 27; public final static long BUILD = 28;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment