From c6d39546c6ad4e072942c01fc058282186ee93b2 Mon Sep 17 00:00:00 2001 From: henrypp Date: Fri, 6 Oct 2017 00:09:49 +0600 Subject: [PATCH] 2.0.16 --- CHANGELOG.md | 3 +++ bin/History.txt | 3 +++ src/app.hpp | 4 ++-- src/main.cpp | 3 +++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07569701..41b8c42b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +v2.0.16 (6 October 2017) +- fixed internal rules configuration saving + v2.0.15 (6 October 2017) + make current settings backup before import - changed default listview font diff --git a/bin/History.txt b/bin/History.txt index 07569701..41b8c42b 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -1,3 +1,6 @@ +v2.0.16 (6 October 2017) +- fixed internal rules configuration saving + v2.0.15 (6 October 2017) + make current settings backup before import - changed default listview font diff --git a/src/app.hpp b/src/app.hpp index 22a91732..a5c74f21 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -6,8 +6,8 @@ #define APP_NAME L"simplewall" #define APP_NAME_SHORT L"simplewall" -#define APP_VERSION L"2.0.15" -#define APP_VERSION_RES 2,0,15,0 +#define APP_VERSION L"2.0.16" +#define APP_VERSION_RES 2,0,16 #define APP_COPYRIGHT L"(c) 2016, 2017 " _APP_AUTHOR L". All Rights Reserved." #define _APP_BETA_RC diff --git a/src/main.cpp b/src/main.cpp index 2d18ff20..61a55a5a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5653,6 +5653,9 @@ BOOL settings_callback (HWND hwnd, DWORD msg, LPVOID lpdata1, LPVOID lpdata2) _r_listview_setitemcheck (hwnd, IDC_EDITOR, item, new_val); + if (page->dlg_id == IDD_SETTINGS_RULES_BLOCKLIST || page->dlg_id == IDD_SETTINGS_RULES_SYSTEM) + rules_config[ptr_rule->name] = new_val; + _r_spinunlock (&config.lock_checkbox); } }