1.10.5
This commit is contained in:
parent
445a10e9e0
commit
12ca6f117a
|
@ -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
|
### Changed
|
||||||
- Don't close submenus on mouse-leave (thanks typpos) [#2963](https://github.com/sandboxie-plus/Sandboxie/issues/2963)
|
- Don't close submenus on mouse-leave (thanks typpos) [#2963](https://github.com/sandboxie-plus/Sandboxie/issues/2963)
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
#ifndef _MY_VERSION_H
|
#ifndef _MY_VERSION_H
|
||||||
#define _MY_VERSION_H
|
#define _MY_VERSION_H
|
||||||
|
|
||||||
#define MY_VERSION_BINARY 5,66,0
|
#define MY_VERSION_BINARY 5,65,5
|
||||||
#define MY_VERSION_STRING "5.66.0"
|
#define MY_VERSION_STRING "5.65.5"
|
||||||
#define MY_ABI_VERSION 0x56500
|
#define MY_ABI_VERSION 0x56500
|
||||||
|
|
||||||
// These #defines are used by either Resource Compiler or NSIS installer
|
// These #defines are used by either Resource Compiler or NSIS installer
|
||||||
|
|
|
@ -789,6 +789,8 @@ _FX NTSTATUS KphValidateCertificate()
|
||||||
else
|
else
|
||||||
Verify_CertInfo.level = eCertStandard;
|
Verify_CertInfo.level = eCertStandard;
|
||||||
}
|
}
|
||||||
|
else if (CERT_IS_TYPE(Verify_CertInfo, eCertBusiness))
|
||||||
|
Verify_CertInfo.level = eCertStandard;
|
||||||
// <<< scheme 1.1
|
// <<< scheme 1.1
|
||||||
|
|
||||||
if(CertDbg) DbgPrint("Sbie Cert level: %X\n", Verify_CertInfo.level);
|
if(CertDbg) DbgPrint("Sbie Cert level: %X\n", Verify_CertInfo.level);
|
||||||
|
|
|
@ -97,8 +97,8 @@ QString CSbieProcess::GetStatusStr() const
|
||||||
|
|
||||||
if (m_uTerminated != 0)
|
if (m_uTerminated != 0)
|
||||||
Status = tr("Terminated");
|
Status = tr("Terminated");
|
||||||
//else if (m_bSuspended)
|
else if (m_bSuspended)
|
||||||
// Status = tr("Suspended");
|
Status = tr("Suspended");
|
||||||
else {
|
else {
|
||||||
Status = tr("Running");
|
Status = tr("Running");
|
||||||
if ((m_ProcessFlags & 0x00000002) != 0) // SBIE_FLAG_FORCED_PROCESS
|
if ((m_ProcessFlags & 0x00000002) != 0) // SBIE_FLAG_FORCED_PROCESS
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define VERSION_MJR 1
|
#define VERSION_MJR 1
|
||||||
#define VERSION_MIN 11
|
#define VERSION_MIN 10
|
||||||
#define VERSION_REV 0
|
#define VERSION_REV 5
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#ifndef STR
|
#ifndef STR
|
||||||
|
|
Loading…
Reference in New Issue