This commit is contained in:
DavidXanatos 2022-12-19 19:10:52 +01:00
parent 4b4dd752ef
commit c83b0680d8
5 changed files with 18 additions and 6 deletions

View File

@ -4,14 +4,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.?.? / 5.??.?] - 202?-??-??
## [1.6.2a / 5.61.2] - 2022-12-19
### Fixed
- Fixed crash issue in Vintage UI introduced in 1.6.1a
## [1.6.2 / 5.61.2] - 2022-12-18
### Added ### Added
- added template for Tencent TIM [#2516](https://github.com/sandboxie-plus/Sandboxie/pull/2516) (thanks TooYoungTooSimp) - added template for Tencent TIM [#2516](https://github.com/sandboxie-plus/Sandboxie/pull/2516) (thanks TooYoungTooSimp)
## [1.6.1b / 5.61.1] - 2022-12-16 ## [1.6.1b / 5.61.1] - 2022-12-16
### Added ### Added

View File

@ -485,9 +485,9 @@ end;
function GetParams(Value: string): string; function GetParams(Value: string): string;
begin begin
if IsInstalled = True then begin if IsInstalled = True then begin
Result := 'upgrade sandboxie-plus /scope:meta /version:{#MyAppVersion}'; Result := 'upgrade sandboxie-plus /embedded /scope:meta /version:{#MyAppVersion}';
end else begin end else begin
Result := 'install sandboxie-plus /scope:meta /version:{#MyAppVersion}'; Result := 'install sandboxie-plus /embedded /scope:meta /version:{#MyAppVersion}';
end; end;
end; end;

View File

@ -310,7 +310,7 @@ _FX BOX *Process_GetForcedStartBox(
if ((force_alert == 0) && Conf_Get_Boolean(NULL, L"StartRunAlertDenied", 0, FALSE)) if ((force_alert == 0) && Conf_Get_Boolean(NULL, L"StartRunAlertDenied", 0, FALSE))
{ {
if(Conf_Get_Boolean(NULL, L"NotifyStartRunAccessDenied", 0, TRUE)) if(Conf_Get_Boolean(NULL, L"AlertStartRunAccessDenied", 0, TRUE))
Log_Msg_Process(MSG_1308, ImageName, NULL, SessionId, ProcessId); Log_Msg_Process(MSG_1308, ImageName, NULL, SessionId, ProcessId);
box = (BOX *)-1; box = (BOX *)-1;

View File

@ -584,6 +584,7 @@ void CSandMan::CreateOldMenus()
m_pMenuBar->clear(); m_pMenuBar->clear();
m_pMenuFile = m_pMenuBar->addMenu(tr("&File")); m_pMenuFile = m_pMenuBar->addMenu(tr("&File"));
m_pRunBoxed = m_pMenuFile->addAction(CSandMan::GetIcon("Run"), tr("Run Sandboxed"), this, SLOT(OnSandBoxAction()));
m_pEmptyAll = m_pMenuFile->addAction(CSandMan::GetIcon("EmptyAll"), tr("Terminate All Processes"), this, SLOT(OnEmptyAll())); m_pEmptyAll = m_pMenuFile->addAction(CSandMan::GetIcon("EmptyAll"), tr("Terminate All Processes"), this, SLOT(OnEmptyAll()));
m_pDisableForce = m_pMenuFile->addAction(tr("Pause Forcing Programs"), this, SLOT(OnDisableForce())); m_pDisableForce = m_pMenuFile->addAction(tr("Pause Forcing Programs"), this, SLOT(OnDisableForce()));
m_pDisableForce->setCheckable(true); m_pDisableForce->setCheckable(true);
@ -1252,6 +1253,7 @@ bool CSandMan::IsSilentMode()
return false; return false;
return IsFullScreenMode(); return IsFullScreenMode();
} }
void CSandMan::OnMessage(const QString& MsgData) void CSandMan::OnMessage(const QString& MsgData)
{ {
QStringList Messages = MsgData.split("\n"); QStringList Messages = MsgData.split("\n");

View File

@ -3,7 +3,7 @@
#define VERSION_MJR 1 #define VERSION_MJR 1
#define VERSION_MIN 6 #define VERSION_MIN 6
#define VERSION_REV 2 #define VERSION_REV 2
#define VERSION_UPD 0 #define VERSION_UPD 1
#ifndef STR #ifndef STR
#define STR2(X) #X #define STR2(X) #X