diff --git a/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua b/mk/linux/mojosetup/megaglest-installer/scripts/app_localization.lua index 6a814bfb2..9e2381f16 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 b216a116b..6144772f9 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 c78eba779..560642132 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)