Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
* Initial release.
  • Loading branch information
DavisNT committed Mar 26, 2016
1 parent e01a82e commit 62f1214
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand All @@ -64,3 +64,7 @@ Project resources
Changelog
=========

v0.1.0
----------------------------------------

- Initial release.
2 changes: 1 addition & 1 deletion mopidy_playbackdefaults/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from mopidy import config, ext

__version__ = '0.0.1'
__version__ = '0.1.0'


class PDExtension(ext.Extension):
Expand Down

0 comments on commit 62f1214

Please sign in to comment.