diff options
author | Dirk Brenken <dev@brenken.org> | 2018-11-10 17:39:08 +0100 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2018-11-10 17:39:08 +0100 |
commit | ff139131a73f27ec57e0865ca0d3ad965f382577 (patch) | |
tree | 4f68265357e74d4d29bfa89a352e93061f24fff6 /net | |
parent | d785b15857284e103e3252c76b4be6a6853b47ac (diff) |
adblock: fix adguard source
* fix regex for adguard blocklist source
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/adblock/Makefile | 2 | ||||
-rw-r--r-- | net/adblock/files/adblock.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/adblock/Makefile b/net/adblock/Makefile index 88b6e5d75..f942af40c 100644 --- a/net/adblock/Makefile +++ b/net/adblock/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=adblock PKG_VERSION:=3.5.5 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_LICENSE:=GPL-3.0+ PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org> diff --git a/net/adblock/files/adblock.conf b/net/adblock/files/adblock.conf index c68b82cb6..49ca1bce7 100644 --- a/net/adblock/files/adblock.conf +++ b/net/adblock/files/adblock.conf @@ -22,7 +22,7 @@ config source 'adaway' config source 'adguard' option adb_src 'https://filters.adtidy.org/windows/filters/15.txt' - option adb_src_rset 'BEGIN{FS=\"[/|^|\r]\"}/^\|\|([[:alnum:]_-]+\.)+[[:alpha:]]+([\/\^\r]|$)/{print tolower(\$3)}' + option adb_src_rset 'BEGIN{FS=\"[/|^|\r]\"}/^\|\|([[:alnum:]_-]+\.)+[[:alpha:]]+[\/\^\r]+$/{print tolower(\$3)}' option adb_src_desc 'combined adguard dns filter list, frequent updates, approx. 17.000 entries' option enabled '0' |