From 334e83ae1f4548680fd03898dbb5913167d01343 Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:12:01 +0100 Subject: [PATCH] Fix: Small coms in AppVersion.js --- public/script/appVersion.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/script/appVersion.js b/public/script/appVersion.js index ad9aaa0..6ad1775 100644 --- a/public/script/appVersion.js +++ b/public/script/appVersion.js @@ -1,5 +1,7 @@ async function versionLabel(){ const appVersion = await window.electronAPI.getVersion(); + + // Write in front the app version for debugging (bottom right) document.getElementById("version-badge").textContent = `v${appVersion}`; };