mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 09:22:55 +01:00
Fix #1588: fetchart gets PNGs, not GIFs
This commit is contained in:
parent
086b97173b
commit
854a4539cb
2 changed files with 4 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ except ImportError:
|
|||
HAVE_ITUNES = False
|
||||
|
||||
IMAGE_EXTENSIONS = ['png', 'jpg', 'jpeg']
|
||||
CONTENT_TYPES = ('image/jpeg', 'image/gif')
|
||||
CONTENT_TYPES = ('image/jpeg', 'image/png')
|
||||
DOWNLOAD_EXTENSION = '.jpg'
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,9 @@ Fixes:
|
|||
option.
|
||||
* The :ref:`list-cmd` command's help output now has a small query and format
|
||||
string example. Thanks to :user:`pkess`. :bug:`1582`
|
||||
* :doc:`/plugins/fetchart`: The plugin now fetches PNGs but not GIFs. (It
|
||||
still fetches JPEGs.) This avoids an error when trying to embed images,
|
||||
since not all formats support GIFs. :bug:`1588`
|
||||
|
||||
|
||||
1.3.14 (August 2, 2015)
|
||||
|
|
|
|||
Loading…
Reference in a new issue