feat: 更新发布配置和文档,修改 Docker 镜像地址为 katelya77/KatelyaTV

This commit is contained in:
katelya
2025-09-02 15:16:51 +08:00
parent d410bde28c
commit d268fa7dd5
6 changed files with 109 additions and 256 deletions
+3 -3
View File
@@ -11,14 +11,14 @@ export enum UpdateStatus {
FETCH_FAILED = 'fetch_failed', // 获取失败
}
// 远程版本检查URL配置(支持环境变量覆盖,并保留 MoonTV 上游作为后备
// 远程版本检查URL配置(支持环境变量覆盖)
const ENV_PRIMARY = process.env.NEXT_PUBLIC_VERSION_URL_PRIMARY;
const ENV_BACKUP = process.env.NEXT_PUBLIC_VERSION_URL_BACKUP;
const VERSION_CHECK_URLS = [
ENV_PRIMARY,
ENV_BACKUP,
'https://ghfast.top/raw.githubusercontent.com/senshinya/MoonTV/main/VERSION.txt',
'https://raw.githubusercontent.com/senshinya/MoonTV/main/VERSION.txt',
'https://ghfast.top/raw.githubusercontent.com/katelya77/KatelyaTV/main/VERSION.txt',
'https://raw.githubusercontent.com/katelya77/KatelyaTV/main/VERSION.txt',
].filter(Boolean) as string[];
/**