Skip to content

Commit 7f21f4c

Browse files
committed
Merge branch 'release/3.11.1'
2 parents 9d98d2e + 90c3071 commit 7f21f4c

File tree

9 files changed

+13
-11
lines changed

9 files changed

+13
-11
lines changed

data/glest_game

mk/linux/mg-version-synch.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
66
# Copyright (c) 2011-2015 Mark Vejvoda under GNU GPL v3.0+
77

8+
CURRENTDIR="$(dirname "$(readlink -f "$0")")"
9+
cd "$CURRENTDIR"
810
CURRENT_VERSION=`./mg-version.sh --version`
911
OLD_VERSION=`./mg-version.sh --oldversion_binary`
1012
VERSION_INFO_FILE="$(dirname "$(readlink -f "$0")")/../../source/version.txt"

mk/linux/mojosetup/megaglest-installer/scripts/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local GAME_INSTALL_SIZE = 680000000;
2-
local GAME_VERSION = "3.12-dev";
2+
local GAME_VERSION = "3.11.1";
33

44
local _ = MojoSetup.translate
55

mk/windoze/Installer/MegaGlestInstaller.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
!define APNAME MegaGlest
55
!define APNAME_OLD Mega-Glest
66
!define APVER_OLD 3.11.0
7-
!define APVER 3.12-dev
7+
!define APVER 3.11.1
88

99
Name "${APNAME} ${APVER}"
1010
SetCompressor /FINAL /SOLID lzma

mk/windoze/Installer/MegaGlestUpdater.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
; General Attributes
33

44
!define APNAME MegaGlest
5-
!define APVER 3.12-dev
5+
!define APVER 3.11.1
66
!define APNAME_OLD Mega-Glest
77
!define APVER_OLD 3.11.0
8-
!define APVER_UPDATE 3.12-dev
8+
!define APVER_UPDATE 3.11.1
99

1010
Name "${APNAME} ${APVER_UPDATE}"
1111
SetCompressor /FINAL /SOLID lzma

source/g3d_viewer/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const char *folderDelimiter = "/";
5858
//int GameConstants::updateFps= 40;
5959
//int GameConstants::cameraFps= 100;
6060

61-
const string g3dviewerVersionString= "v3.12-dev";
61+
const string g3dviewerVersionString= "v3.11.1";
6262

6363
// Because g3d should always support alpha transparency
6464
string fileFormat = "png";

source/glest_game/facilities/game_util.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const char *mailString = " http://bugs.megaglest.org";
3232
// !! Use minor versions !! Only major and minor version control compatibility!
3333
// typical version numbers look like this: v3.11-beta1.0 v3.12-dev v3.12.0
3434
// don't forget to update mk/linux/mg-version.sh
35-
const string glestVersionString = "v3.12-dev";
35+
const string glestVersionString = "v3.11.1";
3636
const string lastCompatibleSaveGameVersionString = "v3.9.0";
3737

3838
#if defined(GITVERSION)
@@ -43,7 +43,7 @@ const string lastCompatibleSaveGameVersionString = "v3.9.0";
4343
const string GIT_RawRev = string(GITVERSION);
4444
const string GIT_Rev = string("Rev: ") + string(GITVERSION);
4545
#else
46-
const string GIT_RawRev = "$5060.7451e49$";
46+
const string GIT_RawRev = "$5088.9d98d2e$";
4747
const string GIT_Rev = "$Rev$";
4848
#endif
4949

source/glest_map_editor/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ string getGameReadWritePath(string lookupKey) {
4646

4747
namespace MapEditor {
4848

49-
const string mapeditorVersionString = "v3.12-dev";
49+
const string mapeditorVersionString = "v3.11.1";
5050
const string MainWindow::winHeader = "MegaGlest Map Editor " + mapeditorVersionString;
5151

5252
// ===============================================

source/version.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# Versions will be updated everywhere automatically.
44
# Then you should commit changed files and that's all.
55

6-
CurrentGameVersion = "3.12-dev";
6+
CurrentGameVersion = "3.11.1";
77
# ^ typical version numbers look like this: "3.11-beta1.0", "3.12-dev", "3.12.0"
88

99
OldReleaseGameVersion = "3.11.0";
1010
LastCompatibleSaveGameVersion = "3.9.0";
1111

12-
GitCommitForRelease = "5060.7451e49";
12+
GitCommitForRelease = "5088.9d98d2e";
1313
# ^ will be automatically generated

0 commit comments

Comments
 (0)