mirror of
https://github.com/MasterAcnolo/Freedom-Loader.git
synced 2026-07-29 18:25:47 +02:00
8 lines
257 B
JavaScript
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(); |