🔥 Sync 2026-04-25 08:30:25

This commit is contained in:
github-actions[bot] 2026-04-25 08:30:25 +08:00
parent 4295b1ca19
commit 80f09ddc21
6 changed files with 11 additions and 8 deletions

View File

@ -9,7 +9,7 @@ curl = "/usr/bin/curl"
curl_args = {"-skfL", "--connect-timeout 3", "--retry 3"}
wget = "/usr/bin/wget"
wget_args = {"--quiet", "--connect-timeout=3", "--timeout=6", "--tries=2"}
command_timeout = 60
command_timeout = 90
LEDE_BOARD = nil
DISTRIB_TARGET = nil

View File

@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-passwall
PKG_VERSION:=26.4.15
PKG_RELEASE:=95
PKG_RELEASE:=96
PKG_PO_VERSION:=$(PKG_VERSION)
PKG_CONFIG_DEPENDS:= \

View File

@ -228,7 +228,7 @@ local appname = api.appname
};
})();
document.addEventListener("DOMContentLoaded", function () {
document.addEventListener("DOMContentLoaded", () => setTimeout(() => {
const hiddenSelect = document.getElementById("cbid.<%=appname%>.<%=self.global_cfgid%>.tcp_node");
let o_val = hiddenSelect.value
const o_hasItem = shunt_list.find(element => element.id == o_val);
@ -268,6 +268,6 @@ local appname = api.appname
shunt_taboption.appendChild(shunt_option_list);
}
}
});
}, 100));
//]]>
</script>

View File

@ -53,7 +53,7 @@
}
}
}
document.addEventListener("DOMContentLoaded", function () {
document.addEventListener("DOMContentLoaded", () => setTimeout(() => {
refresh_depends();
const table_dom = document.getElementById("cbi-passwall-shunt_option_list");
if (table_dom) {
@ -71,6 +71,6 @@
}
}
}
});
}, 100));
//]]>
</script>

View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=teleproxy
PKG_VERSION:=4.11.0
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_MAINTAINER:=Kosntantine Shevlakov <shevlakov@132lan.ru>
PKG_LICENSE:=GPLv2
@ -18,6 +18,8 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
include $(INCLUDE_DIR)/package.mk
MAKE_VARS += EXTRA_VERSION=$(PKG_VERSION)
define Package/$(PKG_NAME)
SUBMENU:=Web Servers/Proxies
SECTION:=net

View File

@ -1,7 +1,8 @@
#!/bin/sh
# generate secret key
if uci -q get teleproxy.default.secret >/dev/null || [ -z "$(uci get teleproxy.default.secret)" ]; then
SECRET=$(dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -v -e '16/1 "%02x"')
#SECRET=$(dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -v -e '16/1 "%02x"')
SECRET=$(/usr/bin/teleproxy generate-secret)
uci set teleproxy.default.secret="$SECRET"
uci commit teleproxy
fi