first merge to main 🚀 #71

Manually merged
philipp merged 491 commits from dev into main 2021-02-19 17:03:06 +00:00
Showing only changes of commit ef50e2d5ce - Show all commits

View File

@ -1,12 +1,13 @@
<script> <script>
import { onMount } from "svelte";
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
$: releaseinfo = ""; $: releaseinfo = "";
setTimeout(() => { onMount(() => {
releaseinfo = document releaseinfo = document
.getElementById("buildinfo") .getElementById("buildinfo")
.textContent.replace("RELEASE_INFO-", "") .textContent.replace("RELEASE_INFO-", "")
.replace("-RELEASE_INFO", ""); .replace("-RELEASE_INFO", "");
}, 1500); });
const year = new Date().getFullYear(); const year = new Date().getFullYear();
</script> </script>