mirror of
https://github.com/beetbox/beets.git
synced 2025-12-14 20:43:41 +01:00
NEWS note and typo fixes
This commit is contained in:
parent
b4b3fd308a
commit
bc84ba8f36
2 changed files with 4 additions and 2 deletions
2
NEWS
2
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
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue