Summary: | Add option to maintain pre-4.0 behavior for albums with multiple discs | ||
---|---|---|---|
Product: | [Applications] tellico | Reporter: | Robby Stephenson <robby> |
Component: | general | Assignee: | Robby Stephenson <robby> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version First Reported In: | 4.0.1 | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | https://invent.kde.org/office/tellico/-/commit/17045967d67d32050d26295a3f966572738680db | Version Fixed In: | 4.1.1 |
Sentry Crash Report: |
Description
Robby Stephenson
2025-02-01 22:14:43 UTC
Git commit 17045967d67d32050d26295a3f966572738680db by Robby Stephenson. Committed on 08/02/2025 at 21:35. Pushed by rstephenson into branch '4.1'. Add hidden option to collapse multi-disc tracks into single field This provides the behavior from before Tellico 4.0 and instead of creating multiple fields for each disc, it collapses all tracks together. To enable, open the config file, find the Data Source group for the Discogs, Musicbrainz or itunes source, and add Split Tracks By Disc=false Related: bug 479503 FIXED-IN: 4.1.1 M +4 -0 ChangeLog M +16 -2 src/fetch/discogsfetcher.cpp M +1 -0 src/fetch/discogsfetcher.h M +15 -1 src/fetch/itunesfetcher.cpp M +1 -0 src/fetch/itunesfetcher.h M +24 -3 src/fetch/musicbrainzfetcher.cpp M +1 -0 src/fetch/musicbrainzfetcher.h M +37 -1 src/tests/discogsfetchertest.cpp M +1 -0 src/tests/discogsfetchertest.h M +24 -0 src/tests/itunesfetchertest.cpp M +1 -0 src/tests/itunesfetchertest.h M +28 -0 src/tests/musicbrainzfetchertest.cpp M +1 -0 src/tests/musicbrainzfetchertest.h https://invent.kde.org/office/tellico/-/commit/17045967d67d32050d26295a3f966572738680db This can be done via the command-line like so: 1. Note how many data sources you have $ kreadconfig6 --file tellicorc --key "Sources Count" --group "Data Sources" 2. Then loop over all of them to find the Discogs group (replace X with the number of sources) $ for i in $(seq 0 X); do echo -n "$i: "; kreadconfig6 --file tellicorc --key Name --group "Data Source $i"; done 3. Then find the number of the Discogs group (replace X with the number), and update the setting $ kwriteconfig6 --file tellicorc --group "Data Source X" --key "Split Tracks By Disc" false |