Bump version to 14, update changelog (#3489)

This commit is contained in:
zhexu14 2025-02-22 17:41:03 +11:00 committed by GitHub
parent 51e46653b9
commit 88eded41ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 4 deletions

View File

@ -31,7 +31,7 @@ body:
If the bug was found in a development build, select "Development build"
and provide a link to the build in the field below.
options:
- 13.0.0
- 14.0.0
- Development build
- type: textarea
attributes:

View File

@ -39,7 +39,7 @@ body:
If the bug was found in a development build, select "Development build"
and provide a link to the build in the field below.
options:
- 13.0.0
- 14.0.0
- Development build
- type: textarea
attributes:

View File

@ -1,3 +1,15 @@
# 14.0.0
Saves from 13.x are not compatible with 14.0.0.
## Features/Improvements
* **[Engine]** Support for DCS 2.9.13.6818.
## Fixes
* **[UI]** Air Wing and Transfers buttons disabled when no game is loaded as pressing them without a game loaded resulted in a crash.
# 13.0.0
Saves from 12.x are not compatible with 13.0.0.

View File

@ -9,7 +9,7 @@
project = "DCS Liberation"
copyright = "2025, DCS Liberation Team"
author = "DCS Liberation Team"
release = "13.0.0"
release = "14.0.0"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

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