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.

Deprecate Blockstack and Textile

+20
+20
src/Applications/UI/User/State/Import.elm
··· 13 13 import Return exposing (andThen, return) 14 14 import Return.Ext as Return exposing (communicate) 15 15 import Task 16 + import UI.Authentication.Common 16 17 import UI.Backdrop as Backdrop 17 18 import UI.Common.State as Common exposing (showNotification) 18 19 import UI.Demo as Demo ··· 122 123 123 124 else 124 125 Return.singleton m 126 + ) 127 + |> andThen 128 + (\m -> 129 + let 130 + notification = 131 + Notifications.stickyWarning 132 + """ 133 + Blockstack and Textile support will be removed in v3, please migrate to a different data-storage service (by exporting and then importing). v3 will add support for storing your data on [Fission](https://fission.codes). 134 + """ 135 + in 136 + case UI.Authentication.Common.extractMethod m.authentication of 137 + Just Blockstack -> 138 + Common.showNotificationWithModel m notification 139 + 140 + Just (Textile _) -> 141 + Common.showNotificationWithModel m notification 142 + 143 + _ -> 144 + Return.singleton m 125 145 ) 126 146 |> andThen 127 147 (\m ->