From 57e023860fa66b69c2dc41320cbb20636a7ad847 Mon Sep 17 00:00:00 2001 From: mhogomchungu Date: Mon, 2 Dec 2024 17:51:11 +0300 Subject: [PATCH] this commit marks the release point of version 7.1.0 --- CMakeLists.txt | 4 ++-- changelog | 5 +++++ zuluCrypt-gui/favorites2.h | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 313211cb..a8251669 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ project(zuluCrypt) INCLUDE(GNUInstallDirs) -set( PGR_VERSION "7.0.0" ) +set( PGR_VERSION "7.1.0" ) set( LIB_VERSION "1.2.0" ) set( LIB_PLUGIN_VERSION "1.0.0" ) set( COPYRIGHT_YEARS "2011-2024" ) @@ -276,7 +276,7 @@ add_subdirectory( zuluSafe ) if( NOT NOGUI ) - option(BUILD_WITH_QT6 "Build with Qt 6" ON) + option(BUILD_WITH_QT6 "Build with Qt 6" OFF) if(BUILD_WITH_QT6) find_package(Qt6 COMPONENTS Core Widgets Network REQUIRED ) diff --git a/changelog b/changelog index c8993b4d..78a84a25 100644 --- a/changelog +++ b/changelog @@ -344,3 +344,8 @@ version 7.0.0 -- Make the project builable with Qt6, default is still Qt5. -- Fix a bug that caused a VeraCrypt password to not be used when unlocking using keyfiles. -- Fix a bug that prevented using a YubiKey. + +version 7.1.0 +-- Fix a regression that prevented a password with non ascii character to no longer work. +-- Fix a bug that prevented some operations when zuluCrypt-cli was invoked with sudo. +-- Fix a zuluPolkit crash when it is invoked with a newer version of polkit. diff --git a/zuluCrypt-gui/favorites2.h b/zuluCrypt-gui/favorites2.h index d9b80a77..8678a993 100644 --- a/zuluCrypt-gui/favorites2.h +++ b/zuluCrypt-gui/favorites2.h @@ -30,6 +30,7 @@ #include #include +#include namespace Ui { class favorites2; @@ -50,7 +51,7 @@ class favorites2 : public QDialog void getOptions() ; bool m_gnomeWallet = false ; bool m_kdeWallet = false ; - std::atomic_bool m_active = false ; + std::atomic_bool m_active{ false } ; bool m_set = false ; favorites2 * m_parent ; } ;