fetchart: fix extension-less files from CAA

This commit is contained in:
Adrian Sampson 2012-08-02 09:46:57 -07:00
parent e1d11085ae
commit 701d8cf204
5 changed files with 12 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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)
----------------------

View file

@ -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'

View file

@ -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',