File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 =====
565572function 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-
You can’t perform that action at this time.
0 commit comments