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.

Use the correct icons in context menu

+4 -4
+4 -4
src/Applications/UI/Tracks/ContextMenu.elm
··· 4 4 import ContextMenu exposing (..) 5 5 import Coordinates exposing (Coordinates) 6 6 import Material.Icons.Action as Icons 7 + import Material.Icons.Av as Icons 7 8 import Material.Icons.Content as Icons 8 - import Material.Icons.Maps as Icons 9 9 import Tracks exposing (Grouping(..), IdentifiedTrack) 10 10 import UI.Core exposing (Msg(..)) 11 11 import UI.Queue.Core as Queue ··· 53 53 54 54 groupByDirectory isActive = 55 55 Item 56 - { icon = ifThenElse isActive Icons.clear Icons.terrain 56 + { icon = ifThenElse isActive Icons.clear Icons.library_music 57 57 , label = "Group by directory" 58 58 , active = isActive 59 59 ··· 69 69 70 70 groupByProcessingDate isActive = 71 71 Item 72 - { icon = ifThenElse isActive Icons.clear Icons.terrain 72 + { icon = ifThenElse isActive Icons.clear Icons.library_music 73 73 , label = "Group by processing date" 74 74 , active = isActive 75 75 ··· 85 85 86 86 groupByTrackYear isActive = 87 87 Item 88 - { icon = ifThenElse isActive Icons.clear Icons.terrain 88 + { icon = ifThenElse isActive Icons.clear Icons.library_music 89 89 , label = "Group by track year" 90 90 , active = isActive 91 91