4 Commits

Author SHA1 Message Date
CakeLancelot
1117c9bd68 Bump version number 2024-12-09 18:40:04 -06:00
CakeLancelot
bd27433535 Fix loader crash if Unity Web Player installer was not run before launch
Co-authored-by: Gent Semaj <gentsemaj@live.com>
2024-11-20 12:05:56 -06:00
CakeLancelot
72ea6bdaca Update loader to fix issues with non-ASCII characters
Co-authored-by: Gent Semaj <gentsemaj@live.com>
2024-11-20 12:04:24 -06:00
CakeLancelot
d4a1ecebc7 Fix version comparison 2024-10-07 01:28:29 -05:00
3 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ function checkForNewAppVersion() {
{},
function (data) {
$.each(data, function (index, element) {
if (index === "tag_name" && element > getAppVersion()) {
if (index === "tag_name" && element != remote.require("app").getVersion()) {
console.log("New version available: " + element);
var downloadPage =
"https://github.com/OpenFusionProject/OpenFusionClient/releases/latest";

View File

@@ -1,6 +1,6 @@
{
"name": "OpenFusionClient",
"version": "1.6.0",
"version": "1.6.1",
"description": "OpenFusionClient",
"main": "index.js",
"scripts": {