[PR #782] [MERGED] Dev cy #640

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

📋 Pull Request Information

Original PR: https://github.com/imsyy/SPlayer/pull/782
Author: @kazukokawagawa
Created: 1/30/2026
Status: Merged
Merged: 1/31/2026
Merged by: @apoint123

Base: devHead: dev-cy


📝 Commits (10+)

  • 33cb34a feat: 史诗级加强No-cover
  • 71cfe05 feat: 自定义歌单界面
  • edf5dc1 feat: 优化设置排布
  • 4f581b1 feat: 支持关闭开发者模式
  • 9af1829 feat: 歌词设置整理 支持替换括号内容
  • 2e51005 feat: 歌词括号
  • 83ad4a8 🐞 fix: 代码审查
  • 5840a8c feat: 史诗级加强No-cover x2
  • ff339cf 🐞 fix: 对齐数据
  • f499f68 🐞 fix: 修复在某些情况下(如歌手信息为纯字符串而非数组时)可能导致元数据写入失败的问题

📊 Changes

56 files changed (+2063 additions, -1047 deletions)

View changed files

📝 components.d.ts (+2 -0)
📝 electron/main/ipc/ipc-file.ts (+32 -3)
📝 src/components/Card/SongCard.vue (+13 -5)
📝 src/components/Card/SongDataCard.vue (+14 -2)
📝 src/components/Card/SongListCard.vue (+2 -1)
📝 src/components/List/ArtistList.vue (+26 -5)
📝 src/components/List/CommentList.vue (+9 -7)
📝 src/components/List/CoverList.vue (+47 -9)
📝 src/components/List/ListDetail.vue (+38 -8)
📝 src/components/List/SongList.vue (+1 -1)
📝 src/components/List/SongPlayList.vue (+21 -4)
📝 src/components/Modal/JumpArtist.vue (+6 -1)
src/components/Modal/Setting/CoverManager.vue (+96 -0)
src/components/Modal/Setting/PlaylistPageManager.vue (+63 -0)
📝 src/components/Player/FullPlayerMobile.vue (+1 -1)
📝 src/components/Player/MainPlayer.vue (+19 -4)
📝 src/components/Player/PlayerComponents/PersonalFM.vue (+46 -9)
📝 src/components/Player/PlayerComponents/PlayerComment.vue (+1 -1)
📝 src/components/Player/PlayerMeta/PlayerData.vue (+12 -6)
📝 src/components/Setting/AboutSetting.vue (+9 -8)

...and 36 more files

📄 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/782 **Author:** [@kazukokawagawa](https://github.com/kazukokawagawa) **Created:** 1/30/2026 **Status:** ✅ Merged **Merged:** 1/31/2026 **Merged by:** [@apoint123](https://github.com/apoint123) **Base:** `dev` ← **Head:** `dev-cy` --- ### 📝 Commits (10+) - [`33cb34a`](https://github.com/imsyy/SPlayer/commit/33cb34a7d79ee259fd652c940d76b7834145ce6e) ✨ feat: 史诗级加强No-cover - [`71cfe05`](https://github.com/imsyy/SPlayer/commit/71cfe0510aadd7ff8d16063cddc04e3efdc1b746) ✨ feat: 自定义歌单界面 - [`edf5dc1`](https://github.com/imsyy/SPlayer/commit/edf5dc1a09effdac3ec36698aae746fbd0214af5) ✨ feat: 优化设置排布 - [`4f581b1`](https://github.com/imsyy/SPlayer/commit/4f581b1462305aa8cdd36898368723f2c55f3b29) ✨ feat: 支持关闭开发者模式 - [`9af1829`](https://github.com/imsyy/SPlayer/commit/9af1829ea4475adbddd6e1a6772e879d84dac5be) ✨ feat: 歌词设置整理 支持替换括号内容 - [`2e51005`](https://github.com/imsyy/SPlayer/commit/2e51005d9ee047d7a634dbb8879d2b28a11fffdb) ✨ feat: 歌词括号 - [`83ad4a8`](https://github.com/imsyy/SPlayer/commit/83ad4a8f585d579c465bfd96c082e38b931356d4) 🐞 fix: 代码审查 - [`5840a8c`](https://github.com/imsyy/SPlayer/commit/5840a8cd4765854c0ac507836ad6f6b9a93caad6) ✨ feat: 史诗级加强No-cover x2 - [`ff339cf`](https://github.com/imsyy/SPlayer/commit/ff339cff35453648b266d174ed5bb51988b722e8) 🐞 fix: 对齐数据 - [`f499f68`](https://github.com/imsyy/SPlayer/commit/f499f684d85857e3a36dcbcbf8d232a9672f879a) 🐞 fix: 修复在某些情况下(如歌手信息为纯字符串而非数组时)可能导致元数据写入失败的问题 ### 📊 Changes **56 files changed** (+2063 additions, -1047 deletions) <details> <summary>View changed files</summary> 📝 `components.d.ts` (+2 -0) 📝 `electron/main/ipc/ipc-file.ts` (+32 -3) 📝 `src/components/Card/SongCard.vue` (+13 -5) 📝 `src/components/Card/SongDataCard.vue` (+14 -2) 📝 `src/components/Card/SongListCard.vue` (+2 -1) 📝 `src/components/List/ArtistList.vue` (+26 -5) 📝 `src/components/List/CommentList.vue` (+9 -7) 📝 `src/components/List/CoverList.vue` (+47 -9) 📝 `src/components/List/ListDetail.vue` (+38 -8) 📝 `src/components/List/SongList.vue` (+1 -1) 📝 `src/components/List/SongPlayList.vue` (+21 -4) 📝 `src/components/Modal/JumpArtist.vue` (+6 -1) ➕ `src/components/Modal/Setting/CoverManager.vue` (+96 -0) ➕ `src/components/Modal/Setting/PlaylistPageManager.vue` (+63 -0) 📝 `src/components/Player/FullPlayerMobile.vue` (+1 -1) 📝 `src/components/Player/MainPlayer.vue` (+19 -4) 📝 `src/components/Player/PlayerComponents/PersonalFM.vue` (+46 -9) 📝 `src/components/Player/PlayerComponents/PlayerComment.vue` (+1 -1) 📝 `src/components/Player/PlayerMeta/PlayerData.vue` (+12 -6) 📝 `src/components/Setting/AboutSetting.vue` (+9 -8) _...and 36 more files_ </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:35 +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#640
No description provided.