From 68be4e199c630b5b383caab9788cea618cc0fcd6 Mon Sep 17 00:00:00 2001 From: Marvin Schenkel Date: Sun, 31 May 2026 14:52:44 +0200 Subject: [PATCH 1/3] Declutter album track list Reduce redundant information on the album detail track list: - Subtitle now shows only collaborating artists ("with X"), dropping the album artist/name/year that is already in the page header. - Track number moves to a left gutter; the per-row album art is replaced by a play button (the album art is shown in the header). - Duration is right-aligned before the provider icon and hidden on mobile to give the title more room. - Multi-disc albums get "Disc X" section headers (default track order only). - Track titles wrap to two lines instead of truncating. --- src/components/ItemsListing.vue | 47 +++++++++++- src/components/ListviewItem.vue | 106 ++++++++++++++++++++++++++- src/components/ListviewItemTitle.vue | 18 ++++- src/translations/en.json | 2 + 4 files changed, 167 insertions(+), 6 deletions(-) diff --git a/src/components/ItemsListing.vue b/src/components/ItemsListing.vue index d2e6007a4..224ff69d1 100644 --- a/src/components/ItemsListing.vue +++ b/src/components/ItemsListing.vue @@ -129,12 +129,17 @@ v-if="viewMode == 'list'" :item-height="70" height="100%" - :items="pagedItems" + :items="listDisplayItems" style="height: 100%; overflow: hidden" >