diff --git a/changelog.md b/changelog.md index c9b1cabe380..6e684bab8f5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,14 +1,7 @@ -## Version 1.19.3+dev - ### Add-ons client - ### Add-ons server - ### Campaigns - ### Editor - ### Multiplayer +## Version 1.19.4 ### Lua API * Added new function gui.switch_theme() to allow switching to another gui2 theme from inside a scenario. * Updated to lua 5.4.7 - ### Packaging - ### Terrain ### Translations * Updated translations: Arabic, Bengali, British English, Chinese (Simplified), Czech, Italian, Japanese, Turkish, Ukrainian ### Units @@ -25,7 +18,6 @@ * Removed properties `unit.side` and `terrain.owner` from WFL. Use `unit.side_number` and `terrain.owner_side` instead. * Fixed events with negative priority not being stored in save files. * Events can now be added to abilities and weapon specials. - ### Miscellaneous and Bug Fixes ## Version 1.19.3 ### Campaigns diff --git a/data/tools/wesnoth/version.py b/data/tools/wesnoth/version.py index 60ef5070078..5de7d1087b6 100755 --- a/data/tools/wesnoth/version.py +++ b/data/tools/wesnoth/version.py @@ -2,8 +2,8 @@ major = 1 minor = 19 -release = 3 -dev_suffix = "+dev" # either use "+dev", "-dev", "" (empty string) or None +release = 4 +dev_suffix = "" # either use "+dev", "-dev", "" (empty string) or None as_string = "{}.{}.{}{}".format(major, minor, diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index c80d953cbe9..b63a5b79469 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "The Battle for Wesnoth" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.19.3+dev +PROJECT_NUMBER = 1.19.4 # 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 diff --git a/projectfiles/Xcode/Info.plist b/projectfiles/Xcode/Info.plist index 6c13a40d629..ec480340193 100644 --- a/projectfiles/Xcode/Info.plist +++ b/projectfiles/Xcode/Info.plist @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.19.3 + 1.19.4 CFBundleSignature ???? CFBundleVersion - 1.19.3 + 1.19.4 LSApplicationCategoryType public.app-category.strategy-games NSHighResolutionCapable diff --git a/src/wesconfig.h b/src/wesconfig.h index 551d4bb68d6..f06eae57580 100644 --- a/src/wesconfig.h +++ b/src/wesconfig.h @@ -40,7 +40,7 @@ #undef VERSION #endif -#define VERSION "1.19.3+dev" +#define VERSION "1.19.4" // Used for the Windows executables' version info resource. #define RC_VERSION_MAJOR 1