fix for #3807
This commit is contained in:
parent
c13115f44f
commit
cd5104e678
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [1.13.6 / 5.68.6] - 2024-04-
|
||||||
|
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed When I change the BlockDNS and BlockPorts options, the Apply button is not activated [#3807](https://github.com/sandboxie-plus/Sandboxie/issues/3807)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.13.5 / 5.68.5] - 2024-04-10
|
## [1.13.5 / 5.68.5] - 2024-04-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -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,68,5
|
#define MY_VERSION_BINARY 5,68,6
|
||||||
#define MY_VERSION_STRING "5.68.5"
|
#define MY_VERSION_STRING "5.68.6"
|
||||||
#define MY_ABI_VERSION 0x56800
|
#define MY_ABI_VERSION 0x56800
|
||||||
|
|
||||||
// These #defines are used by either Resource Compiler or NSIS installer
|
// These #defines are used by either Resource Compiler or NSIS installer
|
||||||
|
|
|
@ -134,6 +134,9 @@ private slots:
|
||||||
|
|
||||||
void OnTestNetFwRule();
|
void OnTestNetFwRule();
|
||||||
void OnClearNetFwTest();
|
void OnClearNetFwTest();
|
||||||
|
|
||||||
|
void OnBlockDns();
|
||||||
|
void OnBlockSamba();
|
||||||
//
|
//
|
||||||
|
|
||||||
// access
|
// access
|
||||||
|
@ -432,9 +435,6 @@ protected:
|
||||||
void LoadNetFwRules();
|
void LoadNetFwRules();
|
||||||
void SaveNetFwRules();
|
void SaveNetFwRules();
|
||||||
void LoadNetFwRulesTmpl(bool bUpdate = false);
|
void LoadNetFwRulesTmpl(bool bUpdate = false);
|
||||||
|
|
||||||
void OnBlockDns();
|
|
||||||
void OnBlockSamba();
|
|
||||||
//
|
//
|
||||||
|
|
||||||
// access
|
// access
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 1
|
#define VERSION_MJR 1
|
||||||
#define VERSION_MIN 13
|
#define VERSION_MIN 13
|
||||||
#define VERSION_REV 5
|
#define VERSION_REV 6
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#ifndef STR
|
#ifndef STR
|
||||||
|
|
Loading…
Reference in New Issue