forked from I2P_Developers/i2p.i2p
Bump to -1, belatedly; more aesthetic nudges.
This commit is contained in:
@ -77,7 +77,7 @@ public class NewsFetcher implements Runnable, EepGet.StatusListener {
|
||||
long now = _context.clock().now();
|
||||
return
|
||||
(_lastUpdated > 0 ? "News last updated " + DataHelper.formatDuration(now - _lastUpdated) + " ago" : "") +
|
||||
(_lastFetch > _lastUpdated ? ", last checked " + DataHelper.formatDuration(now - _lastFetch) + " ago" : "");
|
||||
(_lastFetch > _lastUpdated ? "; last checked " + DataHelper.formatDuration(now - _lastFetch) + " ago." : "");
|
||||
}
|
||||
|
||||
public void run() {
|
||||
|
@ -495,7 +495,7 @@ hr {
|
||||
}
|
||||
|
||||
div.joblog {
|
||||
margin-top: -10px;
|
||||
margin: 10px 0;
|
||||
line-height: 130% !important;
|
||||
}
|
||||
|
||||
@ -530,7 +530,7 @@ div.joblog p {
|
||||
}
|
||||
|
||||
div.joblog h3 {
|
||||
margin: -5px 0 5px 0;
|
||||
margin: 5px 0 5px 0;
|
||||
}
|
||||
|
||||
div.joblog hr {
|
||||
|
@ -269,16 +269,17 @@ div.main textarea {
|
||||
|
||||
div.news {
|
||||
margin: 15px 15px 15px 220px;
|
||||
padding: 5px 30px 15px 30px;
|
||||
padding: 5px 30px 10px 30px;
|
||||
border: 1px solid #99f;
|
||||
background: #004;
|
||||
background-image: -moz-linear-gradient(top, bottom, from(#003), to(#005), color-stop(30%, #003), color-stop(100%, #001));
|
||||
/* background: #003 url("images/darkbluetile.png");*/
|
||||
color: #eef;
|
||||
color: #aaf;
|
||||
border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
-khtml-border-radius: 4px;
|
||||
text-align: justify;
|
||||
font-size: 7.5pt;
|
||||
text-align: right;
|
||||
-moz-box-shadow: inset 0px 0px 1px 0px #eef;
|
||||
-khtml-box-shadow: inset 0px 0px 1px 0px #eef;
|
||||
box-shadow: inset 0px 0px 1px 0px #eef;
|
||||
@ -305,6 +306,12 @@ div.news h4 {
|
||||
|
||||
div.news p {
|
||||
margin-top: -5px;
|
||||
font-size: 8.5pt;
|
||||
color: #eef;
|
||||
}
|
||||
|
||||
div.news hr {
|
||||
margin: -2px 0 5px 0;
|
||||
}
|
||||
|
||||
div.confignav {
|
||||
@ -690,6 +697,11 @@ hr {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
hr:last-child {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
|
||||
sidebarlogo {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -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 = 0;
|
||||
public final static long BUILD = 1;
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
|
Reference in New Issue
Block a user