Skip to content

Commit 30341ae

Browse files
committed
luci-app-adblock: sync with adblock 4.5.0-4
Signed-off-by: Dirk Brenken <dev@brenken.org>
1 parent fc600fc commit 30341ae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

applications/luci-app-adblock/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LUCI_TITLE:=LuCI support for Adblock
77
LUCI_DEPENDS:=+luci-base +adblock
88

99
PKG_VERSION:=4.5.0
10-
PKG_RELEASE:=2
10+
PKG_RELEASE:=4
1111
PKG_LICENSE:=Apache-2.0
1212
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
1313

applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ return view.extend({
317317
E('th', { 'class': 'th' }, _('Date')),
318318
E('th', { 'class': 'th' }, _('Time')),
319319
E('th', { 'class': 'th' }, _('Client')),
320+
E('th', { 'class': 'th' }, _('Interface')),
320321
E('th', { 'class': 'th' }, _('Type')),
321322
E('th', { 'class': 'th' }, _('Domain')),
322323
E('th', { 'class': 'th' }, _('Answer')),
@@ -352,6 +353,7 @@ return view.extend({
352353
content[0].requests[i].date,
353354
content[0].requests[i].time,
354355
content[0].requests[i].client,
356+
content[0].requests[i].iface,
355357
content[0].requests[i].type,
356358
'<a href="https://ip-api.com/#' + encodeURIComponent(content[0].requests[i].domain) + '" target="_blank" rel="noreferrer noopener" title="Domain Lookup">' + content[0].requests[i].domain + '</a>',
357359
content[0].requests[i].rc,
@@ -514,7 +516,6 @@ return view.extend({
514516
window.addEventListener('resize', function() {
515517
drawPie(rot);
516518
});
517-
518519
const tooltip = document.getElementById('dnsPieTooltip');
519520
canvas.addEventListener('mousemove', function(ev) {
520521
const rect = canvas.getBoundingClientRect();

0 commit comments

Comments
 (0)