From 3d1fb64b2e7b49f19b54b43c00abd8f80e071c6d Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Fri, 7 Nov 2025 20:08:35 +0100 Subject: [PATCH 1/3] Skip AppRun hook creation on Qt >= 6 --- src/main.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 04683d9..8092a05 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -308,10 +308,14 @@ int main(const int argc, const char *const *const argv) { return 1; } - ldLog() << std::endl << "-- Creating AppRun hook --" << std::endl; - if (!createAppRunHook(appDir)) { - ldLog() << LD_ERROR << "Failed to create AppRun hook in AppDir" << std::endl; - return 1; + if (qtMajorVersion >= 6) { + ldLog() << std::endl << "-- Note: skipping AppRun hook creation on Qt " << qtMajorVersion << " --" << std::endl; + } else { + ldLog() << std::endl << "-- Creating AppRun hook --" << std::endl; + if (!createAppRunHook(appDir)) { + ldLog() << LD_ERROR << "Failed to create AppRun hook in AppDir" << std::endl; + return 1; + } } ldLog() << std::endl << "Done!" << std::endl; From 9465f90388a317641e4a63416a05d6462d5bbbb9 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Fri, 7 Nov 2025 20:10:10 +0100 Subject: [PATCH 2/3] Update cmake-scripts --- lib/cmake-scripts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmake-scripts b/lib/cmake-scripts index 21bd317..df32987 160000 --- a/lib/cmake-scripts +++ b/lib/cmake-scripts @@ -1 +1 @@ -Subproject commit 21bd317812e44f7ed925f3f3bffcb7136c30ae74 +Subproject commit df329871d82b9bbce76419aea59f595078dee024 From ac5ff84a4b8f44b1bf8c67167d93319a2c811426 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Fri, 7 Nov 2025 20:48:58 +0100 Subject: [PATCH 3/3] Update linuxdeploy --- lib/linuxdeploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linuxdeploy b/lib/linuxdeploy index 160c700..cc7b864 160000 --- a/lib/linuxdeploy +++ b/lib/linuxdeploy @@ -1 +1 @@ -Subproject commit 160c7007137c54cd6c5d6af3f7f951f18cda08af +Subproject commit cc7b86472c3caa3fd729b9dc502fd2aa78394257