Merge branch 'develop' into fix/1479-cant-play-rtsp
This commit is contained in:
commit
e161e9b26c
@ -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)
|
||||
===================
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -14,8 +14,6 @@ to use on a Raspberry Pi 2.
|
||||
:height: 363
|
||||
|
||||
|
||||
.. _raspi-wheezy:
|
||||
|
||||
How to for Raspbian Jessie
|
||||
==========================
|
||||
|
||||
|
||||
@ -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'])
|
||||
|
||||
Loading…
Reference in New Issue
Block a user