mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-03-06 20:17:32 +08:00
feat: transfer as organization repo
This commit is contained in:
2
.github/workflows/docker-image.yml
vendored
2
.github/workflows/docker-image.yml
vendored
@@ -159,6 +159,6 @@ jobs:
|
|||||||
- name: Refresh VERSION.txt cache
|
- name: Refresh VERSION.txt cache
|
||||||
run: |
|
run: |
|
||||||
echo "Refreshing VERSION.txt cache..."
|
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 ""
|
||||||
echo "VERSION.txt cache refreshed successfully"
|
echo "VERSION.txt cache refreshed successfully"
|
||||||
|
|||||||
2
.github/workflows/sync.yml
vendored
2
.github/workflows/sync.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
id: sync
|
id: sync
|
||||||
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
|
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
|
||||||
with:
|
with:
|
||||||
upstream_sync_repo: senshinya/MoonTV
|
upstream_sync_repo: LunaTechLab/MoonTV
|
||||||
upstream_sync_branch: main
|
upstream_sync_branch: main
|
||||||
target_sync_branch: main
|
target_sync_branch: main
|
||||||
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
|
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2025 senshinya
|
Copyright (c) 2025 LunaTechLab
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -132,11 +132,11 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 拉取预构建镜像
|
# 拉取预构建镜像
|
||||||
docker pull ghcr.io/senshinya/moontv:latest
|
docker pull ghcr.io/LunaTechLab/moontv:latest
|
||||||
|
|
||||||
# 运行容器
|
# 运行容器
|
||||||
# -d: 后台运行 -p: 映射端口 3000 -> 3000
|
# -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` 端口)
|
访问 `http://服务器 IP:3000` 即可。(需自行到服务器控制台放通 `3000` 端口)
|
||||||
@@ -150,7 +150,7 @@ docker run -d --name moontv -p 3000:3000 --env PASSWORD=your_password ghcr.io/se
|
|||||||
```yaml
|
```yaml
|
||||||
services:
|
services:
|
||||||
moontv-core:
|
moontv-core:
|
||||||
image: ghcr.io/senshinya/moontv:latest
|
image: ghcr.io/LunaTechLab/moontv:latest
|
||||||
container_name: moontv-core
|
container_name: moontv-core
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@@ -167,7 +167,7 @@ services:
|
|||||||
```yaml
|
```yaml
|
||||||
services:
|
services:
|
||||||
moontv-core:
|
moontv-core:
|
||||||
image: ghcr.io/senshinya/moontv:latest
|
image: ghcr.io/LunaTechLab/moontv:latest
|
||||||
container_name: moontv-core
|
container_name: moontv-core
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@@ -331,4 +331,4 @@ MoonTV 支持标准的苹果 CMS V10 API 格式。
|
|||||||
|
|
||||||
## Star 趋势
|
## Star 趋势
|
||||||
|
|
||||||
[](https://starchart.cc/senshinya/MoonTV)
|
[](https://starchart.cc/LunaTechLab/MoonTV)
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
20250806193618
|
20250807000252
|
||||||
@@ -34,7 +34,7 @@ function VersionDisplay() {
|
|||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
onClick={() =>
|
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'
|
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'
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -403,7 +403,7 @@ export const UserMenu: React.FC = () => {
|
|||||||
{/* 版本信息 */}
|
{/* 版本信息 */}
|
||||||
<button
|
<button
|
||||||
onClick={() =>
|
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'
|
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'
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
const CURRENT_VERSION = '20250806193618';
|
const CURRENT_VERSION = '20250807000252';
|
||||||
|
|
||||||
// 版本检查结果枚举
|
// 版本检查结果枚举
|
||||||
export enum UpdateStatus {
|
export enum UpdateStatus {
|
||||||
@@ -13,8 +13,8 @@ export enum UpdateStatus {
|
|||||||
|
|
||||||
// 远程版本检查URL配置
|
// 远程版本检查URL配置
|
||||||
const VERSION_CHECK_URLS = [
|
const VERSION_CHECK_URLS = [
|
||||||
'https://cdn.jsdelivr.net/gh/senshinya/moontv/VERSION.txt',
|
'https://cdn.jsdelivr.net/gh/LunaTechLab/moontv/VERSION.txt',
|
||||||
'https://raw.githubusercontent.com/senshinya/MoonTV/main/VERSION.txt',
|
'https://raw.githubusercontent.com/LunaTechLab/MoonTV/main/VERSION.txt',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user