1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 09:49:31 +02:00

chore: update CHANGELOG

This commit is contained in:
Felix Prillwitz 2025-09-24 22:16:00 +02:00
parent 3dee97321b
commit f0d6afe3e7
No known key found for this signature in database
GPG key ID: DE334B43606D1455
2 changed files with 4 additions and 1 deletions

View file

@ -19,6 +19,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [player] `preload` function changed from accepting a `SpotifyId` to accepting a `SpotifyUri` (breaking) - [player] `preload` function changed from accepting a `SpotifyId` to accepting a `SpotifyUri` (breaking)
- [spclient] `get_radio_for_track` function changed from accepting a `SpotifyId` to accepting a `SpotifyUri` (breaking) - [spclient] `get_radio_for_track` function changed from accepting a `SpotifyId` to accepting a `SpotifyUri` (breaking)
### Fixed
- [connect] Use the provided index or the first as fallback value to always play a track on loading
### Removed ### Removed

View file

@ -406,7 +406,7 @@ fn launch_libmdns(
} }
.map_err(|e| DiscoveryError::DnsSdError(Box::new(e)))?; .map_err(|e| DiscoveryError::DnsSdError(Box::new(e)))?;
let svc = responder.register(&DNS_SD_SERVICE_NAME, &name, port, &TXT_RECORD); let svc = responder.register(DNS_SD_SERVICE_NAME, &name, port, &TXT_RECORD);
let _ = shutdown_rx.blocking_recv(); let _ = shutdown_rx.blocking_recv();