[PR #860] [MERGED] 🦄 refactor: 合并任务栏歌词相关 IPC 通道 #692

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

📋 Pull Request Information

Original PR: https://github.com/imsyy/SPlayer/pull/860
Author: @apoint123
Created: 2/10/2026
Status: Merged
Merged: 2/13/2026
Merged by: @apoint123

Base: devHead: refactor/merge-taskbar-ipcs


📝 Commits (10+)

  • 6847247 🦄 refactor: 合并任务栏歌词相关 IPC 通道
  • 825fe95 🐞 fix: 修复无法正确开启关闭任务栏歌词的 bug
  • b3e2ea4 🌈 style: 优化样式
  • 5649561 🦄 refactor: 简化代码
  • a6f4615 🦄 refactor: 提高时间轴同步阈值
  • 66695f9 🦄 refactor: 提高淡出完成后的通知延迟
  • 1c062b7 🐞 fix: 修复部分问题
  • b173595 🦄 refactor: 重构 macOS 相关通道
  • 1c1c0bd 🐞 fix: 修复找不到 es-object-atoms 模块
  • 82a993c 🦄 refactor: 合并主题通道

📊 Changes

27 files changed (+694 additions, -427 deletions)

View changed files

📝 electron.vite.config.ts (+14 -10)
📝 electron/main/ipc/ipc-mac-statusbar.ts (+54 -43)
📝 electron/main/ipc/ipc-taskbar.ts (+101 -67)
📝 electron/main/ipc/ipc-tray.ts (+1 -1)
📝 electron/main/services/MusicMetadataService.ts (+13 -1)
📝 electron/main/tray/index.ts (+3 -3)
📝 electron/main/windows/taskbar-lyric-window.ts (+38 -2)
📝 electron/server/qqmusic/index.ts (+1 -1)
📝 eslint.config.mjs (+7 -0)
📝 package.json (+2 -1)
📝 pnpm-lock.yaml (+3 -0)
📝 src/components/Modal/UpdateApp.vue (+12 -2)
📝 src/composables/useInit.ts (+33 -48)
📝 src/core/audio-player/ffmpeg-engine/FFmpegAudioPlayer.ts (+0 -1)
📝 src/core/player/PlayModeManager.ts (+3 -3)
📝 src/core/player/PlayerController.ts (+4 -4)
📝 src/core/player/PlayerIpc.ts (+59 -35)
📝 src/stores/status.ts (+9 -7)
src/types/ipc.d.ts (+0 -25)
📝 src/types/lyric.d.ts (+0 -9)

...and 7 more files

📄 Description

合并之前散乱的任务栏歌词相关 IPC 通道,以便之后更好地进行扩展


🔄 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/860 **Author:** [@apoint123](https://github.com/apoint123) **Created:** 2/10/2026 **Status:** ✅ Merged **Merged:** 2/13/2026 **Merged by:** [@apoint123](https://github.com/apoint123) **Base:** `dev` ← **Head:** `refactor/merge-taskbar-ipcs` --- ### 📝 Commits (10+) - [`6847247`](https://github.com/imsyy/SPlayer/commit/6847247c1fd1296b28fdf11ed8f652c5c40f0901) 🦄 refactor: 合并任务栏歌词相关 IPC 通道 - [`825fe95`](https://github.com/imsyy/SPlayer/commit/825fe95ee6bd8fb8fb169da0dcf89d8529ac7ad3) 🐞 fix: 修复无法正确开启关闭任务栏歌词的 bug - [`b3e2ea4`](https://github.com/imsyy/SPlayer/commit/b3e2ea4554820ba8e0264ab8bc5e9be0ca2150a1) 🌈 style: 优化样式 - [`5649561`](https://github.com/imsyy/SPlayer/commit/5649561696af2ffaccb8a7548ca90f0d16522b3f) 🦄 refactor: 简化代码 - [`a6f4615`](https://github.com/imsyy/SPlayer/commit/a6f46151c77e6227b16eab2a1fc3f2280e4a9258) 🦄 refactor: 提高时间轴同步阈值 - [`66695f9`](https://github.com/imsyy/SPlayer/commit/66695f9668dc1d9c061287fe2085638df64fb819) 🦄 refactor: 提高淡出完成后的通知延迟 - [`1c062b7`](https://github.com/imsyy/SPlayer/commit/1c062b76d14ff5e1910a095e58c89ba759a08766) 🐞 fix: 修复部分问题 - [`b173595`](https://github.com/imsyy/SPlayer/commit/b17359599d181ed03a7d1d03f89d45ffe1b1a187) 🦄 refactor: 重构 macOS 相关通道 - [`1c1c0bd`](https://github.com/imsyy/SPlayer/commit/1c1c0bd118dbbd6fcdee466e27be44cbdc2f02f0) 🐞 fix: 修复找不到 es-object-atoms 模块 - [`82a993c`](https://github.com/imsyy/SPlayer/commit/82a993ca390867d7b20d4ee7331b3fd404088507) 🦄 refactor: 合并主题通道 ### 📊 Changes **27 files changed** (+694 additions, -427 deletions) <details> <summary>View changed files</summary> 📝 `electron.vite.config.ts` (+14 -10) 📝 `electron/main/ipc/ipc-mac-statusbar.ts` (+54 -43) 📝 `electron/main/ipc/ipc-taskbar.ts` (+101 -67) 📝 `electron/main/ipc/ipc-tray.ts` (+1 -1) 📝 `electron/main/services/MusicMetadataService.ts` (+13 -1) 📝 `electron/main/tray/index.ts` (+3 -3) 📝 `electron/main/windows/taskbar-lyric-window.ts` (+38 -2) 📝 `electron/server/qqmusic/index.ts` (+1 -1) 📝 `eslint.config.mjs` (+7 -0) 📝 `package.json` (+2 -1) 📝 `pnpm-lock.yaml` (+3 -0) 📝 `src/components/Modal/UpdateApp.vue` (+12 -2) 📝 `src/composables/useInit.ts` (+33 -48) 📝 `src/core/audio-player/ffmpeg-engine/FFmpegAudioPlayer.ts` (+0 -1) 📝 `src/core/player/PlayModeManager.ts` (+3 -3) 📝 `src/core/player/PlayerController.ts` (+4 -4) 📝 `src/core/player/PlayerIpc.ts` (+59 -35) 📝 `src/stores/status.ts` (+9 -7) ➖ `src/types/ipc.d.ts` (+0 -25) 📝 `src/types/lyric.d.ts` (+0 -9) _...and 7 more files_ </details> ### 📄 Description 合并之前散乱的任务栏歌词相关 IPC 通道,以便之后更好地进行扩展 --- <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:46 +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#692
No description provided.