From 4828d9cfba4cddfa00d50b25d72811cea5f2f74d Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 27 Apr 2013 23:58:15 +0200 Subject: [PATCH 1/3] docs: Add note on new extensions to changelog --- docs/changelog.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9245b2a8..2bb88bb6 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 From 4efb1f8071a429162e0a7c684b170444be483d3e Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 27 Apr 2013 23:58:30 +0200 Subject: [PATCH 2/3] docs: Add note on 'python setup.py develop' to changelog --- docs/changelog.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2bb88bb6..7e64eb46 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -94,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) ==================== From 33747d76eb39f5b2a3b67cdcb7989fe8f2e07bf6 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 28 Apr 2013 00:19:13 +0200 Subject: [PATCH 3/3] config: Remove dashes in free text config sources --- mopidy/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/config/__init__.py b/mopidy/config/__init__.py index 66e17c5e..8a6e5f25 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