Merge pull request #7460 from stangri/master-luci-app-adblock-fast

luci-app-adblock-fast: catch up to snapshots version
This commit is contained in:
Stan Grishin 2024-12-06 18:12:24 -08:00 committed by GitHub
commit c14ac759be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -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/

View File

@ -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"],