This commit is contained in:
DavidXanatos 2023-08-11 21:28:52 +02:00
parent 445a10e9e0
commit 12ca6f117a
5 changed files with 9 additions and 7 deletions

View File

@ -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)

View File

@ -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

View File

@ -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);

View File

@ -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

View File

@ -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