From 62f12148d3c2faa8a5049fcd7f75cf1bf610b3c0 Mon Sep 17 00:00:00 2001 From: Davis Mosenkovs Date: Sun, 27 Mar 2016 01:07:02 +0200 Subject: [PATCH] Version 0.1.0 * Initial release. --- README.rst | 12 ++++++++---- mopidy_playbackdefaults/__init__.py | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 40e86bf..8b8f7d4 100644 --- a/README.rst +++ b/README.rst @@ -35,16 +35,16 @@ Configuration After installing the extension playback defaults can be configured in ``mopidy.conf`` config file (each setting accepts values *true* or *false*, all settings are optional):: [playbackdefaults] - # To set Random option (in this case enable it) + # To set default for Random option (in this case enable it) default_random = true - # To set Repeat option (in this case enable it) + # To set default for Repeat option (in this case enable it) default_repeat = true - # To set Consume option (in this case ensure it is disabled) + # To set default for Consume option (in this case ensure it is disabled) default_consume = false - # To set Single option (in this case ensure it is disabled) + # To set default for Single option (in this case ensure it is disabled) default_single = false @@ -64,3 +64,7 @@ Project resources Changelog ========= +v0.1.0 +---------------------------------------- + +- Initial release. diff --git a/mopidy_playbackdefaults/__init__.py b/mopidy_playbackdefaults/__init__.py index d4a37b7..e5f844a 100644 --- a/mopidy_playbackdefaults/__init__.py +++ b/mopidy_playbackdefaults/__init__.py @@ -4,7 +4,7 @@ from mopidy import config, ext -__version__ = '0.0.1' +__version__ = '0.1.0' class PDExtension(ext.Extension):