feat: version and issue url

This commit is contained in:
2023-09-22 14:15:01 +02:00
parent 4cd9ce536d
commit f03b4d586b
7 changed files with 75 additions and 0 deletions

View File

@@ -20,6 +20,7 @@
import {loadLocale} from "../i18n/i18n-util.sync"
import {detectLocale} from "../i18n/i18n-util"
import type {Locales} from "../i18n/i18n-types"
import Footer from "./Footer.svelte"
const locale = ((browser && localStorage.getItem("locale")) as Locales) || detectLocale()
loadLocale(locale)
@@ -68,6 +69,8 @@
<slot />
</main>
<Footer />
{#if import.meta.env.TAURI_FAMILY === undefined && browser && !("serial" in navigator)}
<BrowserWarning />
{/if}