Skip to content

Commit

Permalink
Release 2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Apr 25, 2020
1 parent 7568a07 commit abd797e
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 12 deletions.
21 changes: 21 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
war1gus (2.4.3-1) eoan; urgency=medium

* Allow actually disabling OpenGL, before we would always revert back to OpenGL
* Do not show lifebar for not owned units
* Fix knights and wolves upgrades speedup
* Build war1gus launcher on macOS
* Make sure we play the intro on Windows
* Use midi files if timidity is not available to convert them to OGG
* Various video conversion improvements on Linux and Windows to work on more platforms
* Implement missing cheat codes
* Show time to live for summoned units in the Mana bar, as in the original game
* Make unholy/holy vision spells last longer
* Update the damage formula to be closer to the original
* Add decorations for unholy armor and invisibility, similar to the original
* Make UI panels and lifebars much closer to the original game
* Fix extraction of gold mine contents
* Fix loading the correct race UI again when switching maps
* Make briefing look much more like the original game

-- Tim Felgentreff <[email protected]> Sat, 25 Apr 2020 10:32:50 +0200

war1gus (2.4.2.1-1) xenial; urgency=medium

* Replace ffmpeg2theora usage with plain ffmpeg usage
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Upstream Author(s):

Copyright:

(c) 1998-2018 by The Stratagus Project
(c) 1998-2020 by The Stratagus Project

License:

Expand Down
2 changes: 1 addition & 1 deletion mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleIconFile</key>
<string>war1gus</string>
<key>CFBundleShortVersionString</key>
<string>2.4.2.1</string>
<string>2.4.3</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
Expand Down
4 changes: 2 additions & 2 deletions release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
require "pp"

STRINGS = {
version: "2.4.2.1",
version: "2.4.3",
homepage: "https://github.com/wargus/war1gus",
license: "GPL v2",
copyright: "(c) 1998-2018 by The Stratagus Project",
copyright: "(c) 1998-2020 by The Stratagus Project",
authors: "Lutz Sammer, Nehal Mistry, Jimmy Salmon, Pali Rohar, and Tim Felgentreff."
}

Expand Down
4 changes: 2 additions & 2 deletions scripts/stratagus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ print("Stratagus default config file loading ...\n")
war1gus = {}
wc1 = war1gus
war1gus.Name = "War1gus"
war1gus.Version = "2.4.2.1"
war1gus.Version = "2.4.3"
war1gus.Homepage = "https://github.com/Wargus/war1gus"
war1gus.Licence = "GPL v2"
war1gus.Copyright = "(c) 1998-2018 by The Stratagus Project"
war1gus.Copyright = "(c) 1998-2020 by The Stratagus Project"

function file_exists(path, name)
for i,f in ipairs(ListFilesInDirectory(path)) do
Expand Down
4 changes: 2 additions & 2 deletions war1gus.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@

; General variables
!define NAME "War1gus"
!define VERSION "2.4.2.1"
!define VERSION "2.4.3"
!define VIVERSION "${VERSION}.0.0"
!define HOMEPAGE "https://github.com/wargus/war1gus"
!define LICENSE "GPL v2"
!define COPYRIGHT "(c) 1998-2018 by The Stratagus Project"
!define COPYRIGHT "(c) 1998-2020 by The Stratagus Project"
!define STRATAGUS_NAME "Stratagus"
!define STRATAGUS_HOMEPAGE "https://github.com/wargus/stratagus"

Expand Down
6 changes: 3 additions & 3 deletions war1gus.rc
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
#endif

#define DESCRIPTION NAME
#define VERSION "2.4.2.1"
#define VIVERSION 2,4,2,1
#define VERSION "2.4.3"
#define VIVERSION 2,4,3
#define HOMEPAGE "https://github.com/wargus/war1gus"
#define LICENSE "GPL v2"
#define COPYRIGHT "(c) 1998-2018 by The Stratagus Project"
#define COPYRIGHT "(c) 1998-2020 by The Stratagus Project"

1 ICON "war1gus.ico"
1 VERSIONINFO
Expand Down
2 changes: 1 addition & 1 deletion war1tool.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
-- Includes
----------------------------------------------------------------------------*/

#define VERSION "2.4.2.1.20161108" // Version of extractor wartool
#define VERSION "2.4.3.20190407" // Version of extractor wartool
#define AUTHORS "Lutz Sammer, Nehal Mistry, Jimmy Salmon, Pali Rohar, and Tim Felgentreff."
#define COPYRIGHT "1998-2015 by The Stratagus Project"

Expand Down

0 comments on commit abd797e

Please sign in to comment.