From 9a2fa50b0fa1aec02d39659083d3ce23529dadda Mon Sep 17 00:00:00 2001 From: RndName Date: Tue, 22 Mar 2022 13:59:27 +0100 Subject: [PATCH] Bump Campaign version to 10.0 The new introduced layout system extends the mission generation so that a campaign designer can now define the heading of the ground objects which will be also used later in mission generation to orient the group accordingly. This removes the randomization of the orientation from the generation. Most campaigns will not need any updates and will work out of the box. --- game/version.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/game/version.py b/game/version.py index 8db413b6..7ff79b3f 100644 --- a/game/version.py +++ b/game/version.py @@ -128,4 +128,11 @@ VERSION = _build_version_string() #: * Squadrons defined in campaign files can optionally setup squadrons' name, #: nickname and/or generated female pilot name percentage #: -CAMPAIGN_FORMAT_VERSION = (9, 2) +#: Version 10.0 +#: * The new introduced layout system extends the mission generation so that a +#: campaign designer can now define the heading of the ground objects which will be +#: also used later in mission generation to orient the group accordingly. +#: This removes the randomization of the orientation from the generation. +#: Most campaigns will not need any updates and will work out of the box. +#: +CAMPAIGN_FORMAT_VERSION = (10, 0)