This commit is contained in:
josc146
2023-05-04 23:55:24 +08:00
parent 02b9fd8a53
commit 9de121aabf
26 changed files with 2389 additions and 203 deletions

11
main.go
View File

@@ -17,14 +17,15 @@ func main() {
// Create application with options
err := wails.Run(&options.App{
Title: "RWKV-Runner",
Width: 1024,
Height: 768,
Title: "RWKV-Runner",
Width: 1024,
Height: 640,
MinWidth: 1024,
MinHeight: 640,
AssetServer: &assetserver.Options{
Assets: assets,
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: app.startup,
OnStartup: app.startup,
Bind: []interface{}{
app,
},