Skip to content

Commit

Permalink
adblock: update 4.1.5-4
Browse files Browse the repository at this point in the history
* fixed broken oisd regex

Signed-off-by: Dirk Brenken <[email protected]>
  • Loading branch information
dibdot committed Oct 24, 2022
1 parent 17badae commit e90b4c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion net/adblock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=adblock
PKG_VERSION:=4.1.5
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_LICENSE:=GPL-3.0-or-later
PKG_MAINTAINER:=Dirk Brenken <[email protected]>

Expand Down
6 changes: 3 additions & 3 deletions net/adblock/files/adblock.sources
Original file line number Diff line number Diff line change
Expand Up @@ -134,21 +134,21 @@
},
"oisd_basic": {
"url": "https://raw.githubusercontent.com/sjhgvr/oisd/main/dblw_basic.txt",
"rule": "/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
"rule": "BEGIN{FS=\"\\\\*.\"}/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($2)}",
"size": "L",
"focus": "general",
"descurl": "https://oisd.nl"
},
"oisd_nsfw": {
"url": "https://raw.githubusercontent.com/sjhgvr/oisd/main/dblw_nsfw.txt",
"rule": "/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
"rule": "BEGIN{FS=\"\\\\*.\"}/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($2)}",
"size": "XL",
"focus": "general",
"descurl": "https://oisd.nl"
},
"oisd_full": {
"url": "https://raw.githubusercontent.com/sjhgvr/oisd/main/dblw_full.txt",
"rule": "/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($1)}",
"rule": "BEGIN{FS=\"\\\\*.\"}/^\\*\\.([[:alnum:]_-]{1,63}\\.)+[[:alpha:]]+([[:space:]]|$)/{print tolower($2)}",
"size": "XXL",
"focus": "general",
"descurl": "https://oisd.nl"
Expand Down

0 comments on commit e90b4c0

Please sign in to comment.