Skip to content

Commit

Permalink
this commit marks the release point of version 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Dec 2, 2024
1 parent 264fd6d commit 57e0238
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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" )
Expand Down Expand Up @@ -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 )
Expand Down
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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.
3 changes: 2 additions & 1 deletion zuluCrypt-gui/favorites2.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

#include <functional>
#include <memory>
#include <atomic>

namespace Ui {
class favorites2;
Expand All @@ -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 ;
} ;
Expand Down

0 comments on commit 57e0238

Please sign in to comment.