A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: import maps facets/themes loader page

+36 -11
+1 -1
src/facets/examples/generate-playlist.html.txt
··· 10 10 </style> 11 11 12 12 <script type="module"> 13 - import foundation from "./common/facets/foundation.js"; 13 + import foundation from "@diffuse/foundation"; 14 14 15 15 const queue = foundation.engine.queue(); 16 16 const output = foundation.orchestrator.output();
+1 -1
src/facets/examples/now-playing.html.txt
··· 9 9 </style> 10 10 11 11 <script type="module"> 12 - import foundation from "./common/facets/foundation.js"; 12 + import foundation from "@diffuse/foundation"; 13 13 import { computed, effect } from "./common/signal.js"; 14 14 15 15 foundation.features.processInputs();
+1 -1
src/facets/index.js
··· 215 215 </style> 216 216 217 217 <script type="module"> 218 - import foundation from "./common/facets/foundation.js"; 218 + import foundation from "@diffuse/foundation"; 219 219 import { effect } from "./common/signal.js"; 220 220 221 221 const components = foundation.features.fillQueueAutomatically();
+12
src/facets/l/index.vto
··· 18 18 </div> 19 19 </div> 20 20 </div> 21 + 22 + <script type="importmap"> 23 + { 24 + "imports": { 25 + "@diffuse/common/": "./common/", 26 + "@diffuse/components/": "./components/", 27 + "@diffuse/foundation": "./common/facets/foundation.js", 28 + 29 + "@atcute/tid": "./vendor/@atcute/tid/index.js" 30 + } 31 + } 32 + </script>
+3 -3
src/facets/tools/auto-queue.html.txt
··· 48 48 </style> 49 49 50 50 <script type="module"> 51 - import foundation from "./common/facets/foundation.js"; 52 - import { computed, effect } from "./common/signal.js"; 53 - import * as Playlist from "./common/playlist.js"; 51 + import foundation from "@diffuse/foundation"; 52 + import { computed, effect } from "@diffuse/common/signal.js"; 53 + import * as Playlist from "@diffuse/common/playlist.js"; 54 54 55 55 const ACTIVE_CLASS = "button--active"; 56 56
+1 -1
src/facets/tools/v3-import.html.txt
··· 80 80 81 81 <script type="module"> 82 82 import * as TID from "@atcute/tid"; 83 - import foundation from "./common/facets/foundation.js"; 83 + import foundation from "@diffuse/foundation"; 84 84 85 85 // Setup 86 86 foundation.features.processInputs();
+1 -1
src/themes/blur/artwork-controller/facet.html.txt
··· 5 5 </style> 6 6 7 7 <script type="module"> 8 - import foundation from "./common/facets/foundation.js"; 8 + import foundation from "@diffuse/foundation"; 9 9 import ArtworkController from "./themes/blur/artwork-controller/element.js"; 10 10 11 11 // Setup the prerequisite elements
+12
src/themes/l/index.vto
··· 19 19 </div> 20 20 </div> 21 21 </div> 22 + 23 + <script type="importmap"> 24 + { 25 + "imports": { 26 + "@diffuse/common/": "./common/", 27 + "@diffuse/components/": "./components/", 28 + "@diffuse/foundation": "./common/facets/foundation.js", 29 + 30 + "@atcute/tid": "./vendor/@atcute/tid/index.js" 31 + } 32 + } 33 + </script>
+1 -1
src/themes/webamp/browser/facet.html.txt
··· 20 20 </style> 21 21 22 22 <script type="module"> 23 - import foundation from "./common/facets/foundation.js"; 23 + import foundation from "@diffuse/foundation"; 24 24 import BrowserElement from "./themes/webamp/browser/element.js"; 25 25 26 26 foundation.features.processInputs();
+1 -1
src/themes/webamp/configurators/input/facet.html.txt
··· 21 21 </style> 22 22 23 23 <script type="module"> 24 - import foundation from "./common/facets/foundation.js"; 24 + import foundation from "@diffuse/foundation"; 25 25 import InputConfigElement from "./themes/webamp/configurators/input/element.js"; 26 26 import { effect } from "./common/signal.js"; 27 27
+1 -1
src/themes/webamp/configurators/output/facet.html.txt
··· 25 25 </style> 26 26 27 27 <script type="module"> 28 - import foundation from "./common/facets/foundation.js"; 28 + import foundation from "@diffuse/foundation"; 29 29 import OutputConfigElement from "./themes/webamp/configurators/output/element.js"; 30 30 31 31 const out = foundation.orchestrator.output();
+1
src/vendor/@atcute/tid/index.js
··· 1 + export * from "@atcute/tid";