Skip to content

Commit

Permalink
Update version info for 3.0 final release
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed Nov 30, 2021
1 parent 5aa8615 commit f405ece
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
10 changes: 5 additions & 5 deletions Dist/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
13 changes: 13 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions lib/CommonWidgets/CCTools.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

#include <QDialog>

#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"))

Expand Down

0 comments on commit f405ece

Please sign in to comment.