From 9f3b49a7f53b6946e24dd4a09f04d68309234408 Mon Sep 17 00:00:00 2001 From: Khopa Date: Thu, 20 Aug 2020 13:11:35 +0200 Subject: [PATCH] Changelog update --- changelog.md | 1 + qt_ui/main.py | 2 +- qt_ui/windows/newgame/QNewGameWizard.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index e247e6d4..8ed4ed1e 100644 --- a/changelog.md +++ b/changelog.md @@ -13,6 +13,7 @@ ## Fixed issues : * **[Mission Generator]** Caucasus terrain improvement on exclusions zone (added forests between Vaziani and Beslan to exlusion zones) +* **[Mission Generator]** The first unit of every base defenses group could not be controlled by Combined Arms. # 2.0.11 diff --git a/qt_ui/main.py b/qt_ui/main.py index 5b075cdf..f1e40a50 100644 --- a/qt_ui/main.py +++ b/qt_ui/main.py @@ -1,7 +1,7 @@ from userdata import logging_config # Logging setup -VERSION_STRING = "2.0.10" +VERSION_STRING = "2.0.11" logging_config.init_logging(VERSION_STRING) import logging diff --git a/qt_ui/windows/newgame/QNewGameWizard.py b/qt_ui/windows/newgame/QNewGameWizard.py index 1269a96a..05c944a3 100644 --- a/qt_ui/windows/newgame/QNewGameWizard.py +++ b/qt_ui/windows/newgame/QNewGameWizard.py @@ -95,7 +95,7 @@ class NewGameWizard(QtWidgets.QWizard): game.budget = int(game.budget * multiplier) game.settings.multiplier = multiplier game.settings.sams = True - game.settings.version = "2.0.10" + game.settings.version = "2.0.11" if midgame: game.budget = game.budget * 4 * len(list(conflictTheater.conflicts()))