mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 19:42:42 +01:00
Refresh flexible MusicBrainz metadata on reimport (#6064)
Fixes #6036 - [x] Changelog. (Add an entry to `docs/changelog.rst` to the bottom of one of the lists near the top of the document.)
This commit is contained in:
commit
fe98841e72
2 changed files with 5 additions and 2 deletions
|
|
@ -51,15 +51,16 @@ SINGLE_ARTIST_THRESH = 0.25
|
|||
# def extend_reimport_fresh_fields_item():
|
||||
# importer.REIMPORT_FRESH_FIELDS_ITEM.extend(['tidal_track_popularity']
|
||||
# )
|
||||
REIMPORT_FRESH_FIELDS_ALBUM = [
|
||||
REIMPORT_FRESH_FIELDS_ITEM = [
|
||||
"data_source",
|
||||
"bandcamp_album_id",
|
||||
"spotify_album_id",
|
||||
"deezer_album_id",
|
||||
"beatport_album_id",
|
||||
"tidal_album_id",
|
||||
"data_url",
|
||||
]
|
||||
REIMPORT_FRESH_FIELDS_ITEM = list(REIMPORT_FRESH_FIELDS_ALBUM)
|
||||
REIMPORT_FRESH_FIELDS_ALBUM = [*REIMPORT_FRESH_FIELDS_ITEM, "media"]
|
||||
|
||||
# Global logger.
|
||||
log = logging.getLogger("beets")
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ New features:
|
|||
|
||||
Bug fixes:
|
||||
|
||||
- :doc:`plugins/musicbrainz` Refresh flexible MusicBrainz metadata on reimport
|
||||
so format changes are applied. :bug:`6036`
|
||||
- :doc:`plugins/spotify` Ensure ``spotifysync`` keeps popularity, ISRC, and
|
||||
related fields current even when audio features requests fail. :bug:`6061`
|
||||
- :doc:`plugins/spotify` Fixed an issue where track matching and lookups could
|
||||
|
|
|
|||
Loading…
Reference in a new issue