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.

Andddd even more group tweaks

+6 -15
+1 -1
src/Applications/UI/Tracks/Scene/List.elm
··· 332 332 [ Css.color (Color.toElmCssColor UI.Kit.colorKit.base04) 333 333 , Css.fontFamilies UI.Kit.headerFontFamilies 334 334 , Css.fontSize (Css.px 11) 335 - , Css.letterSpacing (Css.em 0.03) 335 + , Css.letterSpacing (Css.em 0.005) 336 336 ] 337 337 338 338
+5 -14
src/Library/Tracks/Collection/Internal/Arrange.elm
··· 91 91 92 92 insertedAtGroupName : Int -> Time.Month -> String 93 93 insertedAtGroupName year month = 94 - month 95 - |> Time.monthNumber 96 - |> String.fromInt 97 - |> String.padLeft 2 '0' 98 - |> (\m -> 99 - m ++ " / " ++ String.fromInt year 100 - ) 101 - |> (\y -> 102 - if String.contains "1970" y then 103 - "AGES AGO" 94 + if year == 1970 then 95 + "I HONESTLY CAN'T REMEMBER" 104 96 105 - else 106 - y 107 - ) 97 + else 98 + Time.monthName month ++ " " ++ String.fromInt year 108 99 109 100 110 101 ··· 126 117 t.path 127 118 |> String.split "/" 128 119 |> List.init 129 - |> Maybe.map (String.join "/") 120 + |> Maybe.map (String.join " / ") 130 121 |> Maybe.withDefault t.path 131 122 132 123 group =