1.5.2
This commit is contained in:
parent
69bc841c4b
commit
c0a854ab61
|
@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
|
||||
|
||||
## [1.5.2 / 5.60.2] - 2022-10-??
|
||||
|
||||
### Changed
|
||||
- uttility groups are now cleaned up automatically
|
||||
|
||||
|
||||
|
||||
|
||||
## [1.5.1 / 5.60.1] - 2022-10-??
|
||||
|
||||
### Added
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
#ifndef _MY_VERSION_H
|
||||
#define _MY_VERSION_H
|
||||
|
||||
#define MY_VERSION_BINARY 5,60,1
|
||||
#define MY_VERSION_STRING "5.60.1"
|
||||
#define MY_VERSION_BINARY 5,60,2
|
||||
#define MY_VERSION_STRING "5.60.2"
|
||||
#define MY_ABI_VERSION 0x56000
|
||||
|
||||
// These #defines are used by either Resource Compiler or NSIS installer
|
||||
|
|
|
@ -77,11 +77,13 @@ void COptionsWindow::CreateGeneral()
|
|||
}
|
||||
}
|
||||
|
||||
if (g_Certificate.isEmpty()) {
|
||||
QWidget* ExWidgets[] = { ui.chkSecurityMode, ui.chkLockDown, ui.chkRestrictDevices,
|
||||
ui.chkPrivacy, ui.chkUseSpecificity,
|
||||
ui.chkNoSecurityIsolation, ui.chkNoSecurityFiltering, ui.chkConfidential, NULL };
|
||||
ui.chkNoSecurityIsolation, ui.chkNoSecurityFiltering, ui.chkConfidential, ui.chkHostProtect, NULL };
|
||||
for (QWidget** ExWidget = ExWidgets; *ExWidget != NULL; ExWidget++)
|
||||
COptionsWindow__AddCertIcon(*ExWidget);
|
||||
}
|
||||
|
||||
|
||||
m_HoldBoxType = false;
|
||||
|
|
|
@ -173,7 +173,8 @@ void COptionsWindow::AddProgramToGroup(const QString& Program, const QString& Gr
|
|||
|
||||
bool COptionsWindow::DelProgramFromGroup(const QString& Program, const QString& Group)
|
||||
{
|
||||
QTreeWidgetItem* pItem = FindGroupByName(Group, true);
|
||||
QTreeWidgetItem* pItem = FindGroupByName(Group, false);
|
||||
if (!pItem) return false;
|
||||
|
||||
bool bFound = false;
|
||||
for (int j = 0; j < pItem->childCount(); j++){
|
||||
|
@ -181,6 +182,8 @@ bool COptionsWindow::DelProgramFromGroup(const QString& Program, const QString&
|
|||
if (pProgItem->data(0, Qt::UserRole).toString().compare(Program, Qt::CaseInsensitive) == 0) {
|
||||
delete pProgItem;
|
||||
bFound = true;
|
||||
if (pItem->childCount() == 0)
|
||||
delete pItem;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#define VERSION_MJR 1
|
||||
#define VERSION_MIN 5
|
||||
#define VERSION_REV 1
|
||||
#define VERSION_REV 2
|
||||
#define VERSION_UPD 0
|
||||
|
||||
#ifndef STR
|
||||
|
|
Loading…
Reference in New Issue