1.17.26
This commit is contained in:
parent
d46f14a44d
commit
d1b3ede924
5 changed files with 7 additions and 11 deletions
|
@ -1,6 +1,4 @@
|
||||||
## Version 1.17.25+dev
|
## Version 1.17.26
|
||||||
### Add-ons client
|
|
||||||
### Add-ons server
|
|
||||||
### Campaigns
|
### Campaigns
|
||||||
* Eastern Invasion
|
* Eastern Invasion
|
||||||
* Many minor bugfixes
|
* Many minor bugfixes
|
||||||
|
@ -14,7 +12,6 @@
|
||||||
* Adjust Fighter unit line for easier early leveling and more late game staying power.
|
* Adjust Fighter unit line for easier early leveling and more late game staying power.
|
||||||
* World Conquest
|
* World Conquest
|
||||||
* Fix the Bezoar artifact (issue #6513)
|
* Fix the Bezoar artifact (issue #6513)
|
||||||
### Editor
|
|
||||||
### Multiplayer
|
### Multiplayer
|
||||||
* Assume that all players need a copy of an add-on, by defaulting `require_modification`/`require_campaign` to `yes` (PR #8135)
|
* Assume that all players need a copy of an add-on, by defaulting `require_modification`/`require_campaign` to `yes` (PR #8135)
|
||||||
### Lua API
|
### Lua API
|
||||||
|
@ -23,7 +20,6 @@
|
||||||
* Add CMake and SCons options to use an already installed copy of Lua 5.4 (PR #8234)
|
* Add CMake and SCons options to use an already installed copy of Lua 5.4 (PR #8234)
|
||||||
* The system copy of Lua must be compiled as C++ rather than C, as Wesnoth uses C++ exceptions.
|
* The system copy of Lua must be compiled as C++ rather than C, as Wesnoth uses C++ exceptions.
|
||||||
* Windows requires a compile-time change to Lua, so must use the in-tree Lua submodule.
|
* Windows requires a compile-time change to Lua, so must use the in-tree Lua submodule.
|
||||||
### Terrain
|
|
||||||
### Translations
|
### Translations
|
||||||
* New translation: Bengali
|
* New translation: Bengali
|
||||||
* Updated translations: Arabic, British English, Czech, Finnish, French
|
* Updated translations: Arabic, British English, Czech, Finnish, French
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
major = 1
|
major = 1
|
||||||
minor = 17
|
minor = 17
|
||||||
release = 25
|
release = 26
|
||||||
dev_suffix = "+dev" # either use "+dev", "-dev", "" (empty string) or None
|
dev_suffix = "" # either use "+dev", "-dev", "" (empty string) or None
|
||||||
|
|
||||||
as_string = "{}.{}.{}{}".format(major,
|
as_string = "{}.{}.{}{}".format(major,
|
||||||
minor,
|
minor,
|
||||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "The Battle for Wesnoth"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 1.17.25+dev
|
PROJECT_NUMBER = 1.17.26
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
@ -19,11 +19,11 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.17.25</string>
|
<string>1.17.26</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.17.25</string>
|
<string>1.17.26</string>
|
||||||
<key>LSApplicationCategoryType</key>
|
<key>LSApplicationCategoryType</key>
|
||||||
<string>public.app-category.strategy-games</string>
|
<string>public.app-category.strategy-games</string>
|
||||||
<key>NSHighResolutionCapable</key>
|
<key>NSHighResolutionCapable</key>
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#undef VERSION
|
#undef VERSION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "1.17.25+dev"
|
#define VERSION "1.17.26"
|
||||||
|
|
||||||
// Used for the Windows executables' version info resource.
|
// Used for the Windows executables' version info resource.
|
||||||
#define RC_VERSION_MAJOR 1
|
#define RC_VERSION_MAJOR 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue