Updated CHANGELOG for v0.8.12 and bump version

This commit is contained in:
Sumner Evans
2020-02-20 16:56:32 -07:00
parent 96ee4dc3a5
commit bb012b7038
3 changed files with 42 additions and 1 deletions

View File

@@ -1,3 +1,39 @@
v0.8.12
=======
* When album cover art is not provided by the server, a default album art image
is used (Contributed by @sentriz.)
* **New Setting**: *Serve locally cached files over the LAN to Chromecast
devices.*: If checked, a local server will be started on your computer which
will serve your locally cached music files to the Chromecast. If not checked,
the Chromecast will always stream from the server.
* When serving local files, the internal server now only exposes one song at a
time via a token and the song's token is randomized.
* The *Sync enabled* setting was renamed to *Play queue sync enabled*.
* **Bug Fixes**
* Fixed issue where the UI was still in a "Playing" state after removing all
songs from the play queue.
* Fixed a multitude of problems where the wrong data would load if you quickly
move around between cached and un-cached information.
* When you use the Google Home app to cause the device that Sublime is using
to "Stop Casting", Sublime now shows as paused.
* The Chromecast device list are only requested after the first time you click
on the Devices button.
* Seeking now works with the mouse and keyboard.
* **Documentation**
* Updated the CONTRIBUTING document to the current state of the Sublime Music
codebase.
* Added documentation for all of the settings available in Sublime Music.
* **Infrastructure**
* Fixed logo build step.
* Moved ``player`` module to root instead of being under ``ui.common``.
v0.8.11
=======

View File

@@ -31,6 +31,11 @@ Show notification when song begins to play : (bool)
If checked, a notification containing the new song's title, artist, album,
and album art will be shown through your notification daemon.
Serve locally cached files over the LAN to Chromecast devices : (bool)
If checked, a local server will be started on your computer which will serve
your locally cached music files to the Chromecast. If not checked, the
Chromecast will always stream from the server.
How many songs in the play queue do you want to prefetch? : (int)
If the next :math:`n` songs in the play queue are not already downloaded,
they will be downloaded. (This has no effect if *Always stream songs* is

View File

@@ -1 +1 @@
__version__ = '0.8.11'
__version__ = '0.8.12'