- updated version to 3.8.0.-beta1 in preparation for beta1

This commit is contained in:
Mark Vejvoda 2013-06-26 04:57:17 +00:00
parent 5f74628c52
commit 0c26460f34
6 changed files with 13 additions and 8 deletions

View File

@ -31,6 +31,11 @@ After setting the correct verions in mg-version.sh you should call:
This will update associated installers to use the correct version stamps
To set the actual binary to the desired version you must manually edit
glest_game/facilities/game_util.cpp
const string glestVersionString = "v3.8-dev";
#1. The source archive:
This archive contains source code for binary compilation of the application and
tools

View File

@ -6,7 +6,7 @@
OLD_MG_VERSION=3.7.1
OLD_MG_VERSION_BINARY=3.7.1
MG_VERSION=3.8.0-dev
MG_VERSION=3.8.0-beta1
if [ "$1" = "--oldversion" ]; then
echo "$OLD_MG_VERSION"

View File

@ -1,5 +1,5 @@
local GAME_INSTALL_SIZE = 680000000;
local GAME_VERSION = "3.7.1";
local GAME_VERSION = "3.8.0-beta1";
local _ = MojoSetup.translate

View File

@ -3,8 +3,8 @@
!define APNAME MegaGlest
!define APNAME_OLD Mega-Glest
!define APVER_OLD 3.7.0
!define APVER 3.7.1
!define APVER_OLD 3.7.1
!define APVER 3.8.0-beta1
Name "${APNAME} ${APVER}"
SetCompressor /FINAL /SOLID lzma

View File

@ -2,10 +2,10 @@
; General Attributes
!define APNAME MegaGlest
!define APVER 3.7.1
!define APVER 3.8.0-beta1
!define APNAME_OLD Mega-Glest
!define APVER_OLD 3.7.0
!define APVER_UPDATE 3.7.1
!define APVER_OLD 3.7.1
!define APVER_UPDATE 3.8.0-beta1
Name "${APNAME} ${APVER_UPDATE}"
SetCompressor /FINAL /SOLID lzma

View File

@ -27,7 +27,7 @@ using namespace Shared::Platform;
namespace Glest { namespace Game {
const char *mailString = " http://bugs.megaglest.org";
const string glestVersionString = "v3.8-dev";
const string glestVersionString = "v3.8.0-beta1";
#if defined(SVNVERSION)
const string SVN_Rev = string("Rev: ") + string(SVNVERSION);
#elif defined(SVNVERSIONHEADER)