feat: transfer as organization repo

This commit is contained in:
shinya
2025-08-07 00:02:52 +08:00
parent 87463f343c
commit d3f5fe40af
8 changed files with 14 additions and 14 deletions

View File

@@ -159,6 +159,6 @@ jobs:
- name: Refresh VERSION.txt cache
run: |
echo "Refreshing VERSION.txt cache..."
curl -s https://purge.jsdelivr.net/gh/senshinya/moontv/VERSION.txt
curl -s https://purge.jsdelivr.net/gh/LunaTechLab/moontv/VERSION.txt
echo ""
echo "VERSION.txt cache refreshed successfully"

View File

@@ -25,7 +25,7 @@ jobs:
id: sync
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
with:
upstream_sync_repo: senshinya/MoonTV
upstream_sync_repo: LunaTechLab/MoonTV
upstream_sync_branch: main
target_sync_branch: main
target_repo_token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2025 senshinya
Copyright (c) 2025 LunaTechLab
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -132,11 +132,11 @@
```bash
# 拉取预构建镜像
docker pull ghcr.io/senshinya/moontv:latest
docker pull ghcr.io/LunaTechLab/moontv:latest
# 运行容器
# -d: 后台运行 -p: 映射端口 3000 -> 3000
docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/senshinya/moontv:latest
docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/LunaTechLab/moontv:latest
```
访问 `http://服务器 IP:3000` 即可。(需自行到服务器控制台放通 `3000` 端口)
@@ -150,7 +150,7 @@ docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/se
```yaml
services:
moontv-core:
image: ghcr.io/senshinya/moontv:latest
image: ghcr.io/LunaTechLab/moontv:latest
container_name: moontv-core
restart: unless-stopped
ports:
@@ -167,7 +167,7 @@ services:
```yaml
services:
moontv-core:
image: ghcr.io/senshinya/moontv:latest
image: ghcr.io/LunaTechLab/moontv:latest
container_name: moontv-core
restart: unless-stopped
ports:
@@ -331,4 +331,4 @@ MoonTV 支持标准的苹果 CMS V10 API 格式。
## Star 趋势
[![Stargazers over time](https://starchart.cc/senshinya/MoonTV.svg?variant=adaptive)](https://starchart.cc/senshinya/MoonTV)
[![Stargazers over time](https://starchart.cc/LunaTechLab/MoonTV.svg?variant=adaptive)](https://starchart.cc/LunaTechLab/MoonTV)

View File

@@ -1 +1 @@
20250806193618
20250807000252

View File

@@ -34,7 +34,7 @@ function VersionDisplay() {
return (
<button
onClick={() =>
window.open('https://github.com/senshinya/MoonTV', '_blank')
window.open('https://github.com/LunaTechLab/MoonTV', '_blank')
}
className='absolute bottom-4 left-1/2 transform -translate-x-1/2 flex items-center gap-2 text-xs text-gray-500 dark:text-gray-400 transition-colors cursor-pointer'
>

View File

@@ -403,7 +403,7 @@ export const UserMenu: React.FC = () => {
{/* 版本信息 */}
<button
onClick={() =>
window.open('https://github.com/senshinya/MoonTV', '_blank')
window.open('https://github.com/LunaTechLab/MoonTV', '_blank')
}
className='w-full px-3 py-2 text-center flex items-center justify-center text-gray-500 dark:text-gray-400 hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors text-xs'
>

View File

@@ -2,7 +2,7 @@
'use client';
const CURRENT_VERSION = '20250806193618';
const CURRENT_VERSION = '20250807000252';
// 版本检查结果枚举
export enum UpdateStatus {
@@ -13,8 +13,8 @@ export enum UpdateStatus {
// 远程版本检查URL配置
const VERSION_CHECK_URLS = [
'https://cdn.jsdelivr.net/gh/senshinya/moontv/VERSION.txt',
'https://raw.githubusercontent.com/senshinya/MoonTV/main/VERSION.txt',
'https://cdn.jsdelivr.net/gh/LunaTechLab/moontv/VERSION.txt',
'https://raw.githubusercontent.com/LunaTechLab/MoonTV/main/VERSION.txt',
];
/**