diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf97b2f..91292cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +v1.4.3 (27 March 2017) ++ added provider information into the log/notifications ++ added displaying error messages on filters configuration via tray popup +- fixed link processing in settings window +- cosmetic changes about debug error messages +- removed "nlatunicast" flag from loopback permissions +- updated blocklist +- code cleanup + v1.4.2 (19 February 2017) + added hints to rules pages - fixed filter creation for nonexistent apps (critical) diff --git a/bin/History.txt b/bin/History.txt index bcf97b2f..91292cd2 100644 --- a/bin/History.txt +++ b/bin/History.txt @@ -1,3 +1,12 @@ +v1.4.3 (27 March 2017) ++ added provider information into the log/notifications ++ added displaying error messages on filters configuration via tray popup +- fixed link processing in settings window +- cosmetic changes about debug error messages +- removed "nlatunicast" flag from loopback permissions +- updated blocklist +- code cleanup + v1.4.2 (19 February 2017) + added hints to rules pages - fixed filter creation for nonexistent apps (critical) diff --git a/bin/i18n/!example.txt b/bin/i18n/!example.txt index 3ba1de5a..09fd0d72 100644 Binary files a/bin/i18n/!example.txt and b/bin/i18n/!example.txt differ diff --git a/bin/i18n/Brazilian Portuguese.ini b/bin/i18n/Brazilian Portuguese.ini index a0dd1cdb..2111da71 100644 Binary files a/bin/i18n/Brazilian Portuguese.ini and b/bin/i18n/Brazilian Portuguese.ini differ diff --git a/bin/i18n/Farsi.ini b/bin/i18n/Farsi.ini index 920e1671..e0c44c4a 100644 Binary files a/bin/i18n/Farsi.ini and b/bin/i18n/Farsi.ini differ diff --git a/bin/i18n/French.ini b/bin/i18n/French.ini index ae697d69..a810bc45 100644 Binary files a/bin/i18n/French.ini and b/bin/i18n/French.ini differ diff --git a/bin/i18n/Korean.ini b/bin/i18n/Korean.ini index 624ff969..d8a2e9db 100644 Binary files a/bin/i18n/Korean.ini and b/bin/i18n/Korean.ini differ diff --git a/bin/i18n/Polish.ini b/bin/i18n/Polish.ini index 75e49456..41e0f7db 100644 Binary files a/bin/i18n/Polish.ini and b/bin/i18n/Polish.ini differ diff --git a/bin/i18n/Russian.ini b/bin/i18n/Russian.ini index df1e2008..50a2a780 100644 Binary files a/bin/i18n/Russian.ini and b/bin/i18n/Russian.ini differ diff --git a/bin/i18n/Simplified Chinese.ini b/bin/i18n/Simplified Chinese.ini index b7591141..30ffd980 100644 Binary files a/bin/i18n/Simplified Chinese.ini and b/bin/i18n/Simplified Chinese.ini differ diff --git a/bin/i18n/Spanish.ini b/bin/i18n/Spanish.ini index 679a688d..d578e28d 100644 Binary files a/bin/i18n/Spanish.ini and b/bin/i18n/Spanish.ini differ diff --git a/src/main.cpp b/src/main.cpp index c926055c..ced75eb5 100644 Binary files a/src/main.cpp and b/src/main.cpp differ diff --git a/src/main.h b/src/main.h index f32a4996..132f7174 100644 Binary files a/src/main.h and b/src/main.h differ diff --git a/src/resource.h b/src/resource.h index b04d9b09..4415e404 100644 --- a/src/resource.h +++ b/src/resource.h @@ -261,18 +261,19 @@ #define IDS_DATE 7009 #define IDS_FILEPATH 7010 #define IDS_ADDRESS 7011 +#define IDS_PROVIDER 7012 -#define IDS_DIRECTION_1 7012 -#define IDS_DIRECTION_2 7013 -#define IDS_DIRECTION_3 7014 +#define IDS_DIRECTION_1 7013 +#define IDS_DIRECTION_2 7014 +#define IDS_DIRECTION_3 7015 -#define IDS_ACTION_1 7015 -#define IDS_ACTION_2 7016 +#define IDS_ACTION_1 7016 +#define IDS_ACTION_2 7017 -#define IDS_RULES_LINKS 7017 -#define IDS_RULES_HELP 7018 +#define IDS_RULES_LINKS 7018 +#define IDS_RULES_HELP 7019 -#define IDS_ENABLED_CHK 7019 +#define IDS_ENABLED_CHK 7020 #define IDS_SETTINGS_1 8000 #define IDS_SETTINGS_3 8001 @@ -336,9 +337,11 @@ #define IDS_STATUS_TOTAL 10004 #define IDS_STATUS_EMPTY 10005 -#define IDS_STATUS_EMPTY2 10006 -#define IDS_STATUS_NOPRIVILEGES 10008 +#define IDS_STATUS_NOPRIVILEGES 10006 +#define IDS_STATUS_FILTERSERROR 10007 + +#define IDS_STATUS_DEBUG 10008 // Icons #define IDI_MAIN 100 diff --git a/src/resource.rc b/src/resource.rc index c5a949ff..c23ea5c4 100644 Binary files a/src/resource.rc and b/src/resource.rc differ