Increment version to 1.38

This commit is contained in:
Jordan Irwin 2022-01-05 06:48:24 -08:00
parent 76311db723
commit 17245c9d9c
5 changed files with 6 additions and 6 deletions

View file

@ -82,8 +82,8 @@ updates_server_fallback = http://arianne.sourceforge.net/stendhal/updates
version_server = http://arianne.sourceforge.net/stendhal.version
# current version of stendhal
version.old = 1.37
version = 1.37.5
version.old = 1.38
version = 1.38.5
# javac options
javac.deprecation = true

View file

@ -1,4 +1,4 @@
set STENDHAL_VERSION=1.37.5
set STENDHAL_VERSION=1.38.5
set LOCALCLASSPATH=.;data\script;data\conf;stendhal-server-%STENDHAL_VERSION%.jar;marauroa.jar;mysql-connector.jar;log4j.jar;commons-lang.jar;h2.jar
java -Xmx400m -cp "%LOCALCLASSPATH%" games.stendhal.server.StendhalServer -c server.ini -l
@pause

View file

@ -1,5 +1,5 @@
#!/bin/sh
STENDHAL_VERSION="1.37.5"
STENDHAL_VERSION="1.38.5"
LOCALCLASSPATH=.:data/script/:data/conf/:stendhal-server-$STENDHAL_VERSION.jar:marauroa.jar:mysql-connector.jar:log4j.jar:commons-lang.jar:h2.jar

View file

@ -26,7 +26,7 @@ public class Debug {
/** version. */
// Note: This line is updated by build.xml using a regexp so be sure to adjust it in case you modify this line.
public static final String VERSION = "1.37.5";
public static final String VERSION = "1.38.5";
/** pre release suffix */
// Note: This line is updated by build.xml using a regexp so be sure to adjust it in case you modify this line.

View file

@ -271,7 +271,7 @@ public class GenerateINI {
out.println();
out.println("server_typeGame=" + gameName);
out.println("server_name=" + gameName + " Marauroa server");
out.println("server_version=1.37.5");
out.println("server_version=1.38.5");
out.println("server_contact=https://sourceforge.net/tracker/?atid=514826&group_id=66537&func=browse");
out.println();
out.println("# Extensions configured on the server. Enable at will.");