forked from I2P_Developers/i2p.i2p
format tweak
This commit is contained in:
@ -244,7 +244,7 @@ public class StatsGenerator {
|
||||
buf.append(":</b> ");
|
||||
}
|
||||
|
||||
private final static DecimalFormat _fmt = new DecimalFormat("###,##0.00");
|
||||
private final static DecimalFormat _fmt = new DecimalFormat("###,##0.0##");
|
||||
private final static String num(double num) { synchronized (_fmt) { return _fmt.format(num); } }
|
||||
|
||||
private final static DecimalFormat _pct = new DecimalFormat("#0.00%");
|
||||
|
11
history.txt
11
history.txt
@ -1,3 +1,14 @@
|
||||
2014-02-24 zzz
|
||||
* NetDB: Slow down router refresh after startup to reduce load
|
||||
on exploratory tunnels
|
||||
* NTCP:
|
||||
- Add check for replayed session requests (ticket #1212)
|
||||
- Disable inbound check connection
|
||||
- Reduce object churn in EstablishmentManager
|
||||
- Don't pollute Hash cache in EstablishmentManager
|
||||
* Transports: Use SigUtil.rectify() in DH
|
||||
* Tunnels: Rate-limit connections at the OBEP (ticket #1134)
|
||||
|
||||
2014-02-23 dg
|
||||
* I2PTunnel: add 'irc.dg.i2p' to the default IRC2P tunnel (for more information, see http://echelon.i2p/docs/IRC2p/irc2p_userguide.txt)
|
||||
|
||||
|
@ -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 = 11;
|
||||
public final static long BUILD = 12;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user