From 3e35c548540ba9b898f3596a2fc3b1a0d568214a Mon Sep 17 00:00:00 2001 From: Christian Heimlich Date: Wed, 8 Nov 2023 18:27:01 -0500 Subject: [PATCH 1/2] Fix TitleCommand subtitle option --- app/src/command/title-command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/command/title-command.cpp b/app/src/command/title-command.cpp index 0577e52..ab9b925 100644 --- a/app/src/command/title-command.cpp +++ b/app/src/command/title-command.cpp @@ -280,7 +280,7 @@ Qx::Error TitleCommand::getTitleId(QUuid& id) } // Set buffer - id = !titleId.isNull() ? titleId : addAppId; + id = addAppId.isNull() ? titleId : addAppId; return TitleCommandError(); } From 7062e21f49704a9b2a31d30d72d60673bd15f24c Mon Sep 17 00:00:00 2001 From: Christian Heimlich Date: Wed, 8 Nov 2023 18:32:28 -0500 Subject: [PATCH 2/2] Bump --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c4a23f4..650c2b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24.0...3.26.0) # Project # NOTE: DON'T USE TRAILING ZEROS IN VERSIONS project(CLIFp - VERSION 0.9.9 + VERSION 0.9.9.1 LANGUAGES CXX DESCRIPTION "Command-line Interface for Flashpoint Archive" )