docs: Add changelog for the scanner improvements

This commit is contained in:
Thomas Adamcik 2015-03-13 22:45:57 +01:00
parent faab0b755a
commit 6b7f9b4899

View File

@ -144,6 +144,13 @@ v0.20.0 (UNRELEASED)
- Update scanner to operate with milliseconds for duration.
- Update scanner to use a custom src, typefind and decodebin. This allows us
to catch playlists before we try to decode them.
- Refactored scanner to create a new pipeline per song, this is needed as
reseting decodebin is much slower than tearing it down and making a fresh
one.
- Add :meth:`mopidy.audio.AudioListener.tags_changed`. Notifies core when new tags
are found.
@ -163,6 +170,12 @@ v0.20.0 (UNRELEASED)
- Add workaround for volume not persisting across tracks on OS X.
(Issue: :issue:`886`, PR: :issue:`958`)
- Improved missing plugin error reporting in scanner.
- Introduced a new return type for the scanner, a named tuple with ``uri``,
``tags``, ``duration``, ``seekable`` and ``mime``. Also added support for
checking seekable, and the initial MIME type guess.
**Stream backend**
- Add basic tests for the stream library provider.