UI: Implement JavaScript getOS function Windows platform architecture detection #104136

Merged
Márton Lente merged 15 commits from get-os-win-arm into main 2024-11-08 12:03:41 +01:00
Showing only changes of commit 85c93e8d83 - Show all commits

View File

@ -117,6 +117,8 @@ function getOS() {
getOSiPadVersion();
getOSFreeBSDVersion();
}
return OS;
});
}
@ -130,9 +132,9 @@ function getOS() {
getOSLinuxVersion();
getOSiPadVersion();
getOSFreeBSDVersion();
return OS;
}
init();
return OS;
}