Improvements:
- Use library lookups instead of relying on playlist schemes to differentiate between playlists and normal tracks. The old behaviour breaks with spotify:URIs (the scheme is registered in the playlist schemes, which means track URIs are processed as playlist URIs, preventing them to be added to the tracklist). Thanks @fmauNeko! (PR #7) Note, that this is not released, until I get a more thorough explanation by @fmauNeko (see discussion to PR #7).
New features:
- Auto save: Save the state not just when Mopidy shuts down, but at (configurable) events. To reduce stress on a SD card, a save interval can be configured. See #6, thanks @Race666 and @mikiair! (Closes #4)
Bugs:
- Fix the section name for the example of the ini file shown in the README.md file. (Fixes #5)
- Seek only, if not stopped. Thanks @fmauNeko! (PR #7)
Bugs:
- No double encoding of uris. (Fixes first issue in #3)
Improvements:
- Sometimes tracks cannot be loaded into the tracklist. The URIs of these tracks are now logged with a warning message mentioning possible reasons. it also plays the next available track. (Fixes second issue in #3)
- Remvove "Autoplay: " from log messages.
Bugs:
- 'Playback stopped' now stops.
Improvements:
- README.rst mentions possible conflict with
core/restore_state = true
. - README.rst mentions possible problems, if backends needs longer to initialize.
- README.rst explains that by using the
File
extension (URI starts withfile://
) you can load any file permission permitted.
New features:
- Playlists can be specified in
autostart/tracklist.uris
with e.g.m3u://
. The items of the playlist are inserted into the tracklist in the position, where the playlist entry occurs. The playlist scheme specified must be supported by Mopidy. - Glob patterns can now be specified in
autostart/tracklist.uris
forfile://
URIs to insert many files into the tracklist. The URI ismatch:file://
followed by the file pattern, e.g.match:file:///usr/share/sounds/alsa/*.wav
. TheFile
extension must be enabled. (Bug #1)
Bugs:
- Index defaults always to 0. (If Mopidy is closed with nothing playing, no index could not be saved and so the default index after starting was none.)
Improvements:
- Mention 'core/restore_state' in README.rst.
- Add section "How to find the URIs?" to README.rst.
- Typo in README.rst corrected.
- Initial release.