From 1c76a1ab38a264ed1ef2cc387bd9e4266d5784de Mon Sep 17 00:00:00 2001 From: Tim Felgentreff Date: Sat, 25 Apr 2020 10:24:24 +0200 Subject: [PATCH] Release 2.4.3 --- debian/changelog | 17 +++++++++++++++++ debian/copyright | 2 +- mac/Info.plist | 2 +- release.rb | 4 ++-- scripts/stratagus.lua | 4 ++-- wargus.nsi | 4 ++-- wargus.rc | 6 +++--- wartool.h | 4 ++-- 8 files changed, 30 insertions(+), 13 deletions(-) diff --git a/debian/changelog b/debian/changelog index a1dcc26f..25b476c0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +wargus (2.4.3-1) eoan; urgency=medium + + * Inline StormLib for easier builds + * Fix "Job's done" sound path for peasants in Battle.NET edition + * Fix bug showing "Supply 4, Demand 0" under some circumstances + * Fix aspect ratio of extracted videos + * Use auto-cast and auto-explore + * Run demo 1-4 when main menu is idle + * Fix missile origins and cannon tower animations + * Fix issue with "Attack Ground" button for ballistas, catapults, large ships + * Fix item order in resources drop-down list + * Fix extraction for some more variants of Battle.NET editions + * Fix multiplayer startup when the metaserver is not used and + optional AI player number was not passed + + -- Tim Felgentreff Sat, 25 Apr 2020 10:23:37 +0200 + wargus (2.4.2-1) xenial; urgency=medium * Fix for extraction on Arm64 diff --git a/debian/copyright b/debian/copyright index a05ecd4c..a89d705e 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,7 +3,7 @@ Source: https://github.com/Wargus/wargus Files: * Copyright: - (c) 1998-2018 by The Stratagus Project + (c) 1998-2020 by The Stratagus Project (c) 2002-2007 Jimmy Salmon (c) 2003-2004 Russel Smith (c) 2002-2007 Nehal Mistry diff --git a/mac/Info.plist b/mac/Info.plist index 95cb2f95..1bd4a9a7 100644 --- a/mac/Info.plist +++ b/mac/Info.plist @@ -13,7 +13,7 @@ CFBundleIconFile wargus CFBundleShortVersionString - 2.4.2 + 2.4.3 CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType diff --git a/release.rb b/release.rb index 1d16420b..f8329932 100644 --- a/release.rb +++ b/release.rb @@ -3,10 +3,10 @@ require "pp" STRINGS = { - version: "2.4.2", + version: "2.4.3", homepage: "https://wargus.github.io", license: "GPL v2+", - copyright: "(c) 1998-2018 by The Stratagus Project" + copyright: "(c) 1998-2020 by The Stratagus Project" } FILES = %w[wargus.rc wargus.nsi wartool.h mac/Info.plist scripts/stratagus.lua debian/copyright] diff --git a/scripts/stratagus.lua b/scripts/stratagus.lua index dcf9189c..dd65b464 100644 --- a/scripts/stratagus.lua +++ b/scripts/stratagus.lua @@ -64,9 +64,9 @@ else wargus.Name = _("Wargus") end wargus.Homepage = "https://wargus.github.io" -wargus.Copyright = _("(c) 1998-2018 by The Stratagus Project.") +wargus.Copyright = _("(c) 1998-2020 by The Stratagus Project.") -wargus.Version = "2.4.2" +wargus.Version = "2.4.3" wargus.Licence = "GPL v2+" diff --git a/wargus.nsi b/wargus.nsi index cb5bb352..5d49c83f 100644 --- a/wargus.nsi +++ b/wargus.nsi @@ -46,11 +46,11 @@ ; General variables !define NAME "Wargus" !define TALES_NAME "Wargus - Aleonas Tales" -!define VERSION "2.4.2" +!define VERSION "2.4.3" !define VIVERSION "${VERSION}.0" !define HOMEPAGE "https://wargus.github.io" !define LICENSE "GPL v2+" -!define COPYRIGHT "Copyright (c) 1998-2018 by The Stratagus Project" +!define COPYRIGHT "Copyright (c) 1998-2020 by The Stratagus Project" !define STRATAGUS_NAME "Stratagus" !define STRATAGUS_HOMEPAGE "https://github.com/Wargus/stratagus" diff --git a/wargus.rc b/wargus.rc index e4fb4482..be8819d8 100644 --- a/wargus.rc +++ b/wargus.rc @@ -5,11 +5,11 @@ #endif #define DESCRIPTION NAME -#define VERSION "2.4.2" -#define VIVERSION 2,4,2 +#define VERSION "2.4.3" +#define VIVERSION 2,4,3 #define HOMEPAGE "https://wargus.github.io" #define LICENSE "GPL v2+" -#define COPYRIGHT "(c) 1998-2018 by The Stratagus Project" +#define COPYRIGHT "(c) 1998-2020 by The Stratagus Project" 1 ICON "wargus.ico" 1 VERSIONINFO diff --git a/wartool.h b/wartool.h index 19b6ea63..929c44c5 100644 --- a/wartool.h +++ b/wartool.h @@ -35,9 +35,9 @@ -- General ----------------------------------------------------------------------------*/ -#define VERSION "2.4.2" // Version of extractor wartool +#define VERSION "2.4.3" // Version of extractor wartool -const char NameLine[] = "wartool V" VERSION " for Stratagus, (c) 1998-2018 by The Stratagus Project.\n"\ +const char NameLine[] = "wartool V" VERSION " for Stratagus, (c) 1998-2020 by The Stratagus Project.\n"\ " Written by Lutz Sammer, Nehal Mistry, Jimmy Salmon, Pali Rohar and cybermind.\n"\ " https://wargus.github.io";