nightly-e7c7bfca-ls259
Pre-release
Pre-release
·
21 commits
to nightly
since this release
CI Report:
https://ci-tests.linuxserver.io/linuxserver/beets/nightly-e7c7bfca-ls259/index.html
LinuxServer Changes:
No changes
Remote Changes:
Swap Discogs genres and styles (#6478)
discogs: Swap genre and style field mapping
Fixes #6390
Fixes the semantic mismatch between Discogs' taxonomy and beets' fields.
In Discogs, genres are broad (e.g. "Electronic") and styles are
specific (e.g. "Techno"). Previously, beets stored them the wrong way
around.
What changed
In get_album_info, the source fields are swapped:
genres(beets) now reads from Discogsstyles— the specific
valuesstyle(beets) now reads from Discogsgenres— the broader
values
The append_style_genre config option retains its original intent:
append broader style values to genres when enabled. Only the data
source for each field changed, not the logic.