From bc84ba8f36e58654f78a74dc29e739c30158f5df Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 10 Apr 2011 11:55:13 -0700 Subject: [PATCH] NEWS note and typo fixes --- NEWS | 2 ++ beets/mediafile.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 61a453d40..c5d73d870 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,8 @@ importing, you can choose the "as Tracks" (T) option to add singletons to your library. The query "singleton:true" matches only singleton tracks; "singleton:false" matches only album tracks. +* Support for album art embedded in files. The "embedcoverart" plugin + provides this functionality. (Thanks, daenney!) * The "distance" number, which quantifies how different an album's current and proposed metadata are, is now displayed as "similarity" instead. This should be less noisy and confusing; you'll now see diff --git a/beets/mediafile.py b/beets/mediafile.py index 12df16e41..0ceed8b8a 100644 --- a/beets/mediafile.py +++ b/beets/mediafile.py @@ -681,10 +681,10 @@ class MediaFile(object): mp3 = StorageStyle('APIC', id3_desc=u'Cover'), ) albumart_mime = MediaField( - mp3 = StorageStyple('APIC', mime=u''), + mp3 = StorageStyle('APIC', mime=u''), ) albumart_data = MediaField( - mp3 = StorageStyple('APIC', data=u''), + mp3 = StorageStyle('APIC', data=u''), mp4 = StorageStyle('covr', as_type=str), etc = StorageStyle('picture') )