Files
Freedom-Loader/public/script/appVersion.js
2026-08-15 13:20:42 +02: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();