diff --git a/debian/changelog b/debian/changelog index 6c78f709..a1dcc26f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,18 @@ wargus (2.4.2-1) xenial; urgency=medium + * Fix for extraction on Arm64 + * When OpenGL is unchecked, also uncheck UI scaling as it implies OpenGL + * Demolition range of goblin/gnome sappers increased by one + * The ogre mage's runes spell can no longer be placed directly on buildings as attack + * The shortcut for the Eye of Killrog is now "E" + * ToD human level 13 now decreases the health of Lothar's troops making their rescue impossible without cheating + * Enable sounds for research completed + * Change sound for human completed buildings to the peasant's "job's done" + * Copy the MIDI soundfont to the local Wargus directory to make midi music work + * ToD human level 10 now correctly makes the prisoners into Minutemen rather than Peasants + * Fixed ToD orc level 8 crash when the AI tried to research a non-existing 3rd catapult upgrade + * Fix a buffer overflow that could occur in ConvertVideo and ConvertMusic + * Switched from ffmpeg2theora to vanilla ffmpeg due to file import/conversion issues * Add support for advertising and joining games on a metaserver * Allow selecting the number of AI players in multiplayer games * Support new launcher-based extraction from Stratagus 2.4.2 @@ -9,7 +22,7 @@ wargus (2.4.2-1) xenial; urgency=medium * Add a preference to store the active shader, if the user selected one * Add shader shortcut to help - -- Tim Felgentreff Sun, 11 Jun 2017 12:33:12 +0200 + -- Tim Felgentreff Sat, 29 Sep 2018 19:08:00 +0000 wargus (2.4.1-1) unstable; urgency=low diff --git a/debian/copyright b/debian/copyright index 5c0257ab..a05ecd4c 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,7 +3,7 @@ Source: https://github.com/Wargus/wargus Files: * Copyright: - (c) 1998-2017 by The Stratagus Project + (c) 1998-2018 by The Stratagus Project (c) 2002-2007 Jimmy Salmon (c) 2003-2004 Russel Smith (c) 2002-2007 Nehal Mistry diff --git a/doc/changelog b/doc/changelog index 64479970..76e05b4c 100644 --- a/doc/changelog +++ b/doc/changelog @@ -9,9 +9,9 @@ - Change sound for human completed buildings to the peasant's "job's done" - Copy the MIDI soundfont to the local Wargus directory to make midi music work - ToD human level 10 now correctly makes the prisoners into Minutemen rather than Peasants - - Fixed ToD orc level 8 crash when AI tried to research a non-existing 3rd catapult upgrade - - Fix a buffer overflow that could occur - - Switched from ffmpeg2theora to vanilla ffmpeg due to file import/conversion issues + - Fixed ToD orc level 8 crash when AI tried to research a non-existing 3rd catapult upgrade + - Fix a buffer overflow that could occur + - Switched from ffmpeg2theora to vanilla ffmpeg due to file import/conversion issues - Add support for advertising and joining games on a metaserver - Allow selecting the number of AI players in multiplayer games - Support new launcher-based extraction from Stratagus 2.4.2 diff --git a/release.rb b/release.rb index eea9f2ec..1d16420b 100644 --- a/release.rb +++ b/release.rb @@ -6,7 +6,7 @@ version: "2.4.2", homepage: "https://wargus.github.io", license: "GPL v2+", - copyright: "(c) 1998-2017 by The Stratagus Project" + copyright: "(c) 1998-2018 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 5bf3b019..93cbb19d 100644 --- a/scripts/stratagus.lua +++ b/scripts/stratagus.lua @@ -44,7 +44,7 @@ else wargus.Name = _("Wargus") end wargus.Homepage = "https://wargus.github.io" -wargus.Copyright = _("(c) 1998-2017 by The Stratagus Project.") +wargus.Copyright = _("(c) 1998-2018 by The Stratagus Project.") wargus.Version = "2.4.2" wargus.Licence = "GPL v2+" diff --git a/wargus.nsi b/wargus.nsi index 684a03be..cb5bb352 100644 --- a/wargus.nsi +++ b/wargus.nsi @@ -50,7 +50,7 @@ !define VIVERSION "${VERSION}.0" !define HOMEPAGE "https://wargus.github.io" !define LICENSE "GPL v2+" -!define COPYRIGHT "Copyright (c) 1998-2017 by The Stratagus Project" +!define COPYRIGHT "Copyright (c) 1998-2018 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 0b00d7e8..e4fb4482 100644 --- a/wargus.rc +++ b/wargus.rc @@ -9,7 +9,7 @@ #define VIVERSION 2,4,2 #define HOMEPAGE "https://wargus.github.io" #define LICENSE "GPL v2+" -#define COPYRIGHT "(c) 1998-2017 by The Stratagus Project" +#define COPYRIGHT "(c) 1998-2018 by The Stratagus Project" 1 ICON "wargus.ico" 1 VERSIONINFO diff --git a/wartool.h b/wartool.h index 28a385f7..2e761ed3 100644 --- a/wartool.h +++ b/wartool.h @@ -37,7 +37,7 @@ #define VERSION "2.4.2" // Version of extractor wartool -const char NameLine[] = "wartool V" VERSION " for Stratagus, (c) 1998-2017 by The Stratagus Project.\n"\ +const char NameLine[] = "wartool V" VERSION " for Stratagus, (c) 1998-2018 by The Stratagus Project.\n"\ " Written by Lutz Sammer, Nehal Mistry, Jimmy Salmon, Pali Rohar and cybermind.\n"\ " https://wargus.github.io";