From 497c51357611189e418334d0ad3bb774a5e9f17f Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Tue, 19 Apr 2011 03:50:49 +0000 Subject: [PATCH] - updated version# to 3.5.0 release (may have last minute changes while testing installers etc. --- .../scripts/app_localization.lua | 20 ++++++++++++++++++- .../megaglest-installer/scripts/config.lua | 6 ++++-- source/glest_game/facilities/game_util.cpp | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua b/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua index 6a814bfb..9e2381f1 100644 --- a/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua +++ b/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua @@ -48,7 +48,25 @@ MojoSetup.applocalization = { it = "We have detected a previous installation of Megaglest, should we remove it?", }; - ["docs/LICENSE"] = { + ["Megaglest Visit Website Title"] = { + en_GB = "Visit megaglest.org", + en_CA = "Visit megaglest.org", + de = "Visit megaglest.org", + es = "Visit megaglest.org", + pl = "Visit megaglest.org", + it = "Visit megaglest.org", + }; + + ["Megaglest Visit Website Prompt"] = { + en_GB = "Would you like to view our getting started page on megaglest.org?", + en_CA = "Would you like to view our getting started page on megaglest.org?", + de = "Would you like to view our getting started page on megaglest.org?", + es = "Would you like to view our getting started page on megaglest.org?", + pl = "Would you like to view our getting started page on megaglest.org?", + it = "Would you like to view our getting started page on megaglest.org?", + }; + + ["docs/LICENSE"] = { }; }; diff --git a/mk/linux/mojosetup/megaglest-installer/scripts/config.lua b/mk/linux/mojosetup/megaglest-installer/scripts/config.lua index b216a116..6144772f 100644 --- a/mk/linux/mojosetup/megaglest-installer/scripts/config.lua +++ b/mk/linux/mojosetup/megaglest-installer/scripts/config.lua @@ -1,5 +1,5 @@ local GAME_INSTALL_SIZE = 680000000; -local GAME_VERSION = "3.5.0-beta2"; +local GAME_VERSION = "3.5.0"; local _ = MojoSetup.translate @@ -63,7 +63,9 @@ Setup.Package end, postinstall = function(package) - MojoSetup.launchbrowser("http://megaglest.org/get-started.html") + if MojoSetup.promptyn(_("Megaglest Visit Website Title"), _("Megaglest Visit Website Prompt")) then + MojoSetup.launchbrowser("http://megaglest.org/get-started.html") + end end, Setup.Eula diff --git a/source/glest_game/facilities/game_util.cpp b/source/glest_game/facilities/game_util.cpp index c78eba77..56064213 100644 --- a/source/glest_game/facilities/game_util.cpp +++ b/source/glest_game/facilities/game_util.cpp @@ -27,7 +27,7 @@ using namespace Shared::Platform; namespace Glest { namespace Game { const string mailString = "contact@megaglest.org"; -const string glestVersionString = "v3.5.0-beta2"; +const string glestVersionString = "v3.5.0"; #if defined(SVNVERSION) const string SVN_Rev = string("Rev: ") + string(SVNVERSION); #elif defined(SVNVERSIONHEADER)