feat: update versioning and release checklist for alpha development

This commit is contained in:
2025-11-24 15:25:52 +02:00
parent c9d8c8d112
commit aef9a7965a
8 changed files with 74 additions and 52 deletions

View File

@@ -19,6 +19,12 @@ if ('serviceWorker' in navigator) {
}
document.addEventListener('DOMContentLoaded', function () {
// Display app version in header
const versionBadge = document.getElementById('app-version-badge');
if (versionBadge && typeof APP_VERSION !== 'undefined') {
versionBadge.textContent = `v${APP_VERSION}`;
}
// Initialize user settings
initSettings();