Skip to content

Commit

Permalink
Merge pull request #104 from sindrig/v1.4.4
Browse files Browse the repository at this point in the history
V1.4.4
  • Loading branch information
sindrig committed Apr 6, 2016
2 parents 2bd9101 + 6234c79 commit 36dc4e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You will need libspotify, libffi-dev and libasound2-dev installed.

Use your distribution's package manager for libffi-dev and libasound2-dev.

To install libspotify, see `Pyspotify installation <https://docs.mopidy.com/en/v0.8.1/installation/libspotify/>`_. (It's also available in the `AUR <https://aur.archlinux.org/packages/libspotify/>`_).
To install libspotify, see `Pyspotify installation <https://pyspotify.mopidy.com/en/latest/installation/#install-from-source>`_. (It's also available in the `AUR <https://aur.archlinux.org/packages/libspotify/>`_).

For DBus integration you'll need python-dbus and python-gobject2. Use your distribution's package manager. Spoppy will work without these packages but won't expose it's DBus procedures.

Expand Down
2 changes: 1 addition & 1 deletion spoppy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def get_version():
return '1.4.3'
return '1.4.4'

if click:
@click.command()
Expand Down
6 changes: 6 additions & 0 deletions spoppy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

from appdirs import user_cache_dir

try:
# python2.7
input = raw_input
except NameError:
pass

CONFIG_FILE_NAME = os.path.join(
user_cache_dir(appname='spoppy'), '.creds'
)
Expand Down

0 comments on commit 36dc4e4

Please sign in to comment.