mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
fetchart: fix extension-less files from CAA
This commit is contained in:
parent
e1d11085ae
commit
701d8cf204
5 changed files with 12 additions and 6 deletions
|
|
@ -12,7 +12,7 @@
|
|||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
__version__ = '1.0b15'
|
||||
__version__ = '1.0b16'
|
||||
__author__ = 'Adrian Sampson <adrian@radbox.org>'
|
||||
|
||||
import beets.library
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ def _fetch_image(url):
|
|||
|
||||
# Cover Art Archive.
|
||||
|
||||
CAA_URL = 'http://coverartarchive.org/release/{mbid}/front-500'
|
||||
CAA_URL = 'http://coverartarchive.org/release/{mbid}/front-500.jpg'
|
||||
|
||||
def caa_art(release_id):
|
||||
"""Fetch album art from the Cover Art Archive given a MusicBrainz
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
1.0b16 (in development)
|
||||
-----------------------
|
||||
|
||||
* :doc:`/plugins/fetchart`: Fix a bug where cover art filenames could lack
|
||||
a ``.jpg`` extension.
|
||||
|
||||
1.0b15 (July 26, 2012)
|
||||
----------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ source_suffix = '.rst'
|
|||
master_doc = 'index'
|
||||
|
||||
project = u'beets'
|
||||
copyright = u'2011, Adrian Sampson'
|
||||
copyright = u'2012, Adrian Sampson'
|
||||
|
||||
version = '1.0b15'
|
||||
release = '1.0b15'
|
||||
version = '1.0b16'
|
||||
release = '1.0b16'
|
||||
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -42,7 +42,7 @@ if 'sdist' in sys.argv:
|
|||
shutil.copytree(os.path.join(docdir, '_build', 'man'), mandir)
|
||||
|
||||
setup(name='beets',
|
||||
version='1.0b15',
|
||||
version='1.0b16',
|
||||
description='music tagger and library organizer',
|
||||
author='Adrian Sampson',
|
||||
author_email='adrian@radbox.org',
|
||||
|
|
|
|||
Loading…
Reference in a new issue