Skip to content

Commit

Permalink
1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed May 24, 2017
1 parent 1e70aa0 commit b837ebb
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 30 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v1.6.2 (24 May 2017)
+ create filter even if file doesn't exists (drive must be mounted)
+ allow inbound & listen traffic only if stealth-mode does not enabled
+ added required rules for the ipv6 stack to work properly
+ stealth-mode marked as experimental
- fixed com library initialization (again!)
- fixed stealth-mode
- fixed bugs

v1.6.1 (23 May 2017)
+ added username and domain information to the window title
+ added configuration refresh on user logon
Expand All @@ -6,7 +15,7 @@ v1.6.1 (23 May 2017)
- fixed incorrect return value on file not found error

v1.6 (19 May 2017)
+ added prevent port scanning option
+ added stealth-mode (to prevent udp/tcp port scanning)
+ added acl (access control list) to the engine
+ added gridline for the listview config
+ added item into the custom rules menu for open rules editor
Expand Down
11 changes: 10 additions & 1 deletion bin/History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v1.6.2 (24 May 2017)
+ create filter even if file doesn't exists (drive must be mounted)
+ allow inbound & listen traffic only if stealth-mode does not enabled
+ added required rules for the ipv6 stack to work properly
+ stealth-mode marked as experimental
- fixed com library initialization (again!)
- fixed stealth-mode
- fixed bugs

v1.6.1 (23 May 2017)
+ added username and domain information to the window title
+ added configuration refresh on user logon
Expand All @@ -6,7 +15,7 @@ v1.6.1 (23 May 2017)
- fixed incorrect return value on file not found error

v1.6 (19 May 2017)
+ added prevent port scanning option
+ added stealth-mode (to prevent udp/tcp port scanning)
+ added acl (access control list) to the engine
+ added gridline for the listview config
+ added item into the custom rules menu for open rules editor
Expand Down
Binary file modified bin/i18n/!example.txt
Binary file not shown.
Binary file modified bin/i18n/Russian.ini
Binary file not shown.
Binary file modified src/main.cpp
Binary file not shown.
Binary file modified src/main.h
Binary file not shown.
55 changes: 27 additions & 28 deletions src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,34 +127,33 @@
#define IDM_ALWAYSONTOP_CHK 2006
#define IDM_STARTMINIMIZED_CHK 2007
#define IDM_SHOWFILENAMESONLY_CHK 2008
#define IDM_SHOWGRIDLINES_CHK 2034
#define IDM_ICONSSMALL 2009
#define IDM_ICONSLARGE 2010
#define IDM_ICONSISHIDDEN 2011
#define IDM_SORTBYFNAME 2012
#define IDM_SORTBYFDIR 2013
#define IDM_SORTISDESCEND 2014
#define IDM_ENABLELOG_CHK 2015
#define IDM_ENABLENOTIFICATIONS_CHK 2016
#define IDM_ENABLEAPPSCOLLECTOR_CHK 2017
#define IDM_LOGSHOW 2018
#define IDM_LOGCLEAR 2019
#define IDM_ENABLELOGERROR_CHK 2020
#define IDM_ENABLELOGERRORNOTIFICATIONS_CHK 2021
#define IDM_LOGERRORSHOW 2022
#define IDM_LOGERRORCLEAR 2023
#define IDM_WEBSITE 2024
#define IDM_DONATE 2025
#define IDM_CHECKUPDATES 2026
#define IDM_ABOUT 2027

#define IDM_USEBLOCKLIST_CHK 2028
#define IDM_STEALTHMODE_CHK 2029
#define IDM_INSTALLBOOTTIMEFILTERS_CHK 2030
#define IDM_RULE_ALLOWINBOUND 2031
#define IDM_RULE_ALLOWLISTEN 2032
#define IDM_USEUPDATECHECKING_CHK 2033

#define IDM_SHOWGRIDLINES_CHK 2009
#define IDM_ICONSSMALL 2010
#define IDM_ICONSLARGE 2011
#define IDM_ICONSISHIDDEN 2012
#define IDM_SORTBYFNAME 2013
#define IDM_SORTBYFDIR 2014
#define IDM_SORTISDESCEND 2015
#define IDM_ENABLELOG_CHK 2016
#define IDM_ENABLENOTIFICATIONS_CHK 2017
#define IDM_ENABLEAPPSCOLLECTOR_CHK 2018
#define IDM_LOGSHOW 2019
#define IDM_LOGCLEAR 2020
#define IDM_ENABLELOGERROR_CHK 2021
#define IDM_ENABLELOGERRORNOTIFICATIONS_CHK 2022
#define IDM_LOGERRORSHOW 2023
#define IDM_LOGERRORCLEAR 2024
#define IDM_WEBSITE 2025
#define IDM_DONATE 2026
#define IDM_CHECKUPDATES 2027
#define IDM_ABOUT 2028

#define IDM_USEBLOCKLIST_CHK 2029
#define IDM_STEALTHMODE_CHK 2030
#define IDM_INSTALLBOOTTIMEFILTERS_CHK 2031
#define IDM_RULE_ALLOWINBOUND 2032
#define IDM_RULE_ALLOWLISTEN 2033
#define IDM_USEUPDATECHECKING_CHK 2034

// Tray Menu
#define IDM_TRAY_SHOW 3000
Expand Down
Binary file modified src/resource.rc
Binary file not shown.

0 comments on commit b837ebb

Please sign in to comment.