Require upgrade of libspotify to 0.0.6, and pyspotify from the mopidy branch
This commit is contained in:
parent
015552239c
commit
9cfd167979
@ -10,6 +10,12 @@ This change log is used to track all major changes to Mopidy.
|
|||||||
|
|
||||||
No description yet.
|
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**
|
**Changes**
|
||||||
|
|
||||||
- Settings:
|
- Settings:
|
||||||
@ -31,6 +37,11 @@ No description yet.
|
|||||||
application menus.
|
application menus.
|
||||||
- Create infrastructure for creating Debian packages of Mopidy.
|
- 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:
|
- Local backend:
|
||||||
|
|
||||||
- Add :command:`mopidy-scan` command to generate ``tag_cache`` files without
|
- Add :command:`mopidy-scan` command to generate ``tag_cache`` files without
|
||||||
|
|||||||
@ -5,7 +5,7 @@ libspotify installation
|
|||||||
Mopidy uses `libspotify
|
Mopidy uses `libspotify
|
||||||
<http://developer.spotify.com/en/libspotify/overview/>`_ for playing music from
|
<http://developer.spotify.com/en/libspotify/overview/>`_ for playing music from
|
||||||
the Spotify music service. To use :mod:`mopidy.backends.libspotify` you must
|
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::
|
.. warning::
|
||||||
|
|
||||||
@ -22,14 +22,14 @@ install libspotify and `pyspotify <http://github.com/winjer/pyspotify>`_.
|
|||||||
Installing libspotify on Linux
|
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/.
|
https://developer.spotify.com/en/libspotify/.
|
||||||
|
|
||||||
For 64-bit Linux the process is as follows::
|
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
|
wget http://developer.spotify.com/download/libspotify/libspotify-0.0.6-linux6-x86_64.tar.gz
|
||||||
tar zxfv libspotify-0.0.4-linux6-x86_64.tar.gz
|
tar zxfv libspotify-0.0.6-linux6-x86_64.tar.gz
|
||||||
cd libspotify-0.0.4-linux6-x86_64/
|
cd libspotify-0.0.6-linux6-x86_64/
|
||||||
sudo make install prefix=/usr/local
|
sudo make install prefix=/usr/local
|
||||||
sudo ldconfig
|
sudo ldconfig
|
||||||
|
|
||||||
@ -46,6 +46,11 @@ libspotify::
|
|||||||
|
|
||||||
brew install 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
|
When libspotify has been installed, continue with
|
||||||
:ref:`pyspotify_installation`.
|
:ref:`pyspotify_installation`.
|
||||||
|
|
||||||
@ -69,7 +74,8 @@ In OS X no additional dependencies are needed.
|
|||||||
|
|
||||||
Check out the pyspotify code, and install it::
|
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/
|
cd pyspotify/pyspotify/
|
||||||
sudo rm -rf build/ # If you are upgrading pyspotify
|
sudo rm -rf build/ # If you are upgrading pyspotify
|
||||||
sudo python setup.py install
|
sudo python setup.py install
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user