Require upgrade of libspotify to 0.0.6, and pyspotify from the mopidy branch

This commit is contained in:
Stein Magnus Jodal 2010-11-23 00:56:10 +01:00
parent 015552239c
commit 9cfd167979
2 changed files with 23 additions and 6 deletions

View File

@ -10,6 +10,12 @@ This change log is used to track all major changes to Mopidy.
No description yet.
**Important changes**
- If you use the Spotify backend, you need to upgrade to libspotify 0.0.6 and
the latest pyspotify from the Mopidy developers. Follow the instructions at
:ref:`/installation/libspotify/`.
**Changes**
- Settings:
@ -31,6 +37,11 @@ No description yet.
application menus.
- Create infrastructure for creating Debian packages of Mopidy.
- Spotify backend:
- Support high bitrate (320k). See
:attr:`mopidy.settings.SPOTIFY_HIGH_BITRATE` for details.
- Local backend:
- Add :command:`mopidy-scan` command to generate ``tag_cache`` files without

View File

@ -5,7 +5,7 @@ libspotify installation
Mopidy uses `libspotify
<http://developer.spotify.com/en/libspotify/overview/>`_ for playing music from
the Spotify music service. To use :mod:`mopidy.backends.libspotify` you must
install libspotify and `pyspotify <http://github.com/winjer/pyspotify>`_.
install libspotify and `pyspotify <http://github.com/mopidy/pyspotify>`_.
.. warning::
@ -22,14 +22,14 @@ install libspotify and `pyspotify <http://github.com/winjer/pyspotify>`_.
Installing libspotify on Linux
==============================
Download and install libspotify 0.0.4 for your OS and CPU architecture from
Download and install libspotify 0.0.6 for your OS and CPU architecture from
https://developer.spotify.com/en/libspotify/.
For 64-bit Linux the process is as follows::
wget http://developer.spotify.com/download/libspotify/libspotify-0.0.4-linux6-x86_64.tar.gz
tar zxfv libspotify-0.0.4-linux6-x86_64.tar.gz
cd libspotify-0.0.4-linux6-x86_64/
wget http://developer.spotify.com/download/libspotify/libspotify-0.0.6-linux6-x86_64.tar.gz
tar zxfv libspotify-0.0.6-linux6-x86_64.tar.gz
cd libspotify-0.0.6-linux6-x86_64/
sudo make install prefix=/usr/local
sudo ldconfig
@ -46,6 +46,11 @@ libspotify::
brew install libspotify
To update your existing libspotify installation using Homebrew::
brew update
brew install `brew outdated`
When libspotify has been installed, continue with
:ref:`pyspotify_installation`.
@ -69,7 +74,8 @@ In OS X no additional dependencies are needed.
Check out the pyspotify code, and install it::
git clone git://github.com/jodal/pyspotify.git
wget --no-check-certificate -O pyspotify.tar.gz https://github.com/mopidy/pyspotify/tarball/mopidy
tar zxfv pyspotify.tar.gz
cd pyspotify/pyspotify/
sudo rm -rf build/ # If you are upgrading pyspotify
sudo python setup.py install