[PR #935] [MERGED] 🎈 perf: 从 PlayerController 中分离混音相关逻辑 #734

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

📋 Pull Request Information

Original PR: https://github.com/imsyy/SPlayer/pull/935
Author: @imsyy
Created: 2/24/2026
Status: Merged
Merged: 2/26/2026
Merged by: @kazukokawagawa

Base: devHead: dev-shit-fix


📝 Commits (7)

  • b696994 🎈 perf: 优化屎山
  • 12e508f 🐞 fix: 修复 Rust 格式问题
  • 42df3bc 🐞 fix: 修复 AI 建议
  • e6196fd 🐞 fix: 修复歌词混合模式
  • 666ede5 🔧 build: update Electron to v39.4.0
  • 9929704 🐞 fix: 修复列表自动高度时无法定位当前歌曲 #931
  • 8068d06 feat: 私人 FM 支持预载

📊 Changes

30 files changed (+2276 additions, -1822 deletions)

View changed files

📝 native/external-media-integration/src/model.rs (+1 -0)
📝 native/tools/src/analysis.rs (+543 -246)
📝 package.json (+1 -1)
📝 pnpm-lock.yaml (+11 -11)
📝 src/components/List/SongList.vue (+26 -11)
📝 src/components/Player/FullPlayer.vue (+1 -1)
📝 src/components/Player/MainPlayer.vue (+6 -1)
📝 src/components/Player/PlayerComponents/PersonalFM.vue (+6 -1)
📝 src/components/Player/PlayerControl.vue (+6 -1)
📝 src/components/Player/PlayerLyric/AMLyric.vue (+0 -37)
📝 src/components/Player/PlayerMeta/PlayerData.vue (+1 -1)
📝 src/components/Setting/config/lyric.ts (+14 -0)
📝 src/composables/useInit.ts (+7 -0)
📝 src/core/audio-player/BaseAudioPlayer.ts (+2 -14)
📝 src/core/automix/AudioScheduler.ts (+70 -2)
src/core/automix/AutomixManager.ts (+1107 -0)
📝 src/core/automix/SharedAudioContext.ts (+16 -1)
📝 src/core/automix/scheduler.worker.ts (+10 -0)
📝 src/core/player/AudioManager.ts (+22 -112)
📝 src/core/player/LyricManager.ts (+4 -0)

...and 10 more files

📄 Description

  • 力竭了

🔄 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/935 **Author:** [@imsyy](https://github.com/imsyy) **Created:** 2/24/2026 **Status:** ✅ Merged **Merged:** 2/26/2026 **Merged by:** [@kazukokawagawa](https://github.com/kazukokawagawa) **Base:** `dev` ← **Head:** `dev-shit-fix` --- ### 📝 Commits (7) - [`b696994`](https://github.com/imsyy/SPlayer/commit/b696994424d02d3b4399299f6be8f3bddf676342) 🎈 perf: 优化屎山 - [`12e508f`](https://github.com/imsyy/SPlayer/commit/12e508f1767398c4f036ae270c5b8a133dafbe0a) 🐞 fix: 修复 Rust 格式问题 - [`42df3bc`](https://github.com/imsyy/SPlayer/commit/42df3bc53f179f1b612bced8418fb0171fc50af9) 🐞 fix: 修复 AI 建议 - [`e6196fd`](https://github.com/imsyy/SPlayer/commit/e6196fd9b2f0b0dd6a3a2c45f83ef771ace5f3c8) 🐞 fix: 修复歌词混合模式 - [`666ede5`](https://github.com/imsyy/SPlayer/commit/666ede5e2ef792566b5611594031e6404040a8b3) 🔧 build: update Electron to v39.4.0 - [`9929704`](https://github.com/imsyy/SPlayer/commit/99297042df776d46e0542088c22e690744e8654c) 🐞 fix: 修复列表自动高度时无法定位当前歌曲 #931 - [`8068d06`](https://github.com/imsyy/SPlayer/commit/8068d06b463f7964c96aa464b13037bb609149dc) ✨ feat: 私人 FM 支持预载 ### 📊 Changes **30 files changed** (+2276 additions, -1822 deletions) <details> <summary>View changed files</summary> 📝 `native/external-media-integration/src/model.rs` (+1 -0) 📝 `native/tools/src/analysis.rs` (+543 -246) 📝 `package.json` (+1 -1) 📝 `pnpm-lock.yaml` (+11 -11) 📝 `src/components/List/SongList.vue` (+26 -11) 📝 `src/components/Player/FullPlayer.vue` (+1 -1) 📝 `src/components/Player/MainPlayer.vue` (+6 -1) 📝 `src/components/Player/PlayerComponents/PersonalFM.vue` (+6 -1) 📝 `src/components/Player/PlayerControl.vue` (+6 -1) 📝 `src/components/Player/PlayerLyric/AMLyric.vue` (+0 -37) 📝 `src/components/Player/PlayerMeta/PlayerData.vue` (+1 -1) 📝 `src/components/Setting/config/lyric.ts` (+14 -0) 📝 `src/composables/useInit.ts` (+7 -0) 📝 `src/core/audio-player/BaseAudioPlayer.ts` (+2 -14) 📝 `src/core/automix/AudioScheduler.ts` (+70 -2) ➕ `src/core/automix/AutomixManager.ts` (+1107 -0) 📝 `src/core/automix/SharedAudioContext.ts` (+16 -1) 📝 `src/core/automix/scheduler.worker.ts` (+10 -0) 📝 `src/core/player/AudioManager.ts` (+22 -112) 📝 `src/core/player/LyricManager.ts` (+4 -0) _...and 10 more files_ </details> ### 📄 Description - 力竭了 --- <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:54 +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#734
No description provided.