From 1490e2e02bb0ca1ad137b0c1af5d73dad87d8c10 Mon Sep 17 00:00:00 2001 From: Jamie Banks Date: Tue, 9 Jun 2026 13:26:13 +0100 Subject: [PATCH] chore: set initial window state to normal and update project metadata --- main.go | 7 ++++--- wails.json | 7 +++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/main.go b/main.go index 2001e39..c86cbff 100644 --- a/main.go +++ b/main.go @@ -84,9 +84,10 @@ func main() { // Create application with options err := wails.Run(&options.App{ - Title: "GoExplore", - Width: 1024, - Height: 768, + Title: "GoExplore", + Width: 1024, + Height: 768, + WindowStartState: options.Normal, AssetServer: &assetserver.Options{ Assets: assets, }, diff --git a/wails.json b/wails.json index c8a8c34..d71e659 100644 --- a/wails.json +++ b/wails.json @@ -7,7 +7,10 @@ "frontend:dev:watcher": "npm run dev", "frontend:dev:serverUrl": "auto", "author": { - "name": "Jamie Banks", - "email": "jamie@jdbnet.co.uk" + "name": "JDB-NET" + }, + "info": { + "companyName": "JDB-NET Limited", + "productName": "GoExplore" } } \ No newline at end of file