From 701d8cf204e73b26092fcc485cb446cb78a0c146 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 2 Aug 2012 09:46:57 -0700 Subject: [PATCH] fetchart: fix extension-less files from CAA --- beets/__init__.py | 2 +- beetsplug/fetchart.py | 2 +- docs/changelog.rst | 6 ++++++ docs/conf.py | 6 +++--- setup.py | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index 974c62b80..e0fa5a025 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -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 ' import beets.library diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 8282a3771..68906c1c4 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -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 diff --git a/docs/changelog.rst b/docs/changelog.rst index fa00bc337..6f181149d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) ---------------------- diff --git a/docs/conf.py b/docs/conf.py index e72c5c8dc..95cd09e47 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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' diff --git a/setup.py b/setup.py index df48b94aa..41e74e4f0 100755 --- a/setup.py +++ b/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',