v3.11-beta2.0

This commit is contained in:
titiger 2014-12-26 21:33:54 +01:00
parent 00ac0219e0
commit 11b766b5bc
2 changed files with 7 additions and 2 deletions

View File

@ -6,7 +6,7 @@
OLD_MG_VERSION=3.9.1
OLD_MG_VERSION_BINARY=3.9.1
MG_VERSION=3.10.0-beta1
MG_VERSION=v3.11-beta2.0
if [ "$1" = "--oldversion" ]; then
echo "$OLD_MG_VERSION"

View File

@ -27,8 +27,13 @@ using namespace Shared::Platform;
namespace Glest { namespace Game {
const char *mailString = " http://bugs.megaglest.org";
const string glestVersionString = "v3.10.0-dev";
// !! Use minor versions !! Only major and minor version control compatibility!
// typical version numbers look like this: v3.11-beta1.0 v3.12-dev v3.12.0
// don't forget to update mk/linux/mg-version.sh
const string glestVersionString = "v3.11-beta2.0";
const string lastCompatibleSaveGameVersionString = "v3.9.0";
#if defined(GITVERSION)
const string GIT_RawRev = string(GITVERSION);
const string GIT_Rev = string("Rev: ") + string(GITVERSION);