forked from I2P_Developers/i2p.i2p
poupdate-source for 0.9.38
Fix poupdate script to not pick up tags in 3rd party libs
This commit is contained in:
@ -54,7 +54,8 @@ ROUTERFILES="\
|
||||
"
|
||||
|
||||
# add ../java/ so the refs will work in the po file
|
||||
JPATHS="../java/src ../jsp/WEB-INF ../java/strings $ROUTERFILES"
|
||||
# do not scan 3rd-party code in java/src/com or java/src/edu
|
||||
JPATHS="../java/src/net ../jsp/WEB-INF ../java/strings $ROUTERFILES"
|
||||
for i in ../locale/messages_*.po
|
||||
do
|
||||
# get language
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,11 @@
|
||||
2019-01-09 zzz
|
||||
* Console: Fix broken image link on /configui
|
||||
* I2CP: Stub out client-side creation of meta and enc. LS2
|
||||
* Wrapper: Increase default heap to 256 MB
|
||||
|
||||
2019-01-05 zzz
|
||||
* Crypto: Stub out EdDSA blinding (proposal 123)
|
||||
|
||||
2019-01-04 zzz
|
||||
* Build: Check cert validity
|
||||
* Data: Add type byte to MetaLease (proposal 123)
|
||||
|
@ -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 = 14;
|
||||
public final static long BUILD = 15;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
public final static String EXTRA = "-rc";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + FULL_VERSION);
|
||||
|
Reference in New Issue
Block a user