From 4846ad092e5d9f7ece582688754236af8569e09a Mon Sep 17 00:00:00 2001 From: filux Date: Wed, 8 Mar 2017 21:29:45 +0100 Subject: [PATCH] version number for the release --- data/glest_game | 2 +- .../tools-for-standalone-client/installer/scripts/config.lua | 2 +- mk/windoze/Installer/MegaGlestInstaller.nsi | 2 +- mk/windoze/Installer/MegaGlestUpdater.nsi | 4 ++-- source/g3d_viewer/main.cpp | 2 +- source/glest_game/facilities/game_util.cpp | 4 ++-- source/glest_map_editor/main.cpp | 2 +- source/version.txt | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/data/glest_game b/data/glest_game index 211a8f2e..2bafae40 160000 --- a/data/glest_game +++ b/data/glest_game @@ -1 +1 @@ -Subproject commit 211a8f2ea23a6334b7a817a5960b5e87809fc8bb +Subproject commit 2bafae40da1a8c358920970bff46b08b0e8daf90 diff --git a/mk/linux/tools-for-standalone-client/installer/scripts/config.lua b/mk/linux/tools-for-standalone-client/installer/scripts/config.lua index b29298e5..8cc7088e 100644 --- a/mk/linux/tools-for-standalone-client/installer/scripts/config.lua +++ b/mk/linux/tools-for-standalone-client/installer/scripts/config.lua @@ -1,5 +1,5 @@ local GAME_INSTALL_SIZE = 705000000; -local GAME_VERSION = "3.13-dev"; +local GAME_VERSION = "3.13.0"; local _ = MojoSetup.translate diff --git a/mk/windoze/Installer/MegaGlestInstaller.nsi b/mk/windoze/Installer/MegaGlestInstaller.nsi index 269a2663..e7530f88 100644 --- a/mk/windoze/Installer/MegaGlestInstaller.nsi +++ b/mk/windoze/Installer/MegaGlestInstaller.nsi @@ -4,7 +4,7 @@ !define APNAME MegaGlest !define APNAME_OLD Mega-Glest !define APVER_OLD 3.12.0 -!define APVER 3.13-dev +!define APVER 3.13.0 !ifdef NSIS_WIN32_MAKENSIS !define NSISCONF_3 ";" ; NSIS 2 tries to parse some preprocessor instructions inside "!if 0" blocks! diff --git a/mk/windoze/Installer/MegaGlestUpdater.nsi b/mk/windoze/Installer/MegaGlestUpdater.nsi index 92cb85de..d65a848a 100644 --- a/mk/windoze/Installer/MegaGlestUpdater.nsi +++ b/mk/windoze/Installer/MegaGlestUpdater.nsi @@ -2,10 +2,10 @@ ; General Attributes !define APNAME MegaGlest -!define APVER 3.13-dev +!define APVER 3.13.0 !define APNAME_OLD Mega-Glest !define APVER_OLD 3.12.0 -!define APVER_UPDATE 3.13-dev +!define APVER_UPDATE 3.13.0 Name "${APNAME} ${APVER_UPDATE}" SetCompressor /FINAL /SOLID lzma diff --git a/source/g3d_viewer/main.cpp b/source/g3d_viewer/main.cpp index e4c747ba..68d3af88 100644 --- a/source/g3d_viewer/main.cpp +++ b/source/g3d_viewer/main.cpp @@ -56,7 +56,7 @@ const char *folderDelimiter = "/"; //int GameConstants::updateFps= 40; //int GameConstants::cameraFps= 100; -const string g3dviewerVersionString= "v3.13-dev"; +const string g3dviewerVersionString= "v3.13.0"; // Because g3d should always support alpha transparency string fileFormat = "png"; diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index e6066f41..75eb27d6 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -32,7 +32,7 @@ const char *mailString = " http://bugs.megaglest.org"; // !! Use minor versions !! Only major and minor version control compatibility! // typical version numbers look like this: v3.13-beta1.0 v3.12-dev v3.12.1 // don't forget to update file: source/version.txt -const string glestVersionString = "v3.13-dev"; +const string glestVersionString = "v3.13.0"; const string lastCompatibleSaveGameVersionString = "v3.11.1"; #if defined(GITVERSIONHEADER) @@ -41,7 +41,7 @@ const string lastCompatibleSaveGameVersionString = "v3.11.1"; #if defined(GITVERSION) || defined(GITVERSIONHEADER) const string GIT_RawRev = string(GITVERSION); #else - const string GIT_RawRev = "$5600.2a94473$"; + const string GIT_RawRev = "$5604.3a5d459$"; #endif const string GIT_Rev = string("Rev: ") + string(GIT_RawRev); diff --git a/source/glest_map_editor/main.cpp b/source/glest_map_editor/main.cpp index b90decdb..ed1cdbd9 100644 --- a/source/glest_map_editor/main.cpp +++ b/source/glest_map_editor/main.cpp @@ -47,7 +47,7 @@ string getGameReadWritePath(string lookupKey) { namespace MapEditor { -const string mapeditorVersionString = "v3.13-dev"; +const string mapeditorVersionString = "v3.13.0"; const string MainWindow::winHeader = "MegaGlest Map Editor " + mapeditorVersionString; // =============================================== diff --git a/source/version.txt b/source/version.txt index 243d89c5..6f565dd3 100644 --- a/source/version.txt +++ b/source/version.txt @@ -3,11 +3,11 @@ # Versions will be updated everywhere automatically. # Then you should commit changed files and that's all. -CurrentGameVersion = "3.13-dev"; +CurrentGameVersion = "3.13.0"; # ^ typical version numbers look like this: "3.14-beta1.0", "3.13-dev", "3.13.1" OldReleaseGameVersion = "3.12.0"; LastCompatibleSaveGameVersion = "3.11.1"; -GitCommitForRelease = "5600.2a94473"; +GitCommitForRelease = "5604.3a5d459"; # ^ will be automatically generated