- updated version# to 3.5.0 release (may have last minute changes while testing installers etc.

This commit is contained in:
Mark Vejvoda 2011-04-19 03:50:49 +00:00
parent c0ad16d3d5
commit 497c513576
3 changed files with 24 additions and 4 deletions

View File

@ -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"] = {
};
};

View File

@ -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

View File

@ -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)