diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0e7c51..ede87469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/bin/History.txt b/bin/History.txt index 6a0e7c51..ede87469 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -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 @@ -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 diff --git a/bin/i18n/!example.txt b/bin/i18n/!example.txt index 36d40e4c..2b360e19 100644 Binary files a/bin/i18n/!example.txt and b/bin/i18n/!example.txt differ diff --git a/bin/i18n/Russian.ini b/bin/i18n/Russian.ini index 8d72c5b1..875f22d2 100644 Binary files a/bin/i18n/Russian.ini and b/bin/i18n/Russian.ini differ diff --git a/src/main.cpp b/src/main.cpp index 045827a4..d6cd57bc 100644 Binary files a/src/main.cpp and b/src/main.cpp differ diff --git a/src/main.h b/src/main.h index 396e12cd..310fd276 100644 Binary files a/src/main.h and b/src/main.h differ diff --git a/src/resource.h b/src/resource.h index 9b070847..f20b28b4 100644 --- a/src/resource.h +++ b/src/resource.h @@ -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 diff --git a/src/resource.rc b/src/resource.rc index c0bc3f69..5aa9098f 100644 Binary files a/src/resource.rc and b/src/resource.rc differ