[PR #660] [MERGED] 优化下载与修复音质切换BUG #563

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

📋 Pull Request Information

Original PR: https://github.com/imsyy/SPlayer/pull/660
Author: @kazukokawagawa
Created: 12/26/2025
Status: Merged
Merged: 12/26/2025
Merged by: @imsyy

Base: devHead: dev-perf


📝 Commits (10+)

  • 079ada0 🦄 refactor: 优化下载逻辑
  • b013e86 🎈 perf: 优化歌曲下载
  • 1c1b7ca 🎨 style: 更新评论列表样式
  • 36604be 🐞 fix: 修复云盘和本地歌曲切换音质的问题
  • 9b45bce 🐞 fix: 修复播放列表清空报错
  • c1d61c6 🐞 fix: 修复云盘播放报错
  • ef1278d 🎈 perf: 播放失败超过3首强制暂停
  • 74f1179 🎈 perf: 更好的全屏加载动画
  • 1ecf92c 🎨 feat: 添加播放器展开动画设置选项
  • 13fa262 Apply suggestion from @gemini-code-assist[bot]

📊 Changes

16 files changed (+516 additions, -236 deletions)

View changed files

📝 electron/main/ipc/ipc-file.ts (+67 -12)
📝 electron/main/ipc/ipc-tray.ts (+1 -1)
📝 src/components/Player/FullPlayer.vue (+1 -1)
📝 src/components/Player/PlayerComment.vue (+7 -0)
📝 src/components/Player/PlayerData.vue (+1 -1)
📝 src/components/Setting/AboutSetting.vue (+89 -1)
📝 src/components/Setting/PlaySetting.vue (+20 -0)
📝 src/core/player/PlayerController.ts (+13 -5)
📝 src/core/player/SongManager.ts (+5 -4)
📝 src/core/resource/DownloadManager.ts (+283 -209)
📝 src/stores/data.ts (+1 -0)
📝 src/stores/music.ts (+1 -1)
📝 src/stores/setting.ts (+3 -0)
📝 src/style/animate.scss (+13 -0)
📝 src/utils/init.ts (+4 -0)
📝 src/views/Download/downloading.vue (+7 -1)

📄 Description

No description provided


🔄 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/660 **Author:** [@kazukokawagawa](https://github.com/kazukokawagawa) **Created:** 12/26/2025 **Status:** ✅ Merged **Merged:** 12/26/2025 **Merged by:** [@imsyy](https://github.com/imsyy) **Base:** `dev` ← **Head:** `dev-perf` --- ### 📝 Commits (10+) - [`079ada0`](https://github.com/imsyy/SPlayer/commit/079ada00ef4f189109875b93e87255ac7a02c531) 🦄 refactor: 优化下载逻辑 - [`b013e86`](https://github.com/imsyy/SPlayer/commit/b013e867e8eca3af4c026d6580fbb62f531624e5) 🎈 perf: 优化歌曲下载 - [`1c1b7ca`](https://github.com/imsyy/SPlayer/commit/1c1b7ca5b9f3a5752dddc6ab41a09d3eb6dfeac4) 🎨 style: 更新评论列表样式 - [`36604be`](https://github.com/imsyy/SPlayer/commit/36604be0dd27d93dc870ccc988f132766efde6c4) 🐞 fix: 修复云盘和本地歌曲切换音质的问题 - [`9b45bce`](https://github.com/imsyy/SPlayer/commit/9b45bcef62050f4837b25206240aeb27a593e45c) 🐞 fix: 修复播放列表清空报错 - [`c1d61c6`](https://github.com/imsyy/SPlayer/commit/c1d61c6ae65e49ff6c1e5ecd8e40c183021195b7) 🐞 fix: 修复云盘播放报错 - [`ef1278d`](https://github.com/imsyy/SPlayer/commit/ef1278d9900ca535c7c7d8c6bdbe74969f63a26f) 🎈 perf: 播放失败超过3首强制暂停 - [`74f1179`](https://github.com/imsyy/SPlayer/commit/74f1179b8d0a67a9ad07746184846f7a372b315c) 🎈 perf: 更好的全屏加载动画 - [`1ecf92c`](https://github.com/imsyy/SPlayer/commit/1ecf92ccf3a676f550f3aa3d954602d5129b9847) 🎨 feat: 添加播放器展开动画设置选项 - [`13fa262`](https://github.com/imsyy/SPlayer/commit/13fa26255ad24f863dfacfccdc2bb059f5d883a3) Apply suggestion from @gemini-code-assist[bot] ### 📊 Changes **16 files changed** (+516 additions, -236 deletions) <details> <summary>View changed files</summary> 📝 `electron/main/ipc/ipc-file.ts` (+67 -12) 📝 `electron/main/ipc/ipc-tray.ts` (+1 -1) 📝 `src/components/Player/FullPlayer.vue` (+1 -1) 📝 `src/components/Player/PlayerComment.vue` (+7 -0) 📝 `src/components/Player/PlayerData.vue` (+1 -1) 📝 `src/components/Setting/AboutSetting.vue` (+89 -1) 📝 `src/components/Setting/PlaySetting.vue` (+20 -0) 📝 `src/core/player/PlayerController.ts` (+13 -5) 📝 `src/core/player/SongManager.ts` (+5 -4) 📝 `src/core/resource/DownloadManager.ts` (+283 -209) 📝 `src/stores/data.ts` (+1 -0) 📝 `src/stores/music.ts` (+1 -1) 📝 `src/stores/setting.ts` (+3 -0) 📝 `src/style/animate.scss` (+13 -0) 📝 `src/utils/init.ts` (+4 -0) 📝 `src/views/Download/downloading.vue` (+7 -1) </details> ### 📄 Description _No description provided_ --- <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:19 +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#563
No description provided.