Set next version as 11.1 (#3382)

This PR sets versions & changelog to a 11.1 bugfix release.
This commit is contained in:
zhexu14 2024-04-22 22:55:39 +10:00 committed by GitHub
parent 55c77ed7c3
commit 13ff69c4df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 8 deletions

View File

@ -1,8 +1,6 @@
# 12.0.0 # 11.1.0
Saves from 11.x are not compatible with 12.0.0. Saves from 11.0.0 are compatible with 11.1.0.
## Features/Improvements
## Fixes ## Fixes
@ -10,6 +8,7 @@ Saves from 11.x are not compatible with 12.0.0.
* **[Campaign]** Fixed error where frontline units are not re-deployed when multiple control points were captured in one turn or when control points are captured "out of order" using air-assault missions. * **[Campaign]** Fixed error where frontline units are not re-deployed when multiple control points were captured in one turn or when control points are captured "out of order" using air-assault missions.
* **[Cheat Menu]** Re-deploy frontline units when using cheats to capture control points, so that cheats behave the same way as capturing a control point in-mission. * **[Cheat Menu]** Re-deploy frontline units when using cheats to capture control points, so that cheats behave the same way as capturing a control point in-mission.
* **[Flight Planning]** Theater refuelling flight plans (those not tied to a particular package) will remain on station for a longer period, specifically the desired mission duration + 30 minutes. By default, this increases the on-station time from 1 hour to 1.5 hours. * **[Flight Planning]** Theater refuelling flight plans (those not tied to a particular package) will remain on station for a longer period, specifically the desired mission duration + 30 minutes. By default, this increases the on-station time from 1 hour to 1.5 hours.
* **[Mission Generation]** Patched bug where Liberation crashed when aborting a turn when Fighter Sweep missions were planned.
* **[UI]** Naval control points (carriers, LHAs) can no longer be moved onto land. * **[UI]** Naval control points (carriers, LHAs) can no longer be moved onto land.

View File

@ -7,9 +7,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "DCS Liberation" project = "DCS Liberation"
copyright = "2023, DCS Liberation Team" copyright = "2024, DCS Liberation Team"
author = "DCS Liberation Team" author = "DCS Liberation Team"
release = "12.0.0" release = "11.1.0"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@ -1,8 +1,8 @@
from pathlib import Path from pathlib import Path
MAJOR_VERSION = 12 MAJOR_VERSION = 11
MINOR_VERSION = 0 MINOR_VERSION = 1
MICRO_VERSION = 0 MICRO_VERSION = 0
VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)) VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))