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.

Fix about page + housekeeping

+15 -15
+1 -1
src/Applications/Brain/Authentication.elm
··· 29 29 import Return3 as Return exposing (..) 30 30 import Task.Extra exposing (do) 31 31 import Url exposing (Url) 32 - import Url.Extra as Url 32 + import Url.Ext as Url 33 33 34 34 35 35
+1 -1
src/Applications/UI/Authentication.elm
··· 34 34 import UI.Reply exposing (Reply(..)) 35 35 import UI.Svg.Elements 36 36 import Url exposing (Url) 37 - import Url.Extra as Url 37 + import Url.Ext as Url 38 38 39 39 40 40
+1 -1
src/Javascript/Workers/brain.js
··· 106 106 107 107 function bl0ckst4ck() { 108 108 if (!bl) { 109 - importScripts("/vendor/blockstack.min.js") 109 + importScripts("../vendor/blockstack.min.js") 110 110 111 111 bl = new blockstack.UserSession({ 112 112 appConfig: new blockstack.AppConfig({
+1 -1
src/Javascript/Workers/service.js
··· 26 26 27 27 self.addEventListener("install", event => { 28 28 const promise = removeAllCaches() 29 - .then(_ => fetch("/tree.json")) 29 + .then(_ => fetch("tree.json")) 30 30 .then(response => response.json()) 31 31 .then(tree => { 32 32 const filteredTree = tree.filter(t => !exclude.find(u => u === t))
+1 -1
src/Library/Url/Extra.elm src/Library/Url/Ext.elm
··· 1 - module Url.Extra exposing (action, extractQueryParam) 1 + module Url.Ext exposing (action, extractQueryParam) 2 2 3 3 import Maybe.Extra as Maybe 4 4 import Url exposing (Url)
+9 -9
src/Static/About/Layout.html
··· 9 9 <meta name="viewport" content="width=device-width, initial-scale=1" /> 10 10 11 11 <!-- Favicons & Mobile --> 12 - <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> 13 - <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> 14 - <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> 15 - <link rel="manifest" href="/site.webmanifest" /> 16 - <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#1E191A" /> 12 + <link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png" /> 13 + <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png" /> 14 + <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png" /> 15 + <link rel="manifest" href="../site.webmanifest" /> 16 + <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#1E191A" /> 17 17 <meta name="msapplication-TileColor" content="#1E191A" /> 18 18 <meta name="theme-color" content="#1E191A" /> 19 19 20 20 <!-- Styles --> 21 - <link rel="stylesheet" href="/vendor/tachyons.min.css" /> 22 - <link rel="stylesheet" href="/fonts.css" /> 23 - <link rel="stylesheet" href="/about/about.css" /> 21 + <link rel="stylesheet" href="../vendor/tachyons.min.css" /> 22 + <link rel="stylesheet" href="../fonts.css" /> 23 + <link rel="stylesheet" href="about.css" /> 24 24 25 25 </head> 26 26 <body> ··· 38 38 <!-- Service worker --> 39 39 <script> 40 40 if ("serviceWorker" in navigator) { 41 - navigator.serviceWorker.register("/service-worker.js") 41 + navigator.serviceWorker.register("../service-worker.js") 42 42 } 43 43 </script> 44 44
+1 -1
src/Static/Favicons/browserconfig.xml
··· 2 2 <browserconfig> 3 3 <msapplication> 4 4 <tile> 5 - <square150x150logo src="/mstile-150x150.png"/> 5 + <square150x150logo src="mstile-150x150.png"/> 6 6 <TileColor>#995b6c</TileColor> 7 7 </tile> 8 8 </msapplication>