···4455- **Removes the need to pick a user-data-storage service upfront.** You can now use the app immediately without having to sign in first.
66- Fixes authentication issue with RemoteStorage
77+- Sets https://ipfs.io as the default IPFS gateway.
7889910## 3.2.0
+16-2
src/Applications/UI/Sources/Form.elm
···55import Conditional exposing (..)
66import Dict.Ext as Dict
77import Html exposing (Html, text)
88-import Html.Attributes exposing (for, name, placeholder, required, selected, type_, value)
88+import Html.Attributes as A exposing (for, name, placeholder, required, selected, type_, value)
99import Html.Events exposing (onInput, onSubmit)
1010import List.Extra as List
1111import Material.Icons.Round as Icons
···474474475475 Ipfs ->
476476 howNote
477477- [ inline [ "font-semibold" ] [ text "Diffuse will try to use the default local gateway" ]
477477+ [ inline
478478+ [ "font-semibold" ]
479479+ [ text "Diffuse will use the ipfs.io gateway by default" ]
478480 , text "."
481481+ , lineBreak
482482+ , inline
483483+ []
484484+ [ text "There are also "
485485+ , Html.a
486486+ [ A.href "https://ipfs.github.io/public-gateway-checker/"
487487+ , A.class "underline"
488488+ , A.target "_blank"
489489+ ]
490490+ [ text "other public gateways" ]
491491+ , text " you can choose from."
492492+ ]
479493 , lineBreak
480494 , text "If you would like to use another gateway, please provide it below."
481495 ]
+1-1
src/Library/Sources/Services/Ipfs.elm
···383839394040defaultGateway =
4141- "http://127.0.0.1:8080"
4141+ "https://ipfs.io"
424243434444{-| The list of properties we need from the user.