From 88eded41ae32ff282209e2707fa643aa3b0de18e Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Sat, 22 Feb 2025 17:41:03 +1100 Subject: [PATCH] Bump version to 14, update changelog (#3489) --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/new-game-bug.yml | 2 +- changelog.md | 12 ++++++++++++ docs/conf.py | 2 +- game/version.py | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) 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))