forked from I2P_Developers/i2p.i2p
0.9.16
Fix history.txt UTF-8 breakage Javadoc fixes after review
This commit is contained in:
@ -721,7 +721,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
||||
/**
|
||||
* hidden inputs for nonce and paramters p, st, and sort
|
||||
*
|
||||
* @param out appends to it
|
||||
* @param buf appends to it
|
||||
* @param action if non-null, add it as the action
|
||||
* @since 0.9.16
|
||||
*/
|
||||
@ -3080,7 +3080,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param null ok
|
||||
* @param so null ok
|
||||
* @return query string or ""
|
||||
* @since 0.9.16
|
||||
*/
|
||||
|
@ -143,7 +143,7 @@ public class CPUID {
|
||||
}
|
||||
|
||||
/**
|
||||
* Only valid if family == 15.
|
||||
* Only valid if family == 15, or, for Intel only, family == 6.
|
||||
* Left shift by 4 and then add model to get full model.
|
||||
* @return 0-15
|
||||
*/
|
||||
|
@ -16,7 +16,7 @@ package net.i2p;
|
||||
public class CoreVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = "0.9.15";
|
||||
public final static String VERSION = "0.9.16";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Core version: " + VERSION);
|
||||
|
14
history.txt
14
history.txt
@ -1,3 +1,5 @@
|
||||
* 2014-11-01 0.9.16 released
|
||||
|
||||
2014-10-30 kytv
|
||||
* Updates to geoip.txt and geoipv6.dat.gz based on Maxmind GeoLite Country
|
||||
database from 2014-10-07.
|
||||
@ -548,7 +550,7 @@ Prop from i2p.i2p.zzz.test2:
|
||||
|
||||
2014-05-15 kytv
|
||||
* Translations, imported from Transifex:
|
||||
- Dutch, French, German, Italian, Japanese, Norwegian Bokml, and Ukrainian
|
||||
- Dutch, French, German, Italian, Japanese, Norwegian Bokmål, and Ukrainian
|
||||
translation updates
|
||||
- Start of Slovak language translation
|
||||
* Updates to geoip.txt and geoipv6.dat.gz based on Maxmind GeoLite Country
|
||||
@ -2115,7 +2117,7 @@ i2psnark: Fix ConnectionAcceptor not restarting after tunnel
|
||||
transifex.
|
||||
|
||||
2013-02-13 kytv
|
||||
* Flag for Curaao (CW), public domain
|
||||
* Flag for Curaçao (CW), public domain
|
||||
|
||||
2013-02-12 zzz
|
||||
* NetDB: Randomize delay before floodfill store verify
|
||||
@ -2142,8 +2144,8 @@ i2psnark: Fix ConnectionAcceptor not restarting after tunnel
|
||||
- Allow any domain name to be mapped, not just .i2p
|
||||
|
||||
2013-01-31 kytv
|
||||
* Add Norwegian Bokml language to the router console
|
||||
* Add Bokml translations from Transifex
|
||||
* Add Norwegian Bokmål language to the router console
|
||||
* Add Bokmål translations from Transifex
|
||||
|
||||
2013-01-31 zzz
|
||||
* EepGet:
|
||||
@ -5032,7 +5034,7 @@ i2psnark: Fix ConnectionAcceptor not restarting after tunnel
|
||||
* Reseed: Log tweak
|
||||
|
||||
2011-04-02 m1xxy
|
||||
* routerconsole, i2psnark, ... I2P ahora tambin en espaol: Bienvenidos los hispanohablantes!
|
||||
* routerconsole, i2psnark, ... I2P ahora también en español: ¡Bienvenidos los hispanohablantes!
|
||||
- routerconsole, i2ptunnel, i2psnark, SusiDNS, Susimail fully translated into Spanish
|
||||
(thx to PunkiBastardo and user)
|
||||
* routerconsole, i2psnark, ...
|
||||
@ -7174,7 +7176,7 @@ i2psnark: Fix ConnectionAcceptor not restarting after tunnel
|
||||
- Java 5 cleanups
|
||||
* Console:
|
||||
- Put favicon on every page
|
||||
- Make every page UTF-8, safe for snowmen
|
||||
- Make every page UTF-8, ☃ safe for snowmen
|
||||
- Remove options boxes on configtunnels.jsp
|
||||
- Fix UTF-8 form submission (i2ptunnel too)
|
||||
- Throw 403 instead of 404 from flags.jsp and viewstat.jsp
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<info>
|
||||
<appname>i2p</appname>
|
||||
<appversion>0.9.15</appversion>
|
||||
<appversion>0.9.16</appversion>
|
||||
<authors>
|
||||
<author name="I2P" email="https://geti2p.net/"/>
|
||||
</authors>
|
||||
|
@ -18,10 +18,10 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 19;
|
||||
public final static long BUILD = 0;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
public final static String EXTRA = "";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||
|
@ -221,7 +221,7 @@ class OutboundEstablishState {
|
||||
return _sentX;
|
||||
}
|
||||
|
||||
/**x
|
||||
/**
|
||||
* The remote side (Bob) - note that in some places he's called Charlie.
|
||||
* Warning - may change after introduction. May be null before introduction.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user