diff --git a/docs/changelog.rst b/docs/changelog.rst index 9245b2a8..7e64eb46 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) ==================== diff --git a/mopidy/config/__init__.py b/mopidy/config/__init__.py index abb44eea..1c688182 100644 --- a/mopidy/config/__init__.py +++ b/mopidy/config/__init__.py @@ -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