[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 queue Get Info shortcut

Kasper (Sep 17, 2024, 6:10 PM +0200) a506e264 88edbe1d

+6 -1
+6 -1
src/components/Queue.svelte
··· 98 98 const ids = indexes.map((i) => queue.getByQueueIndex(i).id) 99 99 append_to_user_queue(ids) 100 100 } else if (action === 'Get Info') { 101 - const all_items = [...$queue.user_queue, ...$queue.auto_queue] 101 + const all_items = [ 102 + ...$queue.past, 103 + ...($queue.current ? [$queue.current.item] : []), 104 + ...$queue.user_queue, 105 + ...$queue.auto_queue, 106 + ] 102 107 const all_ids = all_items.map((item) => item.id) 103 108 open_track_info(all_ids, first_index) 104 109 } else if (action === 'revealTrackFile') {