From: Dirk Brenken Date: Wed, 28 Jan 2026 19:15:55 +0000 (+0100) Subject: luci-app-adblock: sync with adblock 4.5.0-4 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=30341aeba9c1a55fdc04a24e255b22f514018900;p=project%2Fluci.git luci-app-adblock: sync with adblock 4.5.0-4 Signed-off-by: Dirk Brenken --- diff --git a/applications/luci-app-adblock/Makefile b/applications/luci-app-adblock/Makefile index 264b2c9549..a81ca23c82 100644 --- a/applications/luci-app-adblock/Makefile +++ b/applications/luci-app-adblock/Makefile @@ -7,7 +7,7 @@ LUCI_TITLE:=LuCI support for Adblock LUCI_DEPENDS:=+luci-base +adblock PKG_VERSION:=4.5.0 -PKG_RELEASE:=2 +PKG_RELEASE:=4 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=Dirk Brenken diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js index e79dccfb48..8302a5ce99 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js @@ -317,6 +317,7 @@ return view.extend({ E('th', { 'class': 'th' }, _('Date')), E('th', { 'class': 'th' }, _('Time')), E('th', { 'class': 'th' }, _('Client')), + E('th', { 'class': 'th' }, _('Interface')), E('th', { 'class': 'th' }, _('Type')), E('th', { 'class': 'th' }, _('Domain')), E('th', { 'class': 'th' }, _('Answer')), @@ -352,6 +353,7 @@ return view.extend({ content[0].requests[i].date, content[0].requests[i].time, content[0].requests[i].client, + content[0].requests[i].iface, content[0].requests[i].type, '' + content[0].requests[i].domain + '', content[0].requests[i].rc, @@ -514,7 +516,6 @@ return view.extend({ window.addEventListener('resize', function() { drawPie(rot); }); - const tooltip = document.getElementById('dnsPieTooltip'); canvas.addEventListener('mousemove', function(ev) { const rect = canvas.getBoundingClientRect();