Merge branch 'develop' of http://github.com/mopidy/mopidy into develop

This commit is contained in:
Thomas Adamcik 2011-04-25 20:37:50 +02:00
commit e1ef4171b5
27 changed files with 15 additions and 5 deletions

View File

@ -40,6 +40,9 @@ No description yet.
- Better error messages on wrong login or network problems. Thanks to Antoine
Pierlot-Garcin for patches to Mopidy and Pyspotify. (Fixes: :issue:`77`)
- Reduce log level for trivial log messages from warning to info. (Fixes:
:issue:`71`)
- Local backend:
- Fix crash in :command:`mopidy-scan` if a track has no artist name. Thanks
@ -66,6 +69,11 @@ No description yet.
- Fix crash on ``--list-settings`` on clean installation. Thanks to Martins
Grunskis for the bug report and patch. (Fixes: :issue:`63`)
- Packaging:
- Replace test data symlinks with real files to avoid symlink issues when
installing with pip. (Fixes: :issue:`68`)
0.3.1 (2010-01-22)
==================

View File

@ -202,4 +202,4 @@ latex_documents = [
needs_sphinx = '1.0'
extlinks = {'issue': ('http://github.com/mopidy/mopidy/issues#issue/%s', 'GH-')}
extlinks = {'issue': ('http://github.com/mopidy/mopidy/issues/%s', 'GH-')}

View File

@ -23,7 +23,7 @@ class SpotifyPlaybackProvider(BasePlaybackProvider):
self.backend.output.play_uri('appsrc://')
return True
except SpotifyError as e:
logger.warning('Play %s failed: %s', track.uri, e)
logger.info('Playback of %s failed: %s', track.uri, e)
return False
def resume(self):

View File

@ -62,5 +62,5 @@ class SpotifyTranslator(object):
if str(Link.from_track(t, 0))],
)
except SpotifyError, e:
logger.warning(u'Failed translating Spotify playlist '
logger.info(u'Failed translating Spotify playlist '
'(probably a playlist folder boundary): %s', e)

View File

@ -23,9 +23,11 @@ def main():
setup_backend()
setup_frontends()
try:
time.sleep(10000*24*60*60)
while ActorRegistry.get_all():
time.sleep(1)
logger.info(u'No actors left. Exiting...')
except KeyboardInterrupt:
logger.info(u'Exiting...')
logger.info(u'User interrupt. Exiting...')
ActorRegistry.stop_all()
def parse_options():

View File

@ -1 +0,0 @@
../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../../../sample.mp3

View File

@ -1 +0,0 @@
../../../sample.mp3

View File

@ -1 +0,0 @@
../../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
../sample.mp3

Binary file not shown.

View File

@ -1 +0,0 @@
blank.flac

BIN
tests/data/song1.flac Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.mp3

BIN
tests/data/song1.mp3 Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.ogg

BIN
tests/data/song1.ogg Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.wav

BIN
tests/data/song1.wav Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.flac

BIN
tests/data/song2.flac Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.mp3

BIN
tests/data/song2.mp3 Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.ogg

BIN
tests/data/song2.ogg Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.wav

BIN
tests/data/song2.wav Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.flac

BIN
tests/data/song3.flac Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.mp3

BIN
tests/data/song3.mp3 Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.ogg

BIN
tests/data/song3.ogg Normal file

Binary file not shown.

View File

@ -1 +0,0 @@
blank.wav

BIN
tests/data/song3.wav Normal file

Binary file not shown.