a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

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

chore: small improvements

+8 -1
+1
src/lib/Library.svelte
··· 114 114 > 115 115 <input 116 116 id="search" 117 + type="search" 117 118 bind:value={query} 118 119 placeholder={t("search")} 119 120 onfocusin={(e) => e.stopPropagation()}
+1 -1
src/lib/auth.svelte.ts
··· 27 27 if (password) { 28 28 setCredentials({ server, username, ...createToken(password) }); 29 29 } 30 - const ping = await api.ping(); 30 + await api.ping(); 31 31 await loadLib(); 32 32 await syncQueue(); 33 33
+6
vite.config.ts
··· 22 22 ignored: ["**/src-tauri/**"], 23 23 }, 24 24 }, 25 + envPrefix: ["VITE_", "TAURI_ENV_*"], 26 + build: { 27 + target: 28 + process.env.TAURI_ENV_PLATFORM == "windows" ? "chrome105" : "safari13", 29 + sourcemap: !!process.env.TAURI_ENV_DEBUG, 30 + }, 25 31 });