From 60b071dbbdf45e7905cfbb06a54df5f0f71bf27e Mon Sep 17 00:00:00 2001 From: Thomas Kemmer Date: Sun, 10 Jan 2016 20:08:20 +0100 Subject: [PATCH] m3u: Update changelog for PR #1386. --- docs/changelog.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index ed382701..cdf6740e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -48,6 +48,23 @@ M3U backend - Derive track name from file name for non-extended M3U playlists. (Fixes: :issue:`1364`, PR: :issue:`1369`) +- Major refactoring of the M3U playlist extension. (Fixes: + :issue:`1370` PR: :issue:`1386`) + + - Add :confval:`m3u/default_encoding` and :confval:`m3u/default_extension` + config values for improved text encoding support. + + - No longer scan playlist directory and parse playlists at startup or refresh. + Similarly to the file extension, this now happens on request. + + - Use :class:`mopidy.models.Ref` instances when reading and writing + playlists. Therefore, ``Track.length`` is no longer stored in + extended M3U playlists and ``#EXTINF`` runtime is always set to + -1. + + - Improve reliability of playlist updates using the core playlist API by + applying the write-replace pattern for file updates. + MPD frontend ------------