From 1d7df8854fc8aeb802fcdf117af3aa0221e1c9c6 Mon Sep 17 00:00:00 2001 From: Cuptain Date: Fri, 14 Mar 2025 14:44:38 +1100 Subject: [PATCH] New Instance Page Layout --- fclauncher/frontend/src/Instances.svelte | 57 ++++++++++++++++--- fclauncher/frontend/wailsjs/go/models.ts | 4 +- .../frontend/wailsjs/runtime/runtime.d.ts | 2 +- fclauncher/go.mod | 2 +- fclauncher/go.sum | 4 +- 5 files changed, 56 insertions(+), 13 deletions(-) diff --git a/fclauncher/frontend/src/Instances.svelte b/fclauncher/frontend/src/Instances.svelte index 47e702e..83be1a9 100644 --- a/fclauncher/frontend/src/Instances.svelte +++ b/fclauncher/frontend/src/Instances.svelte @@ -103,13 +103,21 @@
+
New Instance

-
- +
+
+ {#each modpacks as modpack} +
+ +
+ + +
+
+ {/each} +
+
@@ -141,6 +149,11 @@ {/each} {/if} +
+
+
+ +
@@ -149,7 +162,37 @@ diff --git a/fclauncher/frontend/wailsjs/go/models.ts b/fclauncher/frontend/wailsjs/go/models.ts index 159988f..985b0d9 100755 --- a/fclauncher/frontend/wailsjs/go/models.ts +++ b/fclauncher/frontend/wailsjs/go/models.ts @@ -74,7 +74,7 @@ export namespace main { export class FabricMeta { Version: number; Libraries: FabricLibraries; - MainClass: Record; + MainClass: {[key: string]: string}; static createFrom(source: any = {}) { return new FabricMeta(source); @@ -332,7 +332,7 @@ export namespace main { export class QuiltMeta { Version: number; Libraries: QuiltLibraries; - MainClass: Record; + MainClass: {[key: string]: string}; static createFrom(source: any = {}) { return new QuiltMeta(source); diff --git a/fclauncher/frontend/wailsjs/runtime/runtime.d.ts b/fclauncher/frontend/wailsjs/runtime/runtime.d.ts index 4445dac..94778df 100644 --- a/fclauncher/frontend/wailsjs/runtime/runtime.d.ts +++ b/fclauncher/frontend/wailsjs/runtime/runtime.d.ts @@ -134,7 +134,7 @@ export function WindowIsFullscreen(): Promise; // [WindowSetSize](https://wails.io/docs/reference/runtime/window#windowsetsize) // Sets the width and height of the window. -export function WindowSetSize(width: number, height: number): void; +export function WindowSetSize(width: number, height: number): Promise; // [WindowGetSize](https://wails.io/docs/reference/runtime/window#windowgetsize) // Gets the width and height of the window. diff --git a/fclauncher/go.mod b/fclauncher/go.mod index cc0beba..dc5152a 100644 --- a/fclauncher/go.mod +++ b/fclauncher/go.mod @@ -4,7 +4,7 @@ go 1.22.4 toolchain go1.23.2 -require github.com/wailsapp/wails/v2 v2.10.1 +require github.com/wailsapp/wails/v2 v2.9.2 require github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf diff --git a/fclauncher/go.sum b/fclauncher/go.sum index 62e0b37..3740d50 100644 --- a/fclauncher/go.sum +++ b/fclauncher/go.sum @@ -57,8 +57,8 @@ github.com/wailsapp/go-webview2 v1.0.19 h1:7U3QcDj1PrBPaxJNCui2k1SkWml+Q5kvFUFyT github.com/wailsapp/go-webview2 v1.0.19/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc= github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs= github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o= -github.com/wailsapp/wails/v2 v2.10.1 h1:QWHvWMXII2nI/nXz77gpPG8P3ehl6zKe+u4su5BWIns= -github.com/wailsapp/wails/v2 v2.10.1/go.mod h1:zrebnFV6MQf9kx8HI4iAv63vsR5v67oS7GTEZ7Pz1TY= +github.com/wailsapp/wails/v2 v2.9.2 h1:Xb5YRTos1w5N7DTMyYegWaGukCP2fIaX9WF21kPPF2k= +github.com/wailsapp/wails/v2 v2.9.2/go.mod h1:uehvlCwJSFcBq7rMCGfk4rxca67QQGsbg5Nm4m9UnBs= github.com/zhyee/zipstream v0.0.0-20230625125559-133d8d1afaa0 h1:BcjUUYzMORs7sJtOCWLXaelG7woHMN1QEs4yCB1QZ48= github.com/zhyee/zipstream v0.0.0-20230625125559-133d8d1afaa0/go.mod h1:aaGtAo3dTqYtHjcliPNlyXMIIodvGm8y6uK2KMTYHrk= golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=