[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix formatting of duration & dates

Kasper (May 27, 2025, 9:38 AM +0200) 99831bbe 955bd2ba

+2
+2
src/components/TrackList.svelte
··· 398 398 if (track === null) return null 399 399 return { 400 400 ...track, 401 + duration: track.duration ? get_duration(track.duration) : '', 402 + dateAdded: format_date(track.dateAdded), 401 403 index: i + 1, 402 404 odd: i % 2 === 0 ? 'odd' : null, 403 405 }