Merge branch 'develop' into fix/1479-cant-play-rtsp

This commit is contained in:
Thomas Adamcik 2016-10-24 23:20:52 +02:00
commit e161e9b26c
4 changed files with 6 additions and 13 deletions

View File

@ -16,8 +16,8 @@ Feature release.
- MPD: Fix MPD protocol for ``replay_gain_status`` command. The actual command - MPD: Fix MPD protocol for ``replay_gain_status`` command. The actual command
remains unimplemented. (PR: :issue:`1520`) remains unimplemented. (PR: :issue:`1520`)
- MPD: Add ``nextsong`` and ``nextsongid`` to the response of MPD ``status`` command. - MPD: Add ``nextsong`` and ``nextsongid`` to the response of MPD ``status``
(Fixes: :issue:`1133`, :issue:`1516`, PR: :issue:`1523`) command. (Fixes: :issue:`1133`, :issue:`1516`, PR: :issue:`1523`)
- Local: Skip hidden directories directly in ``media_dir``. - Local: Skip hidden directories directly in ``media_dir``.
(Fixes: :issue:`1559`, PR: :issue:`1555`) (Fixes: :issue:`1559`, PR: :issue:`1555`)
@ -28,6 +28,7 @@ Feature release.
:attr:`mopidy.models.Album.date` :attr:`mopidy.models.Album.date`
(Fixes: :issue:`1741`) (Fixes: :issue:`1741`)
v2.0.1 (2016-08-16) v2.0.1 (2016-08-16)
=================== ===================

View File

@ -16,8 +16,6 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See
The packages are built for: 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 - Debian jessie (stable), which also works for Raspbian jessie and Ubuntu 14.04
LTS and newer. 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 - wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add -
#. If you run Debian wheezy or Ubuntu 12.04 LTS:: #. Add the APT repo to your package sources::
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::
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/jessie.list sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/jessie.list

View File

@ -14,8 +14,6 @@ to use on a Raspberry Pi 2.
:height: 363 :height: 363
.. _raspi-wheezy:
How to for Raspbian Jessie How to for Raspbian Jessie
========================== ==========================

View File

@ -9,5 +9,5 @@ logger = logging.getLogger(__name__)
def check_dirs_and_files(config): def check_dirs_and_files(config):
if not os.path.isdir(config['local']['media_dir']): if not os.path.isdir(config['local']['media_dir']):
logger.warning( logger.warning(
'Local media dir %s does not exist.' % 'Local media dir %s does not exist or we lack permissions to the '
config['local']['media_dir']) 'directory or one of its parents' % config['local']['media_dir'])