Update v1.1.1-beta1
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
2025-06-14 22:01:39 +02:00
parent 440cc4b9eb
commit de8c5ccb84
24 changed files with 8037 additions and 1292 deletions

View File

@@ -153,7 +153,7 @@
</main>
<footer class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8 text-center text-gray-500 text-sm opacity-0 animate-fade-in-up">
<p>Version: <span id="version-number">...</span> | © 2024 Myaxrin Labs</p>
<p>Version: <span id="version-number">...</span> | © <span id="current-year"></span> Myaxrin Labs</p>
</footer>
<script>
@@ -163,6 +163,9 @@
element.classList.add('animate-fade-in-up-visible');
});
// Set current year
document.getElementById('current-year').textContent = new Date().getFullYear();
// Fetch version from build-metadata API
fetch('/build-metadata')
.then(response => response.json())