poupdate-source for 0.9.38

Fix poupdate script to not pick up tags in 3rd party libs
This commit is contained in:
zzz
2019-01-09 19:03:41 +00:00
parent 671e9dd711
commit 8cd7e7de65
4 changed files with 1787 additions and 1530 deletions

View File

@ -54,7 +54,8 @@ ROUTERFILES="\
" "
# add ../java/ so the refs will work in the po file # 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 for i in ../locale/messages_*.po
do do
# get language # get language

File diff suppressed because it is too large Load Diff

View File

@ -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 2019-01-04 zzz
* Build: Check cert validity * Build: Check cert validity
* Data: Add type byte to MetaLease (proposal 123) * Data: Add type byte to MetaLease (proposal 123)

View File

@ -18,10 +18,10 @@ 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 = 14; public final static long BUILD = 15;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "-rc";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + FULL_VERSION); System.out.println("I2P Router version: " + FULL_VERSION);