From ea6ebd496472d5d6f387ee9953658bcadc6720d5 Mon Sep 17 00:00:00 2001 From: mhogomchungu Date: Wed, 13 Nov 2024 22:39:51 +0300 Subject: [PATCH] this commit marks the release point of version 1.7.1 --- CMakeLists.txt | 2 +- changelog | 5 ++++- src/keydialog.cpp | 4 ++-- src/utility.cpp | 5 +++++ 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index acc3fcce..da273a4b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set_property( GLOBAL PROPERTY ALLOW_DUPLICATE_CUSTOM_TARGETS ON ) project( sirikali ) -set( PGR_VERSION "1.7.0" ) +set( PGR_VERSION "1.7.1" ) set( COPYRIGHT_YEARS "2016-2024" ) file(WRITE ${PROJECT_BINARY_DIR}/VERSION_INFO "${PGR_VERSION}") diff --git a/changelog b/changelog index 32122a32..874b700c 100644 --- a/changelog +++ b/changelog @@ -291,7 +291,10 @@ version 1.4.2(December 18,2019) [FLATPAK] -- Bundle Cryfs along side Securefs and Gocryptfs. - version 1.7.1(November 11, 2024) + version 1.7.1(November 13, 2024) + [WINDOWS] +-- Internally manage securefs and make it possible to update it from within the app. + The ability is set to "off" by default and can be enabled in the settings menu. [LINUX] -- Internally manage gocryptfs and securefs and make it possible to update them from within the app. The ability is set to "off" by default and can be enabled in the settings menu. diff --git a/src/keydialog.cpp b/src/keydialog.cpp index 4d49e35c..0b98ad9a 100644 --- a/src/keydialog.cpp +++ b/src/keydialog.cpp @@ -329,9 +329,9 @@ void keyDialog::setUpInitUI() m_ui->pbOpen->setFocus() ; } - m_ui->tbVisibleKey->setToolTip( tr( "Check This Box To Make Password Visible" ) ) ; + m_ui->tbVisibleKey->setToolTip( tr( "Check This Box To Make Password Visible" ) ) ; - m_ui->tbVisibleKey->setEnabled( m_settings.enableRevealingPasswords() ) ; + m_ui->tbVisibleKey->setEnabled( m_settings.enableRevealingPasswords() ) ; } void keyDialog::setVolumeToUnlock() diff --git a/src/utility.cpp b/src/utility.cpp index 7bcbcc3f..6df89cda 100644 --- a/src/utility.cpp +++ b/src/utility.cpp @@ -1741,6 +1741,10 @@ bool utility::copyFile( const QString& s,const QString& d,bool setExePermssion ) bool utility::canDownload( utility::arch arch ) { +#if QT_VERSION < QT_VERSION_CHECK( 5,4,0 ) + + return false ; +#else auto m = QSysInfo::currentCpuArchitecture() ; if( arch == utility::arch::either ){ @@ -1753,4 +1757,5 @@ bool utility::canDownload( utility::arch arch ) }else{ return m == "i386" ; } +#endif }