Compare commits

..

No commits in common. "ef50e2d5ce33d2216264ee1d88afea0204ff24a6" and "0e04298b7c53e2dfd447f51b75c7c32f0b730eea" have entirely different histories.

View File

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