Skip to content

Commit fd62aaf

Browse files
authored
Update app.js
1 parent e47b8c9 commit fd62aaf

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

app.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,13 @@ function updateAccountDisplay() {
561561
}
562562
}
563563

564+
function updateFooterVersion() {
565+
const el = document.getElementById("footer-app-info");
566+
if (!el) return;
567+
el.textContent = `Alpha-Analytics · App locale · v${CURRENT_VERSION}`;
568+
}
569+
570+
564571
// ===== Devise & format monnaie =====
565572
function getCurrencySymbol() {
566573
return currentCurrency === "USD" ? "$" : "€";
@@ -1500,6 +1507,9 @@ document.addEventListener("DOMContentLoaded", () => {
15001507
setupFiltersUi();
15011508
setupInstallButton();
15021509
setupSmoothScroll();
1510+
1511+
updateFooterVersion()
1512+
15031513
checkForUpdate();
15041514
setInterval(checkForUpdate, 30000);
15051515

@@ -1525,4 +1535,3 @@ document.addEventListener("DOMContentLoaded", () => {
15251535
}
15261536

15271537
});
1528-

0 commit comments

Comments
 (0)