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.

Closes #362

+18 -3
+1
CHANGELOG.md
··· 4 4 5 5 - **Removes the need to pick a user-data-storage service upfront.** You can now use the app immediately without having to sign in first. 6 6 - Fixes authentication issue with RemoteStorage 7 + - Sets https://ipfs.io as the default IPFS gateway. 7 8 8 9 9 10 ## 3.2.0
+16 -2
src/Applications/UI/Sources/Form.elm
··· 5 5 import Conditional exposing (..) 6 6 import Dict.Ext as Dict 7 7 import Html exposing (Html, text) 8 - import Html.Attributes exposing (for, name, placeholder, required, selected, type_, value) 8 + import Html.Attributes as A exposing (for, name, placeholder, required, selected, type_, value) 9 9 import Html.Events exposing (onInput, onSubmit) 10 10 import List.Extra as List 11 11 import Material.Icons.Round as Icons ··· 474 474 475 475 Ipfs -> 476 476 howNote 477 - [ inline [ "font-semibold" ] [ text "Diffuse will try to use the default local gateway" ] 477 + [ inline 478 + [ "font-semibold" ] 479 + [ text "Diffuse will use the ipfs.io gateway by default" ] 478 480 , text "." 481 + , lineBreak 482 + , inline 483 + [] 484 + [ text "There are also " 485 + , Html.a 486 + [ A.href "https://ipfs.github.io/public-gateway-checker/" 487 + , A.class "underline" 488 + , A.target "_blank" 489 + ] 490 + [ text "other public gateways" ] 491 + , text " you can choose from." 492 + ] 479 493 , lineBreak 480 494 , text "If you would like to use another gateway, please provide it below." 481 495 ]
+1 -1
src/Library/Sources/Services/Ipfs.elm
··· 38 38 39 39 40 40 defaultGateway = 41 - "http://127.0.0.1:8080" 41 + "https://ipfs.io" 42 42 43 43 44 44 {-| The list of properties we need from the user.