This commit is contained in:
DavidXanatos 2023-02-15 16:06:37 +01:00
parent 6c610184d6
commit 912fb918d7
5 changed files with 20 additions and 7 deletions

View File

@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H
#define MY_VERSION_BINARY 5,62,3
#define MY_VERSION_STRING "5.62.3"
#define MY_VERSION_BINARY 5,63,0
#define MY_VERSION_STRING "5.63.0"
#define MY_ABI_VERSION 0x56000
// These #defines are used by either Resource Compiler or NSIS installer

View File

@ -366,6 +366,18 @@ SBIE2111 Process is not accessible: %3, call %2
SBIE2112 Object is not accessible: %3, call %2
.
2113;pop;inf;01
SBIE2113 File is too large to copy into sandbox, creating empty file - %2
.
2114;pop;inf;01
SBIE2114 File is too large to copy into sandbox, denying access - %2
.
2115;pop;inf;01
SBIE2115 File is too large to copy into sandbox, opening read only - %2
.
# %2 = Mozilla Firefox
2191;pop;inf;01
SBIE2191 %2 should not be updated while running under Sandboxie.

View File

@ -391,8 +391,6 @@ void COptionsWindow::SaveGeneral()
WriteAdvancedCheck(ui.chkDenyWrite, "CopyBlockDenyWrite", "y", "");
WriteAdvancedCheck(ui.chkNoCopyMsg, "NotifyNoCopy", "y", "");
if (m_CopyRulesChanged)
SaveCopyRules();
WriteAdvancedCheck(ui.chkProtectBox, "NeverDelete", "y", "");
WriteAdvancedCheck(ui.chkAutoEmpty, "AutoDelete", "y", "");
@ -674,7 +672,7 @@ void COptionsWindow::OnAddCopyRule()
void COptionsWindow::OnDelCopyRule()
{
QTreeWidgetItem* pItem = ui.treeCopy->currentItem();
if (!pItem)
if (!pItem || pItem->data(0, Qt::UserRole).toInt() == -1)
return;
delete pItem;

View File

@ -847,6 +847,8 @@ void COptionsWindow::SaveConfig()
{
if (m_GeneralChanged)
SaveGeneral();
if (m_CopyRulesChanged)
SaveCopyRules();
if (m_GroupsChanged)
SaveGroups();
@ -931,6 +933,7 @@ void COptionsWindow::ok()
void COptionsWindow::reject()
{
if (m_GeneralChanged
|| m_CopyRulesChanged
|| m_GroupsChanged
|| m_ForcedChanged
|| m_StopChanged

View File

@ -1,8 +1,8 @@
#pragma once
#define VERSION_MJR 1
#define VERSION_MIN 7
#define VERSION_REV 3
#define VERSION_MIN 8
#define VERSION_REV 0
#define VERSION_UPD 0
#ifndef STR