Skip to content

Commit

Permalink
luci-app-adblock-fast: catch up to snapshots version
Browse files Browse the repository at this point in the history
Signed-off-by: Stan Grishin <stangri@melmac.ca>
  • Loading branch information
stangri committed Dec 6, 2024
1 parent 276fef8 commit 66c0c58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion applications/luci-app-adblock-fast/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PKG_NAME:=luci-app-adblock-fast
PKG_LICENSE:=AGPL-3.0-or-later
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
PKG_VERSION:=1.1.2
PKG_RELEASE:=16
PKG_RELEASE:=18

LUCI_TITLE:=AdBlock-Fast Web UI
LUCI_URL:=https://github.com/stangri/luci-app-adblock-fast/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,31 @@ var pkg = {
},
};

const getFileUrlFilesizes = rpc.declare({
var getFileUrlFilesizes = rpc.declare({
object: "luci." + pkg.Name,
method: "getFileUrlFilesizes",
params: ["name", "url"],
});

const getInitList = rpc.declare({
var getInitList = rpc.declare({
object: "luci." + pkg.Name,
method: "getInitList",
params: ["name"],
});

const getInitStatus = rpc.declare({
var getInitStatus = rpc.declare({
object: "luci." + pkg.Name,
method: "getInitStatus",
params: ["name"],
});

const getPlatformSupport = rpc.declare({
var getPlatformSupport = rpc.declare({
object: "luci." + pkg.Name,
method: "getPlatformSupport",
params: ["name"],
});

const _setInitAction = rpc.declare({
var _setInitAction = rpc.declare({
object: "luci." + pkg.Name,
method: "setInitAction",
params: ["name", "action"],
Expand Down

0 comments on commit 66c0c58

Please sign in to comment.