Update CHANGELOG

This commit is contained in:
Sumner Evans
2020-07-06 16:49:34 -06:00
parent 42f97896e1
commit 216442e2ec
3 changed files with 18 additions and 3 deletions

View File

@@ -10,17 +10,30 @@ v0.10.4
within the Flatpak environment. See `Issue #218 within the Flatpak environment. See `Issue #218
<https://gitlab.com/sumner/sublime-music/-/issues/218_>`_ <https://gitlab.com/sumner/sublime-music/-/issues/218_>`_
**Website:** Sublime Music has a website! https://sublimemusic.app **New Website:** Sublime Music has a website! https://sublimemusic.app
**Packaging** **Distro Packages**
* Sublime Music is now available in Debian Unstable, and hopefully soon in * Sublime Music is now available in Debian Unstable, and hopefully soon in
Debian Testing. Debian Testing.
**Feature Improvements**
* Player settings now get applied immediately, rather than after restarting
Sublime Music.
* Getting the list of Chromecasts for the Device popup now happens much faster.
**Bug Fixes** **Bug Fixes**
* Loading the play queue from the server is now more reliable and works properly * Loading the play queue from the server is now more reliable and works properly
with Gonic (Contributed by @sentriz). with Gonic (Contributed by @sentriz).
* *Regression Fix*: The load play queue button in the play queue popup works
again.
**Under the Hood**
* The API for players has been greatly improved and is now actually documented
which will enable more player types in the future.
v0.10.3 v0.10.3
======= =======

View File

@@ -1 +1 @@
__version__ = "0.10.3" __version__ = "0.10.4"

View File

@@ -1108,6 +1108,8 @@ class SublimeMusicApp(Gtk.Application):
if order_token != self.song_playing_order_token: if order_token != self.song_playing_order_token:
return return
# TODO (#189): make this actually use the player's allowed list of schemes
# to play.
uri = AdapterManager.get_song_filename_or_stream(song) uri = AdapterManager.get_song_filename_or_stream(song)
# Prevent it from doing the thing where it continually loads # Prevent it from doing the thing where it continually loads