···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 ability to sync tags for individual tracks
89- Adds keyboard shortcuts to switch screens
910- Adds the ability to migrate between data-storage methods
1011- Dark mode for the about page
1112- Fixes issue with shuffle algorithm
1213- Fixes playback issues (eg. clicking same track multiple times)
1314- Fixes various issues with add-to-playlist overlay
1414-- Only generated playlists for enabled sources
1515+- Only show generated playlists for enabled sources
1516- Removes support for Blockstack & Textile
16171718## 2.5.3
+10
src/Applications/Brain.elm
···120120 RemoveTracksFromCache a ->
121121 Tracks.removeFromCache a
122122123123+ ReplaceTrackTags a ->
124124+ Tracks.replaceTags a
125125+123126 Search a ->
124127 Tracks.search a
125128126129 StoreTracksInCache a ->
127130 Tracks.storeInCache a
131131+132132+ SyncTrackTags a ->
133133+ Tracks.syncTrackTags a
128134129135 UpdateSearchIndex a ->
130136 Tracks.updateSearchIndex a
···159165 , Ports.makeArtworkTrackUrls MakeArtworkTrackUrls
160166 , Ports.receiveSearchResults GotSearchResults
161167 , Ports.receiveTags (ProcessingMsg << Processing.TagsStep)
168168+ , Ports.replaceTags ReplaceTrackTags
162169 , Ports.savedHypaethralBit (\_ -> UserMsg User.SaveNextHypaethralBit)
163170164171 --
···263270264271 Alien.StoreTracksInCache ->
265272 StoreTracksInCache data
273273+274274+ Alien.SyncTrackTags ->
275275+ SyncTrackTags data
266276267277 Alien.ToCache ->
268278 ToCache data