Files
Freedom-Loader/public/script/appVersion.js
2026-02-17 21:12:01 +01:00

8 lines
257 B
JavaScript

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}`;
};
versionLabel();