Skip to content

Commit

Permalink
Zmieniono numer wersji
Browse files Browse the repository at this point in the history
  • Loading branch information
KarajuSs committed Jun 18, 2023
1 parent 8cc44fd commit ae97de5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.ant.properties
Expand Up @@ -82,8 +82,8 @@ updates_server_fallback = https://s1.polanieonline.eu/pol/updates
version_server = https://s1.polanieonline.eu/pol.version

# current version of polanieonline
version.old = 1.36
version = 1.37
version.old = 1.37
version = 1.37.1

# android client version
version.webview = 0.0.6
Expand Down
2 changes: 1 addition & 1 deletion buildtools/doxygen/Doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = PolanieOnLine
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.37
PROJECT_NUMBER = 1.37.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion runserver.bat
@@ -1,4 +1,4 @@
set POL_VERSION=1.37
set POL_VERSION=1.37.1
set LOCALCLASSPATH=.;data\script;data\conf;polanieonline-server-%POL_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
2 changes: 1 addition & 1 deletion runserver.sh
@@ -1,5 +1,5 @@
#!/bin/sh
POL_VERSION="1.37"
POL_VERSION="1.37.1"

LOCALCLASSPATH=.:data/script/:data/conf/:polanieonline-server-$POL_VERSION.jar:marauroa.jar:mysql-connector.jar:log4j.jar:commons-lang.jar:h2.jar

Expand Down
2 changes: 1 addition & 1 deletion src/games/stendhal/common/Debug.java
Expand Up @@ -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";
public static final String VERSION = "1.37.1";

/** 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.
Expand Down
2 changes: 1 addition & 1 deletion src/games/stendhal/server/core/engine/GenerateINI.java
Expand Up @@ -271,7 +271,7 @@ private static void write(final PrintWriter out) {
out.println();
out.println("server_typeGame=" + gameName);
out.println("server_name=" + gameName + " Marauroa server");
out.println("server_version=1.37");
out.println("server_version=1.37.1");
out.println("server_contact=https://s1.polanieonline.eu/kontakt-gmgags.html");
out.println();
out.println("# Extensions configured on the server. Enable at will.");
Expand Down

0 comments on commit ae97de5

Please sign in to comment.