Skip to content

Commit

Permalink
this commit marks the release point of version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Nov 13, 2024
1 parent f3f9717 commit ea6ebd4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
5 changes: 4 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions src/keydialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
5 changes: 5 additions & 0 deletions src/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ){
Expand All @@ -1753,4 +1757,5 @@ bool utility::canDownload( utility::arch arch )
}else{
return m == "i386" ;
}
#endif
}

0 comments on commit ea6ebd4

Please sign in to comment.