This commit is contained in:
DavidXanatos 2024-02-11 09:16:17 +01:00
parent ae9c1e5144
commit fad9acd3ad
4 changed files with 17 additions and 3 deletions

View File

@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.13.1 / 5.68.1] - 2024-02-??
### Fixed
- added missing checkbox for api tracing
## [1.13.0 / 5.68.0] - 2024-02-10
### Added
@ -23,6 +31,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Removed
- cleaned up code and removed obsolete VC 6.0 workarounds
### Fixed
- fixed incompatybility with windows insider build 26040 and later

View File

@ -21,8 +21,8 @@
#ifndef _MY_VERSION_H
#define _MY_VERSION_H
#define MY_VERSION_BINARY 5,68,0
#define MY_VERSION_STRING "5.68.0"
#define MY_VERSION_BINARY 5,68,1
#define MY_VERSION_STRING "5.68.1"
#define MY_ABI_VERSION 0x56800
// These #defines are used by either Resource Compiler or NSIS installer

View File

@ -79,6 +79,7 @@ void COptionsWindow::CreateAdvanced()
connect(ui.chkGuiTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkComTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkNetFwTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkHookTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkDbgTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
connect(ui.chkErrTrace, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
@ -215,6 +216,7 @@ void COptionsWindow::LoadAdvanced()
ReadAdvancedCheck("GuiTrace", ui.chkGuiTrace, "*");
ReadAdvancedCheck("ClsidTrace", ui.chkComTrace, "*");
ReadAdvancedCheck("NetFwTrace", ui.chkNetFwTrace, "*");
ui.chkHookTrace->setChecked(m_pBox->GetBool("ApiTrace", false));
ui.chkDbgTrace->setChecked(m_pBox->GetBool("DebugTrace", false));
ui.chkErrTrace->setChecked(m_pBox->GetBool("ErrorTrace", false));
@ -399,6 +401,7 @@ void COptionsWindow::SaveAdvanced()
WriteAdvancedCheck(ui.chkGuiTrace, "GuiTrace", "*");
WriteAdvancedCheck(ui.chkComTrace, "ClsidTrace", "*");
WriteAdvancedCheck(ui.chkNetFwTrace, "NetFwTrace", "*");
WriteAdvancedCheck(ui.chkHookTrace, "ApiTrace", "y");
WriteAdvancedCheck(ui.chkDbgTrace, "DebugTrace", "y");
WriteAdvancedCheck(ui.chkErrTrace, "ErrorTrace", "y");

View File

@ -2,7 +2,7 @@
#define VERSION_MJR 1
#define VERSION_MIN 13
#define VERSION_REV 0
#define VERSION_REV 1
#define VERSION_UPD 0
#ifndef STR