From 12ca6f117ac91587cb8178078eb9640d0fda4f0d Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Fri, 11 Aug 2023 21:28:52 +0200 Subject: [PATCH] 1.10.5 --- CHANGELOG.md | 2 +- Sandboxie/common/my_version.h | 4 ++-- Sandboxie/core/drv/verify.c | 2 ++ SandboxiePlus/SandMan/SbieProcess.cpp | 4 ++-- SandboxiePlus/version.h | 4 ++-- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 505a9db8..381f54df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). -## [1.11.0 / 5.66.0] - 2023-08-?? +## [1.10.5 / 5.65.5] - 2023-08-12 ### Changed - Don't close submenus on mouse-leave (thanks typpos) [#2963](https://github.com/sandboxie-plus/Sandboxie/issues/2963) diff --git a/Sandboxie/common/my_version.h b/Sandboxie/common/my_version.h index 3248035d..d28bc6bc 100644 --- a/Sandboxie/common/my_version.h +++ b/Sandboxie/common/my_version.h @@ -21,8 +21,8 @@ #ifndef _MY_VERSION_H #define _MY_VERSION_H -#define MY_VERSION_BINARY 5,66,0 -#define MY_VERSION_STRING "5.66.0" +#define MY_VERSION_BINARY 5,65,5 +#define MY_VERSION_STRING "5.65.5" #define MY_ABI_VERSION 0x56500 // These #defines are used by either Resource Compiler or NSIS installer diff --git a/Sandboxie/core/drv/verify.c b/Sandboxie/core/drv/verify.c index 9bef0734..17ef4c1b 100644 --- a/Sandboxie/core/drv/verify.c +++ b/Sandboxie/core/drv/verify.c @@ -789,6 +789,8 @@ _FX NTSTATUS KphValidateCertificate() else Verify_CertInfo.level = eCertStandard; } + else if (CERT_IS_TYPE(Verify_CertInfo, eCertBusiness)) + Verify_CertInfo.level = eCertStandard; // <<< scheme 1.1 if(CertDbg) DbgPrint("Sbie Cert level: %X\n", Verify_CertInfo.level); diff --git a/SandboxiePlus/SandMan/SbieProcess.cpp b/SandboxiePlus/SandMan/SbieProcess.cpp index d79009c6..a58eefea 100644 --- a/SandboxiePlus/SandMan/SbieProcess.cpp +++ b/SandboxiePlus/SandMan/SbieProcess.cpp @@ -97,8 +97,8 @@ QString CSbieProcess::GetStatusStr() const if (m_uTerminated != 0) Status = tr("Terminated"); - //else if (m_bSuspended) - // Status = tr("Suspended"); + else if (m_bSuspended) + Status = tr("Suspended"); else { Status = tr("Running"); if ((m_ProcessFlags & 0x00000002) != 0) // SBIE_FLAG_FORCED_PROCESS diff --git a/SandboxiePlus/version.h b/SandboxiePlus/version.h index 849c283b..89e7774b 100644 --- a/SandboxiePlus/version.h +++ b/SandboxiePlus/version.h @@ -1,8 +1,8 @@ #pragma once #define VERSION_MJR 1 -#define VERSION_MIN 11 -#define VERSION_REV 0 +#define VERSION_MIN 10 +#define VERSION_REV 5 #define VERSION_UPD 0 #ifndef STR