mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-09-12 03:14:28 +08:00
update 2026-08-04 18:31:57
This commit is contained in:
+2
-2
@@ -5,12 +5,12 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=dae
|
||||
PKG_VERSION:=2026.08.03
|
||||
PKG_VERSION:=2026.08.04
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=28872b0b421d9ebfc17b6279d190dedb70c51904
|
||||
PKG_SOURCE_VERSION:=1ddfd8fbf4e1da5b9a23eb3ce631df95fc23a33e
|
||||
PKG_SOURCE_URL:=https://github.com/olicesx/dae.git
|
||||
PKG_MIRROR_HASH:=skip
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ const methods = {
|
||||
|
||||
const protocol = api_tls_listen ? 'https' : 'http';
|
||||
|
||||
const url = api_listen + path;
|
||||
const url = (api_tls_listen ?? api_listen) + path;
|
||||
|
||||
const process = popen(`curl --proto-default '${protocol}' --insecure --request '${method}' --oauth2-bearer '${api_secret}' --url-query '${query}' --data '${body}' '${url}'`);
|
||||
if (process) {
|
||||
|
||||
@@ -475,7 +475,10 @@ ln_run() {
|
||||
[ -x "${file_func}" ] || echolog " - $(readlink ${file_func}) 没有执行权限,无法启动:${file_func} $*"
|
||||
fi
|
||||
#echo "${file_func} $*" >&2
|
||||
[ -n "${file_func}" ] || echolog " - 找不到 ${ln_name},无法启动..."
|
||||
[ -n "${file_func}" ] || {
|
||||
echolog " - 找不到 ${ln_name},无法启动..."
|
||||
return 1
|
||||
}
|
||||
[ "${output}" != "/dev/null" ] && [ -n "$(echo "${output}" | grep -E "default|SOCKS_")" ] && [ "${ln_name}" != "chinadns-ng" ] && {
|
||||
local persist_log_path=$(config_t_get global persist_log_path)
|
||||
local sys_log=$(config_t_get global sys_log "0")
|
||||
|
||||
@@ -388,7 +388,10 @@ ln_run() {
|
||||
[ -x "${file_func}" ] || log 1 "$(i18n "%s does not have execute permissions and cannot be started: %s %s" "$(readlink ${file_func})" "${file_func}" "$*")"
|
||||
fi
|
||||
#echo "${file_func} $*" >&2
|
||||
[ -n "${file_func}" ] || log 1 "$(i18n "%s not found, unable to start..." "${ln_name}")"
|
||||
[ -n "${file_func}" ] || {
|
||||
log 1 "$(i18n "%s not found, unable to start..." "${ln_name}")"
|
||||
return 1
|
||||
}
|
||||
|
||||
[ "${queue_run}" == "1" ] && {
|
||||
mkdir -p $TMP_PROCESS_LIST_PATH
|
||||
|
||||
@@ -21,13 +21,13 @@ define Download/geoip
|
||||
HASH:=b71d1999439dde2de2d2b6844a2befa50c50211ff739785c005ca7c230a17d6a
|
||||
endef
|
||||
|
||||
GEOSITE_VER:=20260801163240
|
||||
GEOSITE_VER:=20260804035612
|
||||
GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER)
|
||||
define Download/geosite
|
||||
URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/
|
||||
URL_FILE:=dlc.dat
|
||||
FILE:=$(GEOSITE_FILE)
|
||||
HASH:=d0288dd63ac15195655766da1b49925d05f001aaa30783a5d51c805c4b989fbe
|
||||
HASH:=9e777df11bd5db511459c8cd93be34998ab136f9443f4fc52bcecb081582ad64
|
||||
endef
|
||||
|
||||
GEOSITE_IRAN_VER:=202608030119
|
||||
|
||||
Reference in New Issue
Block a user