Skip to content

Commit

Permalink
1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed May 31, 2017
1 parent 7336e08 commit 02707d0
Show file tree
Hide file tree
Showing 10 changed files with 306 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v1.6.4 (31 May 2017)
+ added fallback if blocklist and/or system rules not found
+ added more dropped events logging (win7 and above)
- fixed dropped events subscription duplicate (win7 and above)
- fixed run as admin does not work sometimes
- updated blocklist
- fixed bugs

v1.6.3 (27 May 2017)
+ generate unique session key at startup
- fixed custom app rules crash on delete
Expand Down
8 changes: 8 additions & 0 deletions bin/History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v1.6.4 (31 May 2017)
+ added fallback if blocklist and/or system rules not found
+ added more dropped events logging (win7 and above)
- fixed dropped events subscription duplicate (win7 and above)
- fixed run as admin does not work sometimes
- updated blocklist
- fixed bugs

v1.6.3 (27 May 2017)
+ generate unique session key at startup
- fixed custom app rules crash on delete
Expand Down
2 changes: 1 addition & 1 deletion bin/blocklist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- Last-Modified: Mon, 29 May 2017 14:30:26 +0000 -->

<?xml version="1.0"?>
<root>
<root timestamp="1496068226">
<item name="extra_13.80.12.54" rule="13.80.12.54" dir="0" protocol="0" version="0" is_block="1" is_enabled="0" />
<item name="extra_13.107.3.128" rule="13.107.3.128" dir="0" protocol="0" version="0" is_block="1" is_enabled="0" />
<item name="extra_13.107.21.200" rule="13.107.21.200" dir="0" protocol="0" version="0" is_block="1" is_enabled="0" />
Expand Down
Binary file modified bin/rules_system.xml
Binary file not shown.
Binary file modified src/main.cpp
Binary file not shown.
Binary file modified src/main.h
Binary file not shown.
285 changes: 285 additions & 0 deletions src/res/blocklist.xml

Large diffs are not rendered by default.

Binary file added src/res/rules_system.xml
Binary file not shown.
4 changes: 4 additions & 0 deletions src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,10 @@

#define IDS_STATUS_ERROR 10006

// RC data
#define IDR_RULES_BLOCKLIST 1
#define IDR_RULES_SYSTEM 2

// Icons
#define IDI_MAIN 100
#define IDI_INACTIVE 101
Expand Down
Binary file modified src/resource.rc
Binary file not shown.

0 comments on commit 02707d0

Please sign in to comment.