···55- **Adds album-covers view** (switch to and from list view with icon in nav bar)
66- Added new background images and replaced two older ones
77- Adds a keyboard shortcut `L` to quickly select a playlist
88+- Adds keyboard shortcuts to switch screens
89- Adds the ability to migrate between data-storage methods
910- Dark mode for the about page
1011- Fixes issue with shuffle algorithm
+27
src/Applications/UI/Adjunct.elm
···77import UI.Alfred.State as Alfred
88import UI.Audio.State as Audio
99import UI.Authentication.Types as Authentication
1010+import UI.Common.State as Common
1011import UI.Interface.State exposing (hideOverlay)
1212+import UI.Page as Page
1313+import UI.Playlists.Page as Playlists
1114import UI.Playlists.State as Playlists
1515+import UI.Queue.Page as Queue
1216import UI.Queue.State as Queue
1717+import UI.Settings.Page as Settings
1818+import UI.Sources.Page as Sources
1319import UI.Tracks.State as Tracks
1420import UI.Types as UI exposing (..)
1521···7278 [ Keyboard.ArrowDown ] ->
7379 Audio.seek ((m.audioPosition + 10) / m.audioDuration) m
74808181+ --
7582 [ Keyboard.Character "L" ] ->
7683 Playlists.assistWithSelectingPlaylist m
7784···8794 [ Keyboard.Character "S" ] ->
8895 Queue.toggleShuffle m
89969797+ --
9898+ [ Keyboard.Character "1" ] ->
9999+ Common.changeUrlUsingPage Page.Index m
100100+101101+ [ Keyboard.Character "2" ] ->
102102+ Common.changeUrlUsingPage (Page.Playlists Playlists.Index) m
103103+104104+ [ Keyboard.Character "3" ] ->
105105+ Common.changeUrlUsingPage (Page.Queue Queue.Index) m
106106+107107+ [ Keyboard.Character "4" ] ->
108108+ Common.changeUrlUsingPage Page.Equalizer m
109109+110110+ [ Keyboard.Character "8" ] ->
111111+ Common.changeUrlUsingPage (Page.Sources Sources.Index) m
112112+113113+ [ Keyboard.Character "9" ] ->
114114+ Common.changeUrlUsingPage (Page.Settings Settings.Index) m
115115+116116+ --
90117 [ Keyboard.Escape ] ->
91118 hideOverlay m
92119
+9-1
src/Static/About/About.md
···230230The app should be usable with only the keyboard, there are various keyboard shortcuts:
231231232232```
233233-L - Select playlist
233233+L - Select playlist using autocompletion
234234N - Scroll to currently-playing track
235235P - Play / Pause
236236R - Toggle Repeat
···240240Up / Down - Seek forwards / Seek backwards
241241242242ESC - Close overlay, close context-menu, deselect album cover, etc.
243243+244244+1 - Tracks
245245+2 - Playlists
246246+3 - Queue
247247+4 - EQ
248248+249249+8 - Sources
250250+9 - Settings
243251```
244252245253