A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

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

Closes #184

+3 -2
+1
CHANGELOG.md
··· 5 5 - Adds ability to download a playlist as a zip file 6 6 - Fixes dark styles for add-to-playlist overlay 7 7 - No longer scrolls track list to the top when moving things in a playlist or when processing tracks 8 + - Switches key bindings for arrow up and down 8 9 9 10 ## 2.2.3 10 11
+2 -2
src/Applications/UI.elm
··· 375 375 translateReply ShiftQueue m 376 376 377 377 [ Keyboard.ArrowUp ] -> 378 - translateReply (Seek <| (m.audioPosition + 10) / m.audioDuration) m 378 + translateReply (Seek <| (m.audioPosition - 10) / m.audioDuration) m 379 379 380 380 [ Keyboard.ArrowDown ] -> 381 - translateReply (Seek <| (m.audioPosition - 10) / m.audioDuration) m 381 + translateReply (Seek <| (m.audioPosition + 10) / m.audioDuration) m 382 382 383 383 [ Keyboard.Character "N" ] -> 384 384 translateReply ScrollToNowPlaying m