Skip to content

Commit

Permalink
Release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Jul 3, 2021
1 parent 5434dff commit 6c4770a
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
13 changes: 10 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
war1gus (3.0.1-1) UNRELEASED; urgency=medium

-- Tim Felgentreff <[email protected]> Sun, 20 Dec 2020 11:06:33 +0100
war1gus (3.1.0-1) focal; urgency=medium
* Overhaul multiplayer menus and online sign on
* Sync settings for multiplayer games to avoid desyncs
* Support new fog of war options
* Support extracting from the GOG installer file
* Add rebalanced unit stats by default
* Improve map editor usability
* Fix various menus and settings options

-- Tim Felgentreff <[email protected]> Sat, 03 Jul 2021 20:27:27 +0200

war1gus (3.0.0-1) focal; urgency=medium

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-2020 by The Stratagus Project
(c) 1998-2021 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>3.0.1</string>
<string>3.1.0</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: "3.0.1",
version: "3.1.0",
homepage: "https://github.com/wargus/war1gus",
license: "GPL v2",
copyright: "(c) 1998-2020 by The Stratagus Project",
copyright: "(c) 1998-2021 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 = "3.0.1"
war1gus.Version = "3.1.0"
war1gus.Homepage = "https://github.com/Wargus/war1gus"
war1gus.Licence = "GPL v2"
war1gus.Copyright = "(c) 1998-2020 by The Stratagus Project"
war1gus.Copyright = "(c) 1998-2021 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 "3.0.1"
!define VERSION "3.1.0"
!define VIVERSION "${VERSION}.0.0"
!define HOMEPAGE "https://github.com/wargus/war1gus"
!define LICENSE "GPL v2"
!define COPYRIGHT "(c) 1998-2020 by The Stratagus Project"
!define COPYRIGHT "(c) 1998-2021 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 "3.0.1"
#define VIVERSION 3,0,1
#define VERSION "3.1.0"
#define VIVERSION 3,1,0
#define HOMEPAGE "https://github.com/wargus/war1gus"
#define LICENSE "GPL v2"
#define COPYRIGHT "(c) 1998-2020 by The Stratagus Project"
#define COPYRIGHT "(c) 1998-2021 by The Stratagus Project"

1 ICON "war1gus.ico"
1 VERSIONINFO
Expand Down

0 comments on commit 6c4770a

Please sign in to comment.