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.

chore: Adjust groups on playlist selector

+10 -7
+10 -7
src/Core/UI/Playlists/Alfred.elm
··· 112 112 playlists 113 113 |> Dict.groupBy 114 114 (\p -> 115 - case p.autoGenerated of 116 - Just _ -> 117 - "AutoGenerated Directory Playlists" 115 + case ( p.autoGenerated, p.collection ) of 116 + ( Just _, _ ) -> 117 + "9 - AutoGenerated Directory Playlists" 118 + 119 + ( Nothing, True ) -> 120 + "1 - Your Collections" 118 121 119 - Nothing -> 120 - "Your Playlists" 122 + ( Nothing, False ) -> 123 + "2 - Your Playlists" 121 124 ) 122 125 |> Dict.toList 123 - |> List.reverse 124 126 |> List.map 125 127 (\( k, v ) -> 126 - ( k 128 + ( String.dropLeft 4 k 127 129 , v 130 + |> List.uniqueBy .name 128 131 |> List.map 129 132 (\playlist -> 130 133 { icon = Just (Icons.queue_music 16)