[PR #622] [MERGED] feat(settings): 关于 AMLL TTML DB #541

Closed
opened 2026-02-27 07:12:14 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/imsyy/SPlayer/pull/622
Author: @MoYingJi
Created: 12/8/2025
Status: Merged
Merged: 12/9/2025
Merged by: @imsyy

Base: devHead: feat


📝 Commits (10+)

  • 54b8b15 feat(setting): 更换默认 AMLL TTML DB Server 为官方源
  • f2fd3ff docs(lyricManager): 修正 lyricManager 注释中的拼写错误
  • 0220fcc feat(setting): 独立 AMLL Server 配置弹窗,增加推荐镜像源
  • d357375 feat: 更换默认 AMLL TTML DB 服务器地址
  • f901be5 chore(deps): 移除不必要的 NaiveUI 组件导入
  • de74bd2 style: 接受 AI 建议
  • 8c69b76 feat(setting): 优化 AMLL Server 输入验证
  • d9ef475 feat(setting): 优化 AMLLServer 部分代码,高亮部分 %s
  • a9faeaf refactor(amll-setting): 重命名 mirror 相关变量名和类名为 server
  • c9935ed feat(amll-setting): 点击选择推荐服务器时高亮输入框

📊 Changes

8 files changed (+196 additions, -51 deletions)

View changed files

📝 components.d.ts (+1 -0)
📝 src/api/song.ts (+2 -2)
src/components/Modal/AMLLServer.vue (+138 -0)
📝 src/components/Setting/LyricsSetting.vue (+3 -47)
📝 src/stores/setting.ts (+2 -1)
📝 src/utils/lyricManager.ts (+1 -1)
📝 src/utils/meta.ts (+32 -0)
📝 src/utils/modal.ts (+17 -0)

📄 Description

  • 提取默认服务器到 meta.ts 的一个常量,并在此推荐一些服务器如官方源和其他镜像站
  • 将默认 AMLL TTML DB 服务器从 SteveXMH 官方镜像源 更换为 HelloZGY 镜像站
  • 提取「AMLL TTML DB 地址」设置的模态框到 AMLLServer.vue,并在此展示推荐的服务器

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/imsyy/SPlayer/pull/622 **Author:** [@MoYingJi](https://github.com/MoYingJi) **Created:** 12/8/2025 **Status:** ✅ Merged **Merged:** 12/9/2025 **Merged by:** [@imsyy](https://github.com/imsyy) **Base:** `dev` ← **Head:** `feat` --- ### 📝 Commits (10+) - [`54b8b15`](https://github.com/imsyy/SPlayer/commit/54b8b159dbf1321486d7facb679fea66f99e1a6e) feat(setting): 更换默认 AMLL TTML DB Server 为官方源 - [`f2fd3ff`](https://github.com/imsyy/SPlayer/commit/f2fd3ff7c8d34361bb56bb141b9e169f272e2599) docs(lyricManager): 修正 lyricManager 注释中的拼写错误 - [`0220fcc`](https://github.com/imsyy/SPlayer/commit/0220fcca05db0f83fb8347a19929876d4a4d7c5f) feat(setting): 独立 AMLL Server 配置弹窗,增加推荐镜像源 - [`d357375`](https://github.com/imsyy/SPlayer/commit/d35737520c7fb57737ff52f65b78d56f027827c5) feat: 更换默认 AMLL TTML DB 服务器地址 - [`f901be5`](https://github.com/imsyy/SPlayer/commit/f901be5eb2584ac86f293dfc264b30167f973a05) chore(deps): 移除不必要的 NaiveUI 组件导入 - [`de74bd2`](https://github.com/imsyy/SPlayer/commit/de74bd238ae08a4ed5b4e7967b42de37eef23811) style: 接受 AI 建议 - [`8c69b76`](https://github.com/imsyy/SPlayer/commit/8c69b763cb177faa7ef5c47fa761b00601037928) feat(setting): 优化 AMLL Server 输入验证 - [`d9ef475`](https://github.com/imsyy/SPlayer/commit/d9ef47587ddba52b45f3e434840e42bab1bf0136) feat(setting): 优化 AMLLServer 部分代码,高亮部分 %s - [`a9faeaf`](https://github.com/imsyy/SPlayer/commit/a9faeaf03eb93059a90e65f06ed0bfea2e01284b) refactor(amll-setting): 重命名 mirror 相关变量名和类名为 server - [`c9935ed`](https://github.com/imsyy/SPlayer/commit/c9935edc9d4ae90f20b91cd036933bc1d9dc4a16) feat(amll-setting): 点击选择推荐服务器时高亮输入框 ### 📊 Changes **8 files changed** (+196 additions, -51 deletions) <details> <summary>View changed files</summary> 📝 `components.d.ts` (+1 -0) 📝 `src/api/song.ts` (+2 -2) ➕ `src/components/Modal/AMLLServer.vue` (+138 -0) 📝 `src/components/Setting/LyricsSetting.vue` (+3 -47) 📝 `src/stores/setting.ts` (+2 -1) 📝 `src/utils/lyricManager.ts` (+1 -1) 📝 `src/utils/meta.ts` (+32 -0) 📝 `src/utils/modal.ts` (+17 -0) </details> ### 📄 Description - 提取默认服务器到 `meta.ts` 的一个常量,并在此推荐一些服务器如官方源和其他镜像站 - 将默认 AMLL TTML DB 服务器从 SteveXMH 官方镜像源 更换为 HelloZGY 镜像站 - 提取「AMLL TTML DB 地址」设置的模态框到 `AMLLServer.vue`,并在此展示推荐的服务器 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 07:12:14 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SPlayer#541
No description provided.