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

Configure Feed

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

Pressing ESC while on track sub page returns to index

+28 -4
+28 -1
src/Applications/UI/Adjunct.elm
··· 119 119 120 120 -- 121 121 [ Keyboard.Escape ] -> 122 - hideOverlay m 122 + if Maybe.isJust m.contextMenu then 123 + Return.singleton { m | contextMenu = Nothing } 124 + 125 + else if Maybe.isJust m.confirmation then 126 + Return.singleton { m | confirmation = Nothing } 127 + 128 + else if Maybe.isJust m.alfred then 129 + Return.singleton { m | alfred = Nothing } 130 + 131 + else if Maybe.isJust m.selectedCover then 132 + Return.singleton { m | selectedCover = Nothing } 133 + 134 + else 135 + case m.page of 136 + Page.Equalizer -> 137 + Return.singleton { m | page = Page.Index } 138 + 139 + Page.Playlists Playlists.Index -> 140 + Return.singleton { m | page = Page.Index } 141 + 142 + Page.Playlists _ -> 143 + Return.singleton { m | page = Page.Playlists Playlists.Index } 144 + 145 + Page.Queue _ -> 146 + Return.singleton { m | page = Page.Index } 147 + 148 + _ -> 149 + skip 123 150 124 151 _ -> 125 152 skip
-3
src/Applications/UI/Interface/State.elm
··· 133 133 else if Maybe.isJust model.alfred then 134 134 Return.singleton { model | alfred = Nothing } 135 135 136 - else if Maybe.isJust model.selectedCover then 137 - Return.singleton { model | selectedCover = Nothing } 138 - 139 136 else 140 137 Return.singleton model 141 138