Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export CLASH_AUTO_UPDATE_SUBSCRIPTIONS="true"
export MIHOMO_VERSION="v1.19.23"
export CLASH_VERSION="v1.18.0"
export YQ_VERSION="v4.52.4"
export SUBCONVERTER_VERSION="v0.9.0"
export SUBCONVERTER_VERSION="v0.9.9"

# 内置运行依赖(resources/bin),设为 false 可强制跳过内置文件并联网下载
export CLASH_BUNDLED_ASSET_ENABLED="true"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ CLASH_SUBSCRIPTION_URL=https://example.com/sub
MIHOMO_VERSION=latest
CLASH_VERSION=latest
YQ_VERSION=v4.44.3
SUBCONVERTER_VERSION=v0.9.0
SUBCONVERTER_VERSION=v0.9.9
MIHOMO_DOWNLOAD_BASE=https://github.com/MetaCubeX/mihomo/releases/download
CLASH_DOWNLOAD_BASE=https://github.com/WindSpiritSR/clash/releases/download
CLASH_BUNDLED_ASSET_ENABLED=true
Expand Down Expand Up @@ -492,7 +492,7 @@ chmod +x /etc/rc.local

- [clash](https://clash.wiki/)
- [mihomo](https://github.com/MetaCubeX/mihomo)
- [subconverter](https://github.com/tindy2013/subconverter)
- [subconverter](https://github.com/asdlokj1qpi233/subconverter)
- [zashboard](https://github.com/Zephyruso/zashboard)

# 常见问题
Expand Down
2 changes: 1 addition & 1 deletion scripts/core/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

DEFAULT_MIHOMO_VERSION="${MIHOMO_VERSION:-v1.19.23}"
DEFAULT_CLASH_VERSION="${CLASH_VERSION:-v1.18.0}"
DEFAULT_SUBCONVERTER_VERSION="${SUBCONVERTER_VERSION:-v0.9.0}"
DEFAULT_SUBCONVERTER_VERSION="${SUBCONVERTER_VERSION:-v0.9.9}"
DEFAULT_YQ_VERSION="${YQ_VERSION:-v4.52.4}"

log() { printf '%s\n' "$*"; }
Expand Down
2 changes: 1 addition & 1 deletion scripts/core/runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ resolve_subconverter() {
*) die "暂不支持的 subconverter 架构:$arch" ;;
esac

url="https://github.com/tindy2013/subconverter/releases/download/${version}/${file}"
url="https://github.com/asdlokj1qpi233/subconverter/releases/download/${version}/${file}"
tmp_dir="$(mktemp -d)"
tmp_file="$tmp_dir/$file"
extract_dir="$tmp_dir/extract"
Expand Down
Loading