mirror of
https://github.com/timeshiftsauce/CeruMusic.git
synced 2025-11-25 11:29:42 +08:00
feat:修改了软件下载源
This commit is contained in:
128
docs/alist-config.md
Normal file
128
docs/alist-config.md
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
# Alist 下载配置说明
|
||||||
|
|
||||||
|
## 概述
|
||||||
|
|
||||||
|
项目已从 GitHub 下载方式切换到 Alist API 下载方式,包括:
|
||||||
|
- 桌面应用的自动更新功能 (`src/main/autoUpdate.ts`)
|
||||||
|
- 官方网站的下载功能 (`website/script.js`)
|
||||||
|
|
||||||
|
## 配置步骤
|
||||||
|
|
||||||
|
### 1. 修改 Alist 域名
|
||||||
|
|
||||||
|
#### 桌面应用配置
|
||||||
|
在 `src/main/autoUpdate.ts` 文件中,Alist 域名已配置为:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244';
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 网站配置
|
||||||
|
在 `website/script.js` 文件中,Alist 域名已配置为:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244';
|
||||||
|
```
|
||||||
|
|
||||||
|
如需修改域名,请同时更新这两个文件中的 `ALIST_BASE_URL` 配置。
|
||||||
|
|
||||||
|
### 2. 认证信息
|
||||||
|
|
||||||
|
已配置的认证信息:
|
||||||
|
- 用户名: `ceruupdata`
|
||||||
|
- 密码: `123456`
|
||||||
|
|
||||||
|
### 3. 文件路径格式
|
||||||
|
|
||||||
|
文件在 Alist 中的路径格式为:`/{version}/{文件名}`
|
||||||
|
|
||||||
|
例如:
|
||||||
|
- 版本 `v1.0.0` 的安装包 `app-setup.exe` 路径为:`/v1.0.0/app-setup.exe`
|
||||||
|
|
||||||
|
## 工作原理
|
||||||
|
|
||||||
|
### 桌面应用自动更新
|
||||||
|
1. **认证**: 使用配置的用户名和密码向 Alist API 获取认证 token
|
||||||
|
2. **获取文件信息**: 使用 token 调用 `/api/fs/get` 接口获取文件信息和签名
|
||||||
|
3. **下载**: 使用带签名的直接下载链接下载文件
|
||||||
|
4. **备用方案**: 如果 Alist 失败,自动回退到原始 URL 下载
|
||||||
|
|
||||||
|
### 网站下载功能
|
||||||
|
1. **获取版本列表**: 调用 `/api/fs/list` 获取根目录下的版本文件夹
|
||||||
|
2. **获取文件列表**: 获取最新版本文件夹中的所有文件
|
||||||
|
3. **平台匹配**: 根据用户平台自动匹配对应的安装包文件
|
||||||
|
4. **生成下载链接**: 获取文件的直接下载链接
|
||||||
|
5. **备用方案**: 如果 Alist 失败,自动回退到 GitHub API
|
||||||
|
|
||||||
|
## API 接口
|
||||||
|
|
||||||
|
### 认证接口
|
||||||
|
```
|
||||||
|
POST /api/auth/login
|
||||||
|
{
|
||||||
|
"username": "ceruupdata",
|
||||||
|
"password": "123456"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 获取文件信息接口
|
||||||
|
```
|
||||||
|
POST /api/fs/get
|
||||||
|
Headers: Authorization: {token} # 注意:直接使用 token,不需要 "Bearer " 前缀
|
||||||
|
{
|
||||||
|
"path": "/{version}/{fileName}"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 获取文件列表接口
|
||||||
|
```
|
||||||
|
POST /api/fs/list
|
||||||
|
Headers: Authorization: {token} # 注意:直接使用 token,不需要 "Bearer " 前缀
|
||||||
|
{
|
||||||
|
"path": "/",
|
||||||
|
"password": "",
|
||||||
|
"page": 1,
|
||||||
|
"per_page": 100,
|
||||||
|
"refresh": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 下载链接格式
|
||||||
|
```
|
||||||
|
{ALIST_BASE_URL}/d/{filePath}?sign={sign}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 测试方法
|
||||||
|
|
||||||
|
项目包含了一个测试脚本来验证 Alist 连接:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
node scripts/test-alist.js
|
||||||
|
```
|
||||||
|
|
||||||
|
该脚本会:
|
||||||
|
1. 测试服务器连通性
|
||||||
|
2. 测试用户认证
|
||||||
|
3. 测试文件列表获取
|
||||||
|
4. 测试文件信息获取
|
||||||
|
|
||||||
|
## 备用机制
|
||||||
|
|
||||||
|
两个组件都实现了备用机制:
|
||||||
|
|
||||||
|
### 桌面应用
|
||||||
|
- 主要:使用 Alist API 下载
|
||||||
|
- 备用:如果 Alist 失败,使用原始 URL 下载
|
||||||
|
|
||||||
|
### 网站
|
||||||
|
- 主要:使用 Alist API 获取版本和文件信息
|
||||||
|
- 备用:如果 Alist 失败,回退到 GitHub API
|
||||||
|
- 最终备用:跳转到 GitHub releases 页面
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
|
||||||
|
1. 确保 Alist 服务器可以正常访问
|
||||||
|
2. 确保配置的用户名和密码有权限访问相应的文件路径
|
||||||
|
3. 文件必须按照指定的路径格式存放在 Alist 中
|
||||||
|
4. 网站会自动检测用户操作系统并推荐对应的下载版本
|
||||||
|
5. 所有下载都会显示文件大小信息
|
||||||
88
docs/alist-migration-summary.md
Normal file
88
docs/alist-migration-summary.md
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
# Alist 迁移完成总结
|
||||||
|
|
||||||
|
## 修改概述
|
||||||
|
|
||||||
|
项目已成功从 GitHub 下载方式迁移到 Alist API 下载方式。
|
||||||
|
|
||||||
|
## 修改的文件
|
||||||
|
|
||||||
|
### 1. 桌面应用自动更新 (`src/main/autoUpdate.ts`)
|
||||||
|
- ✅ 添加了 Alist API 配置
|
||||||
|
- ✅ 实现了 Alist 认证功能
|
||||||
|
- ✅ 实现了 Alist 文件下载功能
|
||||||
|
- ✅ 添加了备用机制(Alist 失败时回退到原始 URL)
|
||||||
|
- ✅ 修复了 Authorization 头格式(使用直接 token 而非 Bearer 格式)
|
||||||
|
|
||||||
|
### 2. 官方网站下载功能 (`website/script.js`)
|
||||||
|
- ✅ 添加了 Alist API 配置
|
||||||
|
- ✅ 实现了 Alist 认证功能
|
||||||
|
- ✅ 实现了版本列表获取功能
|
||||||
|
- ✅ 实现了文件列表获取功能
|
||||||
|
- ✅ 实现了平台文件匹配功能
|
||||||
|
- ✅ 添加了多层备用机制(Alist → GitHub API → GitHub 页面)
|
||||||
|
- ✅ 修复了 Authorization 头格式
|
||||||
|
|
||||||
|
### 3. 配置文档
|
||||||
|
- ✅ 创建了详细的配置说明 (`docs/alist-config.md`)
|
||||||
|
- ✅ 创建了迁移总结文档 (`docs/alist-migration-summary.md`)
|
||||||
|
|
||||||
|
### 4. 测试脚本
|
||||||
|
- ✅ 创建了 Alist 连接测试脚本 (`scripts/test-alist.js`)
|
||||||
|
- ✅ 创建了认证格式测试脚本 (`scripts/auth-test.js`)
|
||||||
|
|
||||||
|
## 配置信息
|
||||||
|
|
||||||
|
### Alist 服务器配置
|
||||||
|
- **服务器地址**: `http://47.96.72.224:5244`
|
||||||
|
- **用户名**: `ceruupdate`
|
||||||
|
- **密码**: `123456`
|
||||||
|
- **文件路径格式**: `/{version}/{文件名}`
|
||||||
|
|
||||||
|
### Authorization 头格式
|
||||||
|
经过测试确认,正确的格式是:
|
||||||
|
```
|
||||||
|
Authorization: {token}
|
||||||
|
```
|
||||||
|
**注意**: 不需要 "Bearer " 前缀
|
||||||
|
|
||||||
|
## 功能特性
|
||||||
|
|
||||||
|
### 桌面应用
|
||||||
|
1. **智能下载**: 优先使用 Alist API,失败时自动回退
|
||||||
|
2. **进度显示**: 支持下载进度显示和节流
|
||||||
|
3. **错误处理**: 完善的错误处理和日志记录
|
||||||
|
|
||||||
|
### 网站
|
||||||
|
1. **自动检测**: 自动检测用户操作系统并推荐对应版本
|
||||||
|
2. **版本信息**: 自动获取最新版本信息和文件大小
|
||||||
|
3. **多层备用**: Alist → GitHub API → GitHub 页面的三层备用机制
|
||||||
|
4. **用户体验**: 加载状态、成功通知、错误提示
|
||||||
|
|
||||||
|
## 测试结果
|
||||||
|
|
||||||
|
✅ **Alist 连接测试**: 通过
|
||||||
|
✅ **认证测试**: 通过
|
||||||
|
✅ **文件列表获取**: 通过
|
||||||
|
✅ **Authorization 头格式**: 已修复并验证
|
||||||
|
|
||||||
|
## 可用文件
|
||||||
|
|
||||||
|
测试显示 Alist 服务器当前包含以下文件:
|
||||||
|
- `v1.2.1/` (版本目录)
|
||||||
|
- `1111`
|
||||||
|
- `L3YxLjIuMS8tMS4yLjEtYXJtNjQtbWFjLnppcA==`
|
||||||
|
- `file2.msi`
|
||||||
|
- `file.msi`
|
||||||
|
|
||||||
|
## 后续维护
|
||||||
|
|
||||||
|
1. **添加新版本**: 在 Alist 中创建新的版本目录(如 `v1.2.2/`)
|
||||||
|
2. **上传文件**: 将对应平台的安装包上传到版本目录中
|
||||||
|
3. **文件命名**: 确保文件名包含平台标识(如 `windows`, `mac`, `linux` 等)
|
||||||
|
|
||||||
|
## 备注
|
||||||
|
|
||||||
|
- 所有修改都保持了向后兼容性
|
||||||
|
- 实现了完善的错误处理和备用机制
|
||||||
|
- 用户体验不会因为迁移而受到影响
|
||||||
|
- 可以随时回退到 GitHub 下载方式
|
||||||
55
scripts/auth-test.js
Normal file
55
scripts/auth-test.js
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
const axios = require('axios');
|
||||||
|
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244';
|
||||||
|
const ALIST_USERNAME = 'ceruupdate';
|
||||||
|
const ALIST_PASSWORD = '123456';
|
||||||
|
|
||||||
|
async function test() {
|
||||||
|
// 认证
|
||||||
|
const auth = await axios.post(`${ALIST_BASE_URL}/api/auth/login`, {
|
||||||
|
username: ALIST_USERNAME,
|
||||||
|
password: ALIST_PASSWORD
|
||||||
|
});
|
||||||
|
|
||||||
|
const token = auth.data.data.token;
|
||||||
|
console.log('Token received');
|
||||||
|
|
||||||
|
// 测试直接 token 格式
|
||||||
|
try {
|
||||||
|
const list = await axios.post(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
path: '/',
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 30,
|
||||||
|
refresh: false
|
||||||
|
}, {
|
||||||
|
headers: { 'Authorization': token }
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Direct token works:', list.data.code === 200);
|
||||||
|
if (list.data.code === 200) {
|
||||||
|
console.log('Files:', list.data.data.content.map(f => f.name));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Direct token failed');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 测试 Bearer 格式
|
||||||
|
try {
|
||||||
|
const list2 = await axios.post(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
path: '/',
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 30,
|
||||||
|
refresh: false
|
||||||
|
}, {
|
||||||
|
headers: { 'Authorization': `Bearer ${token}` }
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Bearer format works:', list2.data.code === 200);
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Bearer format failed');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
test().catch(console.error);
|
||||||
131
scripts/test-alist.js
Normal file
131
scripts/test-alist.js
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
const axios = require('axios');
|
||||||
|
|
||||||
|
// Alist API 配置
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244';
|
||||||
|
const ALIST_USERNAME = 'ceruupdate';
|
||||||
|
const ALIST_PASSWORD = '123456';
|
||||||
|
|
||||||
|
async function testAlistConnection() {
|
||||||
|
console.log('Testing Alist connection...');
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 0. 首先测试服务器是否可访问
|
||||||
|
console.log('0. Testing server accessibility...');
|
||||||
|
const pingResponse = await axios.get(`${ALIST_BASE_URL}/ping`, {
|
||||||
|
timeout: 5000
|
||||||
|
});
|
||||||
|
console.log('Server ping successful:', pingResponse.status);
|
||||||
|
|
||||||
|
// 1. 测试认证
|
||||||
|
console.log('1. Testing authentication...');
|
||||||
|
console.log(`Trying to authenticate with username: ${ALIST_USERNAME}`);
|
||||||
|
|
||||||
|
const authResponse = await axios.post(`${ALIST_BASE_URL}/api/auth/login`, {
|
||||||
|
username: ALIST_USERNAME,
|
||||||
|
password: ALIST_PASSWORD
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Auth response:', authResponse.data);
|
||||||
|
|
||||||
|
if (authResponse.data.code !== 200) {
|
||||||
|
// 尝试获取公共访问权限
|
||||||
|
console.log('Authentication failed, trying public access...');
|
||||||
|
|
||||||
|
// 尝试不使用认证直接访问文件列表
|
||||||
|
const publicListResponse = await axios.post(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
path: '/',
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 30,
|
||||||
|
refresh: false
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Public access response:', publicListResponse.data);
|
||||||
|
|
||||||
|
if (publicListResponse.data.code === 200) {
|
||||||
|
console.log('✓ Public access successful');
|
||||||
|
return; // 如果公共访问成功,就不需要认证
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(`Authentication failed: ${authResponse.data.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const token = authResponse.data.data.token;
|
||||||
|
console.log('✓ Authentication successful');
|
||||||
|
|
||||||
|
// 2. 测试文件列表
|
||||||
|
console.log('2. Testing file listing...');
|
||||||
|
const listResponse = await axios.post(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
path: '/',
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 30,
|
||||||
|
refresh: false
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Authorization': `Bearer ${token}`,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('List response:', listResponse.data);
|
||||||
|
|
||||||
|
if (listResponse.data.code === 200) {
|
||||||
|
console.log('✓ File listing successful');
|
||||||
|
console.log('Available directories/files:');
|
||||||
|
listResponse.data.data.content.forEach(item => {
|
||||||
|
console.log(` - ${item.name} (${item.is_dir ? 'directory' : 'file'})`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. 测试获取特定文件信息(如果存在版本目录)
|
||||||
|
console.log('3. Testing file info retrieval...');
|
||||||
|
try {
|
||||||
|
const fileInfoResponse = await axios.post(`${ALIST_BASE_URL}/api/fs/get`, {
|
||||||
|
path: '/v1.0.0' // 测试版本目录
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Authorization': token,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('File info response:', fileInfoResponse.data);
|
||||||
|
|
||||||
|
if (fileInfoResponse.data.code === 200) {
|
||||||
|
console.log('✓ File info retrieval successful');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log('ℹ Version directory /v1.0.0 not found (this is expected if no updates are available)');
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('\n✅ Alist connection test completed successfully!');
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('❌ Alist connection test failed:', error.message);
|
||||||
|
|
||||||
|
if (error.response) {
|
||||||
|
console.error('Response status:', error.response.status);
|
||||||
|
console.error('Response data:', error.response.data);
|
||||||
|
} else if (error.request) {
|
||||||
|
console.error('No response received. Check if the Alist server is running and accessible.');
|
||||||
|
}
|
||||||
|
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 运行测试
|
||||||
|
testAlistConnection();
|
||||||
@@ -20,6 +20,101 @@ interface UpdateInfo {
|
|||||||
const UPDATE_SERVER = 'https://update.ceru.shiqianjiang.cn';
|
const UPDATE_SERVER = 'https://update.ceru.shiqianjiang.cn';
|
||||||
const UPDATE_API_URL = `${UPDATE_SERVER}/update/${process.platform}/${app.getVersion()}`;
|
const UPDATE_API_URL = `${UPDATE_SERVER}/update/${process.platform}/${app.getVersion()}`;
|
||||||
|
|
||||||
|
// Alist API 配置
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244'; // 请替换为实际的 alist 域名
|
||||||
|
const ALIST_USERNAME = 'ceruupdate';
|
||||||
|
const ALIST_PASSWORD = '123456';
|
||||||
|
|
||||||
|
// Alist 认证 token
|
||||||
|
let alistToken: string | null = null;
|
||||||
|
|
||||||
|
// 获取 Alist 认证 token
|
||||||
|
async function getAlistToken(): Promise<string> {
|
||||||
|
if (alistToken) {
|
||||||
|
return alistToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
console.log('Authenticating with Alist...');
|
||||||
|
const response = await axios.post(`${ALIST_BASE_URL}/api/auth/login`, {
|
||||||
|
username: ALIST_USERNAME,
|
||||||
|
password: ALIST_PASSWORD
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Alist auth response:', response.data);
|
||||||
|
|
||||||
|
if (response.data.code === 200) {
|
||||||
|
alistToken = response.data.data.token;
|
||||||
|
console.log('Alist authentication successful');
|
||||||
|
return alistToken!; // 我们已经确认 token 存在
|
||||||
|
} else {
|
||||||
|
throw new Error(`Alist authentication failed: ${response.data.message || 'Unknown error'}`);
|
||||||
|
}
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error('Alist authentication error:', error);
|
||||||
|
if (error.response) {
|
||||||
|
throw new Error(`Failed to authenticate with Alist: HTTP ${error.response.status} - ${error.response.data?.message || error.response.statusText}`);
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to authenticate with Alist: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取 Alist 文件下载链接
|
||||||
|
async function getAlistDownloadUrl(version: string, fileName: string): Promise<string> {
|
||||||
|
const token = await getAlistToken();
|
||||||
|
const filePath = `/${version}/${fileName}`;
|
||||||
|
|
||||||
|
try {
|
||||||
|
console.log(`Getting file info for: ${filePath}`);
|
||||||
|
const response = await axios.post(`${ALIST_BASE_URL}/api/fs/get`, {
|
||||||
|
path: filePath
|
||||||
|
}, {
|
||||||
|
timeout: 10000,
|
||||||
|
headers: {
|
||||||
|
'Authorization': token,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('Alist file info response:', response.data);
|
||||||
|
|
||||||
|
if (response.data.code === 200) {
|
||||||
|
const fileInfo = response.data.data;
|
||||||
|
|
||||||
|
// 检查文件是否存在且有下载链接
|
||||||
|
if (fileInfo && fileInfo.raw_url) {
|
||||||
|
console.log('Using raw_url for download:', fileInfo.raw_url);
|
||||||
|
return fileInfo.raw_url;
|
||||||
|
} else if (fileInfo && fileInfo.sign) {
|
||||||
|
// 使用签名构建下载链接
|
||||||
|
const downloadUrl = `${ALIST_BASE_URL}/d${filePath}?sign=${fileInfo.sign}`;
|
||||||
|
console.log('Using signed download URL:', downloadUrl);
|
||||||
|
return downloadUrl;
|
||||||
|
} else {
|
||||||
|
// 尝试直接下载链接(无签名)
|
||||||
|
const directUrl = `${ALIST_BASE_URL}/d${filePath}`;
|
||||||
|
console.log('Using direct download URL:', directUrl);
|
||||||
|
return directUrl;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to get file info: ${response.data.message || 'Unknown error'}`);
|
||||||
|
}
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error('Alist file info error:', error);
|
||||||
|
if (error.response) {
|
||||||
|
throw new Error(`Failed to get download URL from Alist: HTTP ${error.response.status} - ${error.response.data?.message || error.response.statusText}`);
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to get download URL from Alist: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 初始化自动更新器
|
// 初始化自动更新器
|
||||||
export function initAutoUpdater(window: BrowserWindow) {
|
export function initAutoUpdater(window: BrowserWindow) {
|
||||||
mainWindow = window;
|
mainWindow = window;
|
||||||
@@ -128,8 +223,8 @@ export async function downloadUpdate() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 下载文件
|
// 下载文件
|
||||||
async function downloadFile(url: string): Promise<string> {
|
async function downloadFile(originalUrl: string): Promise<string> {
|
||||||
const fileName = path.basename(url);
|
const fileName = path.basename(originalUrl);
|
||||||
const downloadPath = path.join(app.getPath('temp'), fileName);
|
const downloadPath = path.join(app.getPath('temp'), fileName);
|
||||||
|
|
||||||
// 进度节流变量
|
// 进度节流变量
|
||||||
@@ -139,9 +234,24 @@ async function downloadFile(url: string): Promise<string> {
|
|||||||
const PROGRESS_THRESHOLD = 1; // 进度变化超过1%才发送
|
const PROGRESS_THRESHOLD = 1; // 进度变化超过1%才发送
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
let downloadUrl = originalUrl;
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 从当前更新信息中提取版本号
|
||||||
|
const version = currentUpdateInfo?.name || app.getVersion();
|
||||||
|
|
||||||
|
// 尝试使用 alist API 获取下载链接
|
||||||
|
downloadUrl = await getAlistDownloadUrl(version, fileName);
|
||||||
|
console.log('Using Alist download URL:', downloadUrl);
|
||||||
|
} catch (alistError) {
|
||||||
|
console.warn('Alist download failed, falling back to original URL:', alistError);
|
||||||
|
console.log('Using original download URL:', originalUrl);
|
||||||
|
downloadUrl = originalUrl;
|
||||||
|
}
|
||||||
|
|
||||||
const response = await axios({
|
const response = await axios({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url: url,
|
url: downloadUrl,
|
||||||
responseType: 'stream',
|
responseType: 'stream',
|
||||||
timeout: 30000, // 30秒超时
|
timeout: 30000, // 30秒超时
|
||||||
onDownloadProgress: (progressEvent) => {
|
onDownloadProgress: (progressEvent) => {
|
||||||
|
|||||||
5
src/renderer/components.d.ts
vendored
5
src/renderer/components.d.ts
vendored
@@ -24,12 +24,15 @@ declare module 'vue' {
|
|||||||
SongVirtualList: typeof import('./src/components/Music/SongVirtualList.vue')['default']
|
SongVirtualList: typeof import('./src/components/Music/SongVirtualList.vue')['default']
|
||||||
TAlert: typeof import('tdesign-vue-next')['Alert']
|
TAlert: typeof import('tdesign-vue-next')['Alert']
|
||||||
TAside: typeof import('tdesign-vue-next')['Aside']
|
TAside: typeof import('tdesign-vue-next')['Aside']
|
||||||
|
TBadge: typeof import('tdesign-vue-next')['Badge']
|
||||||
TButton: typeof import('tdesign-vue-next')['Button']
|
TButton: typeof import('tdesign-vue-next')['Button']
|
||||||
|
TCard: typeof import('tdesign-vue-next')['Card']
|
||||||
TContent: typeof import('tdesign-vue-next')['Content']
|
TContent: typeof import('tdesign-vue-next')['Content']
|
||||||
TDialog: typeof import('tdesign-vue-next')['Dialog']
|
TDialog: typeof import('tdesign-vue-next')['Dialog']
|
||||||
TDropdown: typeof import('tdesign-vue-next')['Dropdown']
|
TDropdown: typeof import('tdesign-vue-next')['Dropdown']
|
||||||
ThemeSelector: typeof import('./src/components/ThemeSelector.vue')['default']
|
ThemeSelector: typeof import('./src/components/ThemeSelector.vue')['default']
|
||||||
TIcon: typeof import('tdesign-vue-next')['Icon']
|
TIcon: typeof import('tdesign-vue-next')['Icon']
|
||||||
|
TImage: typeof import('tdesign-vue-next')['Image']
|
||||||
TInput: typeof import('tdesign-vue-next')['Input']
|
TInput: typeof import('tdesign-vue-next')['Input']
|
||||||
TitleBarControls: typeof import('./src/components/TitleBarControls.vue')['default']
|
TitleBarControls: typeof import('./src/components/TitleBarControls.vue')['default']
|
||||||
TLayout: typeof import('tdesign-vue-next')['Layout']
|
TLayout: typeof import('tdesign-vue-next')['Layout']
|
||||||
@@ -37,6 +40,8 @@ declare module 'vue' {
|
|||||||
TRadioButton: typeof import('tdesign-vue-next')['RadioButton']
|
TRadioButton: typeof import('tdesign-vue-next')['RadioButton']
|
||||||
TRadioGroup: typeof import('tdesign-vue-next')['RadioGroup']
|
TRadioGroup: typeof import('tdesign-vue-next')['RadioGroup']
|
||||||
TSlider: typeof import('tdesign-vue-next')['Slider']
|
TSlider: typeof import('tdesign-vue-next')['Slider']
|
||||||
|
TSwitch: typeof import('tdesign-vue-next')['Switch']
|
||||||
|
TTooltip: typeof import('tdesign-vue-next')['Tooltip']
|
||||||
UpdateExample: typeof import('./src/components/UpdateExample.vue')['default']
|
UpdateExample: typeof import('./src/components/UpdateExample.vue')['default']
|
||||||
UpdateProgress: typeof import('./src/components/UpdateProgress.vue')['default']
|
UpdateProgress: typeof import('./src/components/UpdateProgress.vue')['default']
|
||||||
UpdateSettings: typeof import('./src/components/Settings/UpdateSettings.vue')['default']
|
UpdateSettings: typeof import('./src/components/Settings/UpdateSettings.vue')['default']
|
||||||
|
|||||||
@@ -11,15 +11,163 @@ function scrollToFeatures() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// GitHub repository configuration
|
// Alist API configuration
|
||||||
|
const ALIST_BASE_URL = 'http://47.96.72.224:5244';
|
||||||
|
const ALIST_USERNAME = 'ceruupdate';
|
||||||
|
const ALIST_PASSWORD = '123456';
|
||||||
|
|
||||||
|
// GitHub repository configuration (for fallback)
|
||||||
const GITHUB_REPO = 'timeshiftsauce/CeruMusic';
|
const GITHUB_REPO = 'timeshiftsauce/CeruMusic';
|
||||||
const GITHUB_API_URL = `https://api.github.com/repos/${GITHUB_REPO}/releases/latest`;
|
const GITHUB_API_URL = `https://api.github.com/repos/${GITHUB_REPO}/releases/latest`;
|
||||||
|
|
||||||
// Cache for release data
|
// Cache for release data
|
||||||
let releaseData = null;
|
let releaseData = null;
|
||||||
let releaseDataTimestamp = null;
|
let releaseDataTimestamp = null;
|
||||||
|
let alistToken = null;
|
||||||
const CACHE_DURATION = 5 * 60 * 1000; // 5 minutes
|
const CACHE_DURATION = 5 * 60 * 1000; // 5 minutes
|
||||||
|
|
||||||
|
// Alist authentication
|
||||||
|
async function getAlistToken() {
|
||||||
|
if (alistToken) {
|
||||||
|
return alistToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${ALIST_BASE_URL}/api/auth/login`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
username: ALIST_USERNAME,
|
||||||
|
password: ALIST_PASSWORD
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (data.code === 200) {
|
||||||
|
alistToken = data.data.token;
|
||||||
|
return alistToken;
|
||||||
|
} else {
|
||||||
|
throw new Error(`Alist authentication failed: ${data.message}`);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Alist authentication error:', error);
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get available versions from Alist
|
||||||
|
async function getAlistVersions() {
|
||||||
|
try {
|
||||||
|
const token = await getAlistToken();
|
||||||
|
|
||||||
|
const response = await fetch(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Authorization': token,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
path: '/',
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 100,
|
||||||
|
refresh: false
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (data.code === 200) {
|
||||||
|
// Filter directories that look like version numbers
|
||||||
|
const versions = data.data.content
|
||||||
|
.filter(item => item.is_dir && /^v?\d+\.\d+\.\d+/.test(item.name))
|
||||||
|
.sort((a, b) => b.name.localeCompare(a.name)); // Sort by version desc
|
||||||
|
|
||||||
|
return versions;
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to get versions: ${data.message}`);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to get Alist versions:', error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get files in a specific version directory
|
||||||
|
async function getAlistVersionFiles(version) {
|
||||||
|
try {
|
||||||
|
const token = await getAlistToken();
|
||||||
|
|
||||||
|
const response = await fetch(`${ALIST_BASE_URL}/api/fs/list`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Authorization': token,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
path: `/${version}`,
|
||||||
|
password: '',
|
||||||
|
page: 1,
|
||||||
|
per_page: 100,
|
||||||
|
refresh: false
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (data.code === 200) {
|
||||||
|
return data.data.content.filter(item => !item.is_dir);
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to get version files: ${data.message}`);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to get version files:', error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get direct download URL from Alist
|
||||||
|
async function getAlistDownloadUrl(version, fileName) {
|
||||||
|
try {
|
||||||
|
const token = await getAlistToken();
|
||||||
|
const filePath = `/${version}/${fileName}`;
|
||||||
|
|
||||||
|
const response = await fetch(`${ALIST_BASE_URL}/api/fs/get`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Authorization': token,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
path: filePath
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
if (data.code === 200) {
|
||||||
|
const fileInfo = data.data;
|
||||||
|
|
||||||
|
// Try different URL formats
|
||||||
|
if (fileInfo.raw_url) {
|
||||||
|
return fileInfo.raw_url;
|
||||||
|
} else if (fileInfo.sign) {
|
||||||
|
return `${ALIST_BASE_URL}/d${filePath}?sign=${fileInfo.sign}`;
|
||||||
|
} else {
|
||||||
|
return `${ALIST_BASE_URL}/d${filePath}`;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error(`Failed to get download URL: ${data.message}`);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Failed to get Alist download URL:', error);
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Download functionality
|
// Download functionality
|
||||||
async function downloadApp(platform) {
|
async function downloadApp(platform) {
|
||||||
const button = event.target;
|
const button = event.target;
|
||||||
@@ -35,38 +183,53 @@ async function downloadApp(platform) {
|
|||||||
button.disabled = true;
|
button.disabled = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Get latest release data
|
// Try Alist first
|
||||||
const release = await getLatestRelease();
|
const versions = await getAlistVersions();
|
||||||
|
|
||||||
if (!release) {
|
if (versions.length > 0) {
|
||||||
throw new Error('无法获取最新版本信息');
|
const latestVersion = versions[0];
|
||||||
|
const files = await getAlistVersionFiles(latestVersion.name);
|
||||||
|
|
||||||
|
// Find the appropriate file for the platform
|
||||||
|
const fileName = findFileForPlatform(files, platform);
|
||||||
|
|
||||||
|
if (fileName) {
|
||||||
|
const downloadUrl = await getAlistDownloadUrl(latestVersion.name, fileName);
|
||||||
|
|
||||||
|
// Show success notification
|
||||||
|
showNotification(`正在下载 ${getPlatformName(platform)} 版本 ${latestVersion.name}...`, 'success');
|
||||||
|
|
||||||
|
// Start download
|
||||||
|
window.open(downloadUrl, '_blank');
|
||||||
|
|
||||||
|
// Track download
|
||||||
|
trackDownload(platform, latestVersion.name);
|
||||||
|
|
||||||
|
return; // Success, exit function
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the appropriate download asset
|
// Fallback to GitHub if Alist fails
|
||||||
const downloadUrl = findDownloadAsset(release.assets, platform);
|
console.log('Alist download failed, trying GitHub fallback...');
|
||||||
|
await downloadFromGitHub(platform);
|
||||||
if (!downloadUrl) {
|
|
||||||
throw new Error(`暂无 ${getPlatformName(platform)} 版本下载`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Show success notification
|
|
||||||
showNotification(`正在下载 ${getPlatformName(platform)} 版本 v${release.tag_name}...`, 'success');
|
|
||||||
|
|
||||||
// Start download
|
|
||||||
window.open('https://gh.bugdey.us.kg/'+downloadUrl, '_blank');
|
|
||||||
|
|
||||||
// Track download
|
|
||||||
trackDownload(platform, release.tag_name);
|
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Download error:', error);
|
console.error('Download error:', error);
|
||||||
showNotification(`下载失败: ${error.message}`, 'error');
|
|
||||||
|
|
||||||
// Fallback to GitHub releases page
|
// Try GitHub fallback
|
||||||
setTimeout(() => {
|
try {
|
||||||
showNotification('正在跳转到GitHub下载页面...', 'info');
|
console.log('Trying GitHub fallback...');
|
||||||
window.open(`https://gh.bugdey.us.kg/https://github.com/${GITHUB_REPO}/releases/latest`, '_blank');
|
await downloadFromGitHub(platform);
|
||||||
}, 2000);
|
} catch (fallbackError) {
|
||||||
|
console.error('GitHub fallback also failed:', fallbackError);
|
||||||
|
showNotification(`下载失败: ${error.message}`, 'error');
|
||||||
|
|
||||||
|
// Final fallback to GitHub releases page
|
||||||
|
setTimeout(() => {
|
||||||
|
showNotification('正在跳转到GitHub下载页面...', 'info');
|
||||||
|
window.open(`https://github.com/${GITHUB_REPO}/releases/latest`, '_blank');
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
// Restore button state
|
// Restore button state
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@@ -76,6 +239,30 @@ async function downloadApp(platform) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GitHub fallback function
|
||||||
|
async function downloadFromGitHub(platform) {
|
||||||
|
const release = await getLatestRelease();
|
||||||
|
|
||||||
|
if (!release) {
|
||||||
|
throw new Error('无法获取最新版本信息');
|
||||||
|
}
|
||||||
|
|
||||||
|
const downloadUrl = findDownloadAsset(release.assets, platform);
|
||||||
|
|
||||||
|
if (!downloadUrl) {
|
||||||
|
throw new Error(`暂无 ${getPlatformName(platform)} 版本下载`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show success notification
|
||||||
|
showNotification(`正在下载 ${getPlatformName(platform)} 版本 v${release.tag_name}...`, 'success');
|
||||||
|
|
||||||
|
// Start download
|
||||||
|
window.open(downloadUrl, '_blank');
|
||||||
|
|
||||||
|
// Track download
|
||||||
|
trackDownload(platform, release.tag_name);
|
||||||
|
}
|
||||||
|
|
||||||
// Get latest release from GitHub API
|
// Get latest release from GitHub API
|
||||||
async function getLatestRelease() {
|
async function getLatestRelease() {
|
||||||
// Check cache first
|
// Check cache first
|
||||||
@@ -104,6 +291,64 @@ async function getLatestRelease() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Find appropriate file for platform from Alist files
|
||||||
|
function findFileForPlatform(files, platform) {
|
||||||
|
if (!files || !Array.isArray(files)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Define file patterns for each platform
|
||||||
|
const patterns = {
|
||||||
|
windows: [
|
||||||
|
/\\.exe$/i,
|
||||||
|
/windows.*\\.zip$/i,
|
||||||
|
/win32.*\\.zip$/i,
|
||||||
|
/win.*x64.*\\.zip$/i
|
||||||
|
],
|
||||||
|
macos: [
|
||||||
|
/\\.dmg$/i,
|
||||||
|
/darwin.*\\.zip$/i,
|
||||||
|
/macos.*\\.zip$/i,
|
||||||
|
/mac.*\\.zip$/i,
|
||||||
|
/osx.*\\.zip$/i
|
||||||
|
],
|
||||||
|
linux: [
|
||||||
|
/\\.AppImage$/i,
|
||||||
|
/linux.*\\.zip$/i,
|
||||||
|
/linux.*\\.tar\\.gz$/i,
|
||||||
|
/\\.deb$/i,
|
||||||
|
/\\.rpm$/i
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
const platformPatterns = patterns[platform] || [];
|
||||||
|
|
||||||
|
// Try to find exact match
|
||||||
|
for (const pattern of platformPatterns) {
|
||||||
|
const file = files.find(file => pattern.test(file.name));
|
||||||
|
if (file) {
|
||||||
|
return file.name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback: look for any file that might match the platform
|
||||||
|
const fallbackPatterns = {
|
||||||
|
windows: /win|exe/i,
|
||||||
|
macos: /mac|darwin|dmg/i,
|
||||||
|
linux: /linux|appimage|deb|rpm/i
|
||||||
|
};
|
||||||
|
|
||||||
|
const fallbackPattern = fallbackPatterns[platform];
|
||||||
|
if (fallbackPattern) {
|
||||||
|
const file = files.find(file => fallbackPattern.test(file.name));
|
||||||
|
if (file) {
|
||||||
|
return file.name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
// Find appropriate download asset based on platform
|
// Find appropriate download asset based on platform
|
||||||
function findDownloadAsset(assets, platform) {
|
function findDownloadAsset(assets, platform) {
|
||||||
if (!assets || !Array.isArray(assets)) {
|
if (!assets || !Array.isArray(assets)) {
|
||||||
@@ -460,6 +705,36 @@ window.addEventListener('error', (e) => {
|
|||||||
// Update version information on page
|
// Update version information on page
|
||||||
async function updateVersionInfo() {
|
async function updateVersionInfo() {
|
||||||
try {
|
try {
|
||||||
|
// Try to get version info from Alist first
|
||||||
|
const versions = await getAlistVersions();
|
||||||
|
|
||||||
|
if (versions.length > 0) {
|
||||||
|
const latestVersion = versions[0];
|
||||||
|
const versionElement = document.querySelector('.version');
|
||||||
|
const versionInfoElement = document.querySelector('.version-info p');
|
||||||
|
|
||||||
|
if (versionElement) {
|
||||||
|
versionElement.textContent = latestVersion.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (versionInfoElement) {
|
||||||
|
const modifyDate = new Date(latestVersion.modified);
|
||||||
|
const formattedDate = modifyDate.toLocaleDateString('zh-CN', {
|
||||||
|
year: 'numeric',
|
||||||
|
month: 'long'
|
||||||
|
});
|
||||||
|
versionInfoElement.innerHTML = `当前版本: <span class="version">${latestVersion.name}</span> | 更新时间: ${formattedDate}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update download button text with file info from Alist
|
||||||
|
const files = await getAlistVersionFiles(latestVersion.name);
|
||||||
|
updateDownloadButtonsWithAlistFiles(files);
|
||||||
|
|
||||||
|
return; // Success, exit function
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback to GitHub if Alist fails
|
||||||
|
console.log('Alist version info failed, trying GitHub fallback...');
|
||||||
const release = await getLatestRelease();
|
const release = await getLatestRelease();
|
||||||
if (release) {
|
if (release) {
|
||||||
const versionElement = document.querySelector('.version');
|
const versionElement = document.querySelector('.version');
|
||||||
@@ -486,6 +761,29 @@ async function updateVersionInfo() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update download buttons with Alist file information
|
||||||
|
function updateDownloadButtonsWithAlistFiles(files) {
|
||||||
|
if (!files || !Array.isArray(files)) return;
|
||||||
|
|
||||||
|
const downloadCards = document.querySelectorAll('.download-card');
|
||||||
|
const platforms = ['windows', 'macos', 'linux'];
|
||||||
|
|
||||||
|
downloadCards.forEach((card, index) => {
|
||||||
|
const platform = platforms[index];
|
||||||
|
const fileName = findFileForPlatform(files, platform);
|
||||||
|
|
||||||
|
if (fileName) {
|
||||||
|
const file = files.find(f => f.name === fileName);
|
||||||
|
const button = card.querySelector('.btn-download');
|
||||||
|
const sizeText = formatFileSize(file.size);
|
||||||
|
const originalText = button.innerHTML;
|
||||||
|
|
||||||
|
// Add file size info
|
||||||
|
button.innerHTML = originalText.replace(/下载 \..*?$/, `下载 .${getFileExtension(fileName)} (${sizeText})`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Update download buttons with asset information
|
// Update download buttons with asset information
|
||||||
function updateDownloadButtonsWithAssets(assets) {
|
function updateDownloadButtonsWithAssets(assets) {
|
||||||
if (!assets || !Array.isArray(assets)) return;
|
if (!assets || !Array.isArray(assets)) return;
|
||||||
|
|||||||
Reference in New Issue
Block a user