Note XDG change in changes file

This commit is contained in:
Thomas Adamcik 2011-07-17 02:33:21 +02:00
parent a0c62f8245
commit c5b7d5a35e
2 changed files with 14 additions and 2 deletions

View File

@ -12,6 +12,18 @@ v0.6.0 (in development)
- Pykka 0.12.3 or greater is required.
- All config, data and cache locations are now based on the XDG spec.
- This means that your settings file will need to be moved from
`~/.mopidy/settings.py` to `~/.config/mopidy/settings.py`.
- Your Spotify cache will now be stored in `~/.cache/spotify` instead of
`~/.mopidy/spotify_cache`, this matches Spotify's own behaviour for their
Linux client.
- Localbackends tag_cache should now be in `~/.local/share/mopidy/tag_cache`,
likewise your playlists will be in `~/.local/share/mopidy/playlists`.
- The local client now tries to lookup where your music is via XDG, it will
fall-back to `~/music` or use whatever setting you set manually.
**Changes**
- Replace :attr:`mopidy.backends.base.Backend.uri_handlers` with

View File

@ -86,8 +86,8 @@ def check_old_folders():
return
logger.warning(u'Old settings folder found at %s, settings.py should be '
'moved to %s, any cache data should be deleted.', old_settings_folder,
SETTINGS_FOLDER)
'moved to %s, any cache data should be deleted. See release notes '
'for further instructions.', old_settings_folder, SETTINGS_FOLDER)
def setup_settings(interactive):
get_or_create_folder(SETTINGS_FOLDER)