diff --git a/fclauncher/InstanceManager.go b/fclauncher/InstanceManager.go index 3957a8d..e6d26b3 100644 --- a/fclauncher/InstanceManager.go +++ b/fclauncher/InstanceManager.go @@ -174,7 +174,7 @@ func (i *InstanceManager) InstallModpack(modpack Modpack, instanceName string) { data, _ := json.Marshal(instance) f.Write(data) i.checkJavaVersion(instance) - + i.SearchInstances() } func (i *InstanceManager) InstallVanilla(version string, instanceName string) { @@ -232,8 +232,7 @@ func (i *InstanceManager) InstallVanilla(version string, instanceName string) { i.app.Status(fmt.Sprintf("Installing Java Version %d", instance.JavaVersion)) i.app.Java.InstallJavaVer(instance.JavaVersion) } - - return + i.SearchInstances() } func (i *InstanceManager) GetInstances() []string { @@ -297,7 +296,7 @@ func (i *InstanceManager) LaunchInstance(instance string) { execName := "java" suffix := "lin" if runtime.GOOS == "windows" { - execName = "Java.exe" + execName = "Javaw.exe" suffix = "win" } dir = filepath.Join(dir, "FCLauncher") @@ -605,7 +604,6 @@ func (i *InstanceManager) ImportMrpack(data io.Reader, name string) { } func (i *InstanceManager) OpenInstanceFolder(instance string) { - i.app.Status("Installing Fabric") _, err := i.GetInstance(instance) if err != nil { fmt.Printf("Instance does not exist\n") @@ -613,3 +611,14 @@ func (i *InstanceManager) OpenInstanceFolder(instance string) { dir, _ := os.UserConfigDir() openbrowser(filepath.Join(dir, "FCLauncher", "instances", instance, "minecraft")) } + +func (i *InstanceManager) DeleteInstance(instance string) { + _, err := i.GetInstance(instance) + if err != nil { + fmt.Printf("Instance does not exist\n") + return + } + dir, _ := os.UserConfigDir() + os.RemoveAll(filepath.Join(dir, "FCLauncher", "instances", instance)) + i.SearchInstances() +} diff --git a/fclauncher/frontend/src/Instancepage.svelte b/fclauncher/frontend/src/Instancepage.svelte index 22111c4..0e297ff 100644 --- a/fclauncher/frontend/src/Instancepage.svelte +++ b/fclauncher/frontend/src/Instancepage.svelte @@ -1,9 +1,10 @@ @@ -52,8 +63,9 @@ import {onMount, createEventDispatcher} from 'svelte'
- - + + +
@@ -107,7 +119,7 @@ main{ margin-top: 15rem; gap: 10px; } -.launch-button{ +.instance-button{ min-height: 3rem; border:solid; border-radius: 4px; @@ -118,29 +130,16 @@ main{ max-width: 10rem; max-height: fit-content; } -.launch-button:hover{ +.instance-button:hover:enabled{ color: var(--text-secondary); } -.launch-button:active{ +.instance-button:active:enabled{ opacity: 0.6; } -.option-button{ - min-height: 3rem; - border:solid; - border-radius: 4px; - background-color: var(--bg-secondary); - border-color: var(--bg-secondary); - color: var(--text-primary); - font-size: medium; - max-width: 10rem; - max-height: fit-content; -} -.option-button:hover{ - color: var(--text-secondary); -} -.option-button:active{ +.instance-button:disabled{ opacity: 0.6; } + .container{ display: flex; min-height: fit-content; diff --git a/fclauncher/frontend/wailsjs/go/main/InstanceManager.d.ts b/fclauncher/frontend/wailsjs/go/main/InstanceManager.d.ts index 9bcf12a..c342a18 100755 --- a/fclauncher/frontend/wailsjs/go/main/InstanceManager.d.ts +++ b/fclauncher/frontend/wailsjs/go/main/InstanceManager.d.ts @@ -5,6 +5,8 @@ import {io} from '../models'; export function CheckUpdate(arg1:main.Instance):Promise; +export function DeleteInstance(arg1:string):Promise; + export function GetInstance(arg1:string):Promise; export function GetInstances():Promise>; diff --git a/fclauncher/frontend/wailsjs/go/main/InstanceManager.js b/fclauncher/frontend/wailsjs/go/main/InstanceManager.js index b38c707..997601c 100755 --- a/fclauncher/frontend/wailsjs/go/main/InstanceManager.js +++ b/fclauncher/frontend/wailsjs/go/main/InstanceManager.js @@ -6,6 +6,10 @@ export function CheckUpdate(arg1) { return window['go']['main']['InstanceManager']['CheckUpdate'](arg1); } +export function DeleteInstance(arg1) { + return window['go']['main']['InstanceManager']['DeleteInstance'](arg1); +} + export function GetInstance(arg1) { return window['go']['main']['InstanceManager']['GetInstance'](arg1); }