[PR #146] [CLOSED] 4.x branch #180

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

📋 Pull Request Information

Original PR: https://github.com/lox-audioserver/lox-audioserver/pull/146
Author: @rudyberends
Created: 1/31/2026
Status: Closed

Base: betaHead: 4.x-branch


📝 Commits (10+)

  • b9b9cc5 chore: trigger 4.0.0-beta.3 release
  • 86a6060 fix(line-in): remove AcoustID metadata lookup
  • 6b121d5 feat(line-in): use in-memory shazam resample and drop ffmpeg temp files
  • 9c928a6 fix(airplay): fixed airPlay output config handling for RAOP devices
  • a80a346 chore(deps): update npm packages and apply audit fixes
  • e5f72ed chore(deps): bump @lox-audioserver/node-airplay-sender to 0.4.6
  • 0172540 fix(sendspin): ignore client volume updates by default
  • 882177e feat(sendspin): add Sendspin source control handling
  • ff722ca fix(mdns): advertise configured audioserver ip
  • 60d44c0 feat: validate music assistant bridge connection

📊 Changes

49 files changed (+3772 additions, -1838 deletions)

View changed files

📝 package-lock.json (+1212 -1196)
📝 package.json (+26 -27)
📝 src/adapters/content/providers/applemusic/appleMusicStreamService.ts (+98 -11)
📝 src/adapters/content/providers/localLibraryProvider.ts (+2 -2)
📝 src/adapters/discovery/loxAudioMdnsService.ts (+2 -1)
📝 src/adapters/http/adminApi/adminApiHandler.ts (+160 -29)
📝 src/adapters/http/httpService.ts (+9 -0)
📝 src/adapters/http/streams/audioStreamHandler.ts (+221 -1)
📝 src/adapters/inputs/InputsAdapter.ts (+4 -0)
📝 src/adapters/inputs/linein/lineInIngestTcp.ts (+4 -2)
📝 src/adapters/inputs/linein/lineInMetadataService.ts (+145 -189)
📝 src/adapters/inputs/linein/sendspinLineInService.ts (+64 -1)
📝 src/adapters/inputs/musicassistant/musicAssistantStreamService.ts (+56 -0)
📝 src/adapters/inputs/spotify/spotifyInputService.ts (+27 -13)
📝 src/adapters/loxone/commands/handlers/configHandlers.ts (+6 -1)
📝 src/adapters/loxone/commands/handlers/inputHandlers.ts (+19 -5)
📝 src/adapters/loxone/services/loxoneConfigService.ts (+32 -1)
📝 src/adapters/outputs/airplay/airplayFlowSession.ts (+75 -8)
📝 src/adapters/outputs/airplay/airplayOutput.ts (+97 -53)
📝 src/adapters/outputs/airplay/airplaySender.ts (+38 -9)

...and 29 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/lox-audioserver/lox-audioserver/pull/146 **Author:** [@rudyberends](https://github.com/rudyberends) **Created:** 1/31/2026 **Status:** ❌ Closed **Base:** `beta` ← **Head:** `4.x-branch` --- ### 📝 Commits (10+) - [`b9b9cc5`](https://github.com/lox-audioserver/lox-audioserver/commit/b9b9cc5b7dd876b322eadbb778632bd87692ba94) chore: trigger 4.0.0-beta.3 release - [`86a6060`](https://github.com/lox-audioserver/lox-audioserver/commit/86a6060f22d8b39e88ebc1bb29527b92b29498d5) fix(line-in): remove AcoustID metadata lookup - [`6b121d5`](https://github.com/lox-audioserver/lox-audioserver/commit/6b121d545e57500250477820c8e85edf54184c46) feat(line-in): use in-memory shazam resample and drop ffmpeg temp files - [`9c928a6`](https://github.com/lox-audioserver/lox-audioserver/commit/9c928a637c915202e7c65904e354dd1c3fb5efcd) fix(airplay): fixed airPlay output config handling for RAOP devices - [`a80a346`](https://github.com/lox-audioserver/lox-audioserver/commit/a80a346a93fe919c1e947e8b38209fc840df845e) chore(deps): update npm packages and apply audit fixes - [`e5f72ed`](https://github.com/lox-audioserver/lox-audioserver/commit/e5f72ed62c8322c3b04f24ddec692d98fb614ebe) chore(deps): bump @lox-audioserver/node-airplay-sender to 0.4.6 - [`0172540`](https://github.com/lox-audioserver/lox-audioserver/commit/017254031c254b8347048f6e6371a3d12c4b4d26) fix(sendspin): ignore client volume updates by default - [`882177e`](https://github.com/lox-audioserver/lox-audioserver/commit/882177e9f015cb98679453fcc88fb2bea120573c) feat(sendspin): add Sendspin source control handling - [`ff722ca`](https://github.com/lox-audioserver/lox-audioserver/commit/ff722ca4eaa154b748e53273cdaf43edb85e76d8) fix(mdns): advertise configured audioserver ip - [`60d44c0`](https://github.com/lox-audioserver/lox-audioserver/commit/60d44c0cd007bacc32c5212f05c65b5b42acaa00) feat: validate music assistant bridge connection ### 📊 Changes **49 files changed** (+3772 additions, -1838 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+1212 -1196) 📝 `package.json` (+26 -27) 📝 `src/adapters/content/providers/applemusic/appleMusicStreamService.ts` (+98 -11) 📝 `src/adapters/content/providers/localLibraryProvider.ts` (+2 -2) 📝 `src/adapters/discovery/loxAudioMdnsService.ts` (+2 -1) 📝 `src/adapters/http/adminApi/adminApiHandler.ts` (+160 -29) 📝 `src/adapters/http/httpService.ts` (+9 -0) 📝 `src/adapters/http/streams/audioStreamHandler.ts` (+221 -1) 📝 `src/adapters/inputs/InputsAdapter.ts` (+4 -0) 📝 `src/adapters/inputs/linein/lineInIngestTcp.ts` (+4 -2) 📝 `src/adapters/inputs/linein/lineInMetadataService.ts` (+145 -189) 📝 `src/adapters/inputs/linein/sendspinLineInService.ts` (+64 -1) 📝 `src/adapters/inputs/musicassistant/musicAssistantStreamService.ts` (+56 -0) 📝 `src/adapters/inputs/spotify/spotifyInputService.ts` (+27 -13) 📝 `src/adapters/loxone/commands/handlers/configHandlers.ts` (+6 -1) 📝 `src/adapters/loxone/commands/handlers/inputHandlers.ts` (+19 -5) 📝 `src/adapters/loxone/services/loxoneConfigService.ts` (+32 -1) 📝 `src/adapters/outputs/airplay/airplayFlowSession.ts` (+75 -8) 📝 `src/adapters/outputs/airplay/airplayOutput.ts` (+97 -53) 📝 `src/adapters/outputs/airplay/airplaySender.ts` (+38 -9) _...and 29 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 19:28:45 +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/lox-audioserver#180
No description provided.