From f405ecef48a4f41f894993e1e9b489eef80bbc2c Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Tue, 30 Nov 2021 14:32:47 -0800 Subject: [PATCH] Update version info for 3.0 final release --- CMakeLists.txt | 4 ++-- Dist/setup.iss | 10 +++++----- changelog.txt | 13 +++++++++++++ lib/CommonWidgets/CCTools.h | 4 ++-- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a10bc0b..0b7c150 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,8 @@ project(CCTools) set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(CCTOOLS_VER_MAJOR 2) -set(CCTOOLS_VER_MINOR 99) +set(CCTOOLS_VER_MAJOR 3) +set(CCTOOLS_VER_MINOR 0) set(CCTOOLS_VER_PATCH 0) set(CCTOOLS_VER_STRING "${CCTOOLS_VER_MAJOR}.${CCTOOLS_VER_MINOR}") set(CCTOOLS_VER_STRING_FULL "${CCTOOLS_VER_STRING}.${CCTOOLS_VER_PATCH}") diff --git a/Dist/setup.iss b/Dist/setup.iss index b258d95..a8940a6 100644 --- a/Dist/setup.iss +++ b/Dist/setup.iss @@ -2,9 +2,9 @@ OutputDir=. OutputBaseFilename=CCTools AppName=CCTools -AppVerName=CCTools 3.0 RC1 +AppVerName=CCTools 3.0 AppPublisher=Michael Hansen -AppVersion=2.99.0 +AppVersion=3.0.0 AppID={{CB9B9C3F-2810-44FB-8659-A0C5F9E24F1D} ChangesAssociations=true DefaultDirName={pf}\CCTools @@ -16,11 +16,11 @@ Compression=lzma/ultra InternalCompressLevel=ultra SolidCompression=true VersionInfoDescription=CCTools Setup -VersionInfoVersion=2.99.0 +VersionInfoVersion=3.0.0 VersionInfoCompany=Michael Hansen VersionInfoCopyright=Copyright (C) 2020 Michael Hansen -VersionInfoProductName=CCTools 3.0 RC1 -VersionInfoProductVersion=2.99.0 +VersionInfoProductName=CCTools 3.0 +VersionInfoProductVersion=3.0.0 [Types] Name: Full; Description: Full Install diff --git a/changelog.txt b/changelog.txt index cd18b24..ee24fd7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,16 @@ +2021-12-01 - 3.0 RELEASE (3.0.0) +~~~~~~~~~~ +Bugfixes: + * CC2Edit: Support launching CC2 via Proton instead of WINE for playtesting + on Linux (Thanks @TheGLander). + * CC2Edit: Fix loading maps within subdirectories from .c2g files on + non-Windows systems (Thanks @TheGLander). + * CC2Edit: Use compression to fix playtesting in Lexy's Labyrinth with some + large/complex maps. + * CC2Edit: Avoid excessive disk seeking when writing map data. + * CCEdit/CC2Edit: Don't hide stdout and stderr from playtest executables. + + 2021-11-15 - 3.0 RC1 (2.99.0) ~~~~~~~~~~ Features: diff --git a/lib/CommonWidgets/CCTools.h b/lib/CommonWidgets/CCTools.h index faf70d8..1f0578d 100644 --- a/lib/CommonWidgets/CCTools.h +++ b/lib/CommonWidgets/CCTools.h @@ -20,8 +20,8 @@ #include -#define CCTOOLS_VERSION "3.0-rc1" -#define CCTOOLS_APP_VER "2.99" +#define CCTOOLS_VERSION "3.0" +#define CCTOOLS_APP_VER "3.0" #define ICON(name) QIcon(QStringLiteral(":/res/" name ".png"))