diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 218e5a5..f3a1d02 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -12,7 +12,10 @@ "tauri": { "bundle": { "active": true, - "targets": ["msi", "appimage"], + "targets": [ + "msi", + "appimage" + ], "identifier": "opengoal-launcher", "icon": [ "icons/32x32.png", diff --git a/src/components/setup/Jak1Setup.svelte b/src/components/setup/Jak1Setup.svelte index f8ff785..038e678 100644 --- a/src/components/setup/Jak1Setup.svelte +++ b/src/components/setup/Jak1Setup.svelte @@ -79,10 +79,11 @@ } onMount(async () => { + // TODO - app crashes after checking requirements // in the future i want to save the requirements met in the settings.json store file so it doesnt need to be run every time // then the requirements met function can check against the store data to avoid running the external bins each time // gotta revise this in the future because this will still run the install process even if the user doesnt meet the requirements - await areRequirementsMet(); + // await areRequirementsMet(); await installProcess(); });