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.

Housekeeping

+1 -5
-1
src/Applications/UI/Equalizer/View.elm
··· 1 1 module UI.Equalizer.View exposing (view) 2 2 3 - import Color exposing (Color) 4 3 import Common 5 4 import Css.Classes as C 6 5 import Equalizer exposing (..)
-1
src/Applications/UI/Playlists/View.elm
··· 2 2 3 3 import Chunky exposing (..) 4 4 import Color exposing (Color) 5 - 6 5 import Common 7 6 import Css.Classes as C 8 7 import Html exposing (Html, text)
-1
src/Applications/UI/Tracks/Scene/List.elm
··· 3 3 import Browser.Dom as Dom 4 4 import Chunky exposing (..) 5 5 import Color exposing (Color) 6 - 7 6 import Color.Manipulate as Color 8 7 import Conditional exposing (ifThenElse) 9 8 import Coordinates
-1
src/Applications/UI/Tracks/View.elm
··· 2 2 3 3 import Chunky exposing (..) 4 4 import Color exposing (Color) 5 - 6 5 import Common exposing (Switch(..)) 7 6 import Conditional exposing (ifThenElse) 8 7 import Css.Classes as C
+1 -1
src/Library/Html/Ext.elm
··· 1 - module Html.Ext exposing (ifEnterKey, onClickStopPropagation, onDoubleTap, onEnterKey, onTap, onTapPreventDefault, onTapStopPropagation) 1 + module Html.Ext exposing (..) 2 2 3 3 import Html exposing (Attribute, Html) 4 4 import Html.Events exposing (keyCode, on, preventDefaultOn, stopPropagationOn)