mirror of
https://github.com/binimum/tidal-ui.git
synced 2026-04-26 12:25:48 +03:00
[PR #60] [MERGED] Ensure single track downloads use full album-style filename metadata #121
Labels
No labels
bug
duplicate
enhancement
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tidal-ui#121
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/binimum/tidal-ui/pull/60
Author: @Simo93-rgb
Created: 11/20/2025
Status: ✅ Merged
Merged: 11/20/2025
Merged by: @binimum
Base:
main← Head:enhancement-consistent-download-names📝 Commits (1)
0eebdafrefactor: improve track filename generation and formatting in AudioPlayer, TopTracksGrid, and TrackList components.📊 Changes
3 files changed (+73 additions, -47 deletions)
View changed files
📝
src/lib/components/AudioPlayer.svelte(+54 -40)📝
src/lib/components/TopTracksGrid.svelte(+11 -4)📝
src/lib/components/TrackList.svelte(+8 -3)📄 Description
This merge request addresses an inconsistency in filename generation between single track and album downloads.
Current behavior:
{artist} - {title}.{extension}{artist} - {album} - {volume}-{track number} {title}.{extension}Problem:
Single track downloads lack important metadata (album name, track number, volume) that are included when downloading an entire album. This results in inconsistent filenames and makes file organization less clear.
Solution:
Centralized the filename generation logic so that single track downloads now follow the same schema as album downloads:
{artist} - {album} - {volume}-{track number} {title}.{extension}Impact:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.