NEWS note and typo fixes

This commit is contained in:
Adrian Sampson 2011-04-10 11:55:13 -07:00
parent b4b3fd308a
commit bc84ba8f36
2 changed files with 4 additions and 2 deletions

2
NEWS
View file

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

View file

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