diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index c99ff7fa..80b3fd60 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -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: diff --git a/.github/ISSUE_TEMPLATE/new-game-bug.yml b/.github/ISSUE_TEMPLATE/new-game-bug.yml index 450b31e2..3aeab4a6 100644 --- a/.github/ISSUE_TEMPLATE/new-game-bug.yml +++ b/.github/ISSUE_TEMPLATE/new-game-bug.yml @@ -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: diff --git a/changelog.md b/changelog.md index b392bac7..129e8c0a 100644 --- a/changelog.md +++ b/changelog.md @@ -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. diff --git a/docs/conf.py b/docs/conf.py index 0d3a6b1b..0ac951e8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 diff --git a/game/version.py b/game/version.py index 4e7c273b..67de4612 100644 --- a/game/version.py +++ b/game/version.py @@ -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))