diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a008dc..1d407f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) # Configure project -project(cutemaze VERSION 1.3.1 LANGUAGES CXX) +project(cutemaze VERSION 1.3.2 LANGUAGES CXX) set(project_copyright "2007-2023 Graeme Gott") diff --git a/ChangeLog b/ChangeLog index 02c6d3c..dcd6279 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1.3.2 +----- +* Added portable mode. +* Improved Linux deployment. +* Replaced deprecated code. + 1.3.1 ----- * Switched to Qt 6. diff --git a/icons/cutemaze.appdata.xml b/icons/cutemaze.appdata.xml index c09db0a..e49efa3 100644 --- a/icons/cutemaze.appdata.xml +++ b/icons/cutemaze.appdata.xml @@ -79,6 +79,15 @@ + + +
    +
  • Added portable mode
  • +
  • Improved Linux deployment
  • +
  • Replaced deprecated code
  • +
+
+
    diff --git a/mac_deploy.sh b/mac_deploy.sh index 6fa7aa4..379b056 100755 --- a/mac_deploy.sh +++ b/mac_deploy.sh @@ -2,7 +2,7 @@ APP='CuteMaze' BUNDLE="$APP.app" -VERSION='1.3.1' +VERSION='1.3.2' # Locate deployment script BIN_DIR=$(pwd) diff --git a/windows/installer.nsi b/windows/installer.nsi index 1cf24bf..6830193 100644 --- a/windows/installer.nsi +++ b/windows/installer.nsi @@ -4,7 +4,7 @@ !define APPNAME "CuteMaze" !define VERSIONMAJOR 1 !define VERSIONMINOR 3 -!define VERSIONPATCH 1 +!define VERSIONPATCH 2 !define APPVERSION "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONPATCH}" !define ABOUTURL "https://gottcode.org/cutemaze/" diff --git a/windows_deploy.bat b/windows_deploy.bat index 077e995..067180b 100644 --- a/windows_deploy.bat +++ b/windows_deploy.bat @@ -4,7 +4,7 @@ SET SRCDIR=..\cutemaze SET APP=CuteMaze -SET VERSION=1.3.1 +SET VERSION=1.3.2 ECHO Copying executable MKDIR %SRCDIR%\%APP%