Skip to content

nightly-e7c7bfca-ls259

Pre-release
Pre-release

Choose a tag to compare

@LinuxServer-CI LinuxServer-CI released this 06 Apr 20:36
· 21 commits to nightly since this release
fae15d1

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 Discogs styles — the specific
    values
  • style (beets) now reads from Discogs genres — 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.