diff --git a/docs/changelog.rst b/docs/changelog.rst index 063153a8..b2011fe2 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,8 +16,8 @@ Feature release. - MPD: Fix MPD protocol for ``replay_gain_status`` command. The actual command remains unimplemented. (PR: :issue:`1520`) -- MPD: Add ``nextsong`` and ``nextsongid`` to the response of MPD ``status`` command. - (Fixes: :issue:`1133`, :issue:`1516`, PR: :issue:`1523`) +- MPD: Add ``nextsong`` and ``nextsongid`` to the response of MPD ``status`` + command. (Fixes: :issue:`1133`, :issue:`1516`, PR: :issue:`1523`) - Local: Skip hidden directories directly in ``media_dir``. (Fixes: :issue:`1559`, PR: :issue:`1555`) @@ -28,6 +28,7 @@ Feature release. :attr:`mopidy.models.Album.date` (Fixes: :issue:`1741`) + v2.0.1 (2016-08-16) =================== diff --git a/docs/installation/debian.rst b/docs/installation/debian.rst index a1ad339e..65b46d58 100644 --- a/docs/installation/debian.rst +++ b/docs/installation/debian.rst @@ -16,8 +16,6 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See The packages are built for: -- Debian wheezy (oldstable), which also works for Raspbian wheezy and Ubuntu - 12.04 LTS. - Debian jessie (stable), which also works for Raspbian jessie and Ubuntu 14.04 LTS and newer. @@ -35,11 +33,7 @@ and armhf (compatible with Raspberry Pi 1 and 2). wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add - -#. If you run Debian wheezy or Ubuntu 12.04 LTS:: - - sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/wheezy.list - - Or, if you run any newer Debian/Ubuntu distro:: +#. Add the APT repo to your package sources:: sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/jessie.list diff --git a/docs/installation/raspberrypi.rst b/docs/installation/raspberrypi.rst index f62bb124..3a3f6029 100644 --- a/docs/installation/raspberrypi.rst +++ b/docs/installation/raspberrypi.rst @@ -14,8 +14,6 @@ to use on a Raspberry Pi 2. :height: 363 -.. _raspi-wheezy: - How to for Raspbian Jessie ========================== diff --git a/mopidy/local/storage.py b/mopidy/local/storage.py index aaa74fba..e1771530 100644 --- a/mopidy/local/storage.py +++ b/mopidy/local/storage.py @@ -9,5 +9,5 @@ logger = logging.getLogger(__name__) def check_dirs_and_files(config): if not os.path.isdir(config['local']['media_dir']): logger.warning( - 'Local media dir %s does not exist.' % - config['local']['media_dir']) + 'Local media dir %s does not exist or we lack permissions to the ' + 'directory or one of its parents' % config['local']['media_dir'])