Merge branch 'develop' of github.com:mopidy/mopidy into develop

This commit is contained in:
Thomas Adacmik 2013-04-28 00:25:35 +02:00
commit 9c536d3bbe
2 changed files with 12 additions and 1 deletions

View File

@ -51,6 +51,10 @@ and improved.
- The NAD mixer have been moved out of Mopidy core to its own project,
Mopidy-NAD. See :ref:`ext` for more information.
- Janez Troha have made the two first extensions for Mopidy: a backend for
playing music from Soundcloud, and a backend for playing music from a Beets
music library. See :ref:`ext` for more information.
**Command line options**
- The command option :option:`mopidy --list-settings` is now named
@ -90,6 +94,13 @@ and improved.
unset. This prevents some harmless error messages to appear, and thus
to confuse users debugging other problems.
**Development**
- Developers running Mopidy from a Git clone needs to run ``python setup.py
develop`` to register the bundled extensions. If you don't do this, Mopidy
will not find any frontends or backends. As a bonus, the command also gives
you a ``mopidy`` executable in your virtualenv.
v0.13.0 (2013-03-31)
====================

View File

@ -66,7 +66,7 @@ def _load(files, defaults, overrides):
parser = configparser.RawConfigParser()
files = [path.expand_path(f) for f in files]
sources = ['builtin-defaults'] + files + ['command-line']
sources = ['builtin defaults'] + files + ['command line options']
logger.info('Loading config from: %s', ', '.join(sources))
# TODO: simply return path to config file for defaults so we can load it