-
Notifications
You must be signed in to change notification settings - Fork 557
/
main.go
93 lines (85 loc) · 2.55 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package main
import (
"context"
"embed"
"fmt"
"github.com/wailsapp/wails/v2/pkg/menu"
"github.com/wailsapp/wails/v2/pkg/options/linux"
"github.com/wailsapp/wails/v2/pkg/options/mac"
"github.com/wailsapp/wails/v2/pkg/options/windows"
"log"
"res-downloader/core"
"runtime"
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
)
//go:embed all:frontend/dist
var assets embed.FS
//go:embed build/appicon.png
var icon []byte
func main() {
// Create an instance of the app structure
app := core.GetApp(assets)
isMac := runtime.GOOS == "darwin"
// menu
appMenu := menu.NewMenu()
if isMac {
appMenu.Append(menu.AppMenu())
appMenu.Append(menu.EditMenu())
appMenu.Append(menu.WindowMenu())
}
// Create application with options
err := wails.Run(&options.App{
Title: app.AppName,
Width: 1024,
MinWidth: 960,
Height: 768,
MinHeight: 640,
Frameless: !isMac,
Menu: appMenu,
EnableDefaultContextMenu: true,
AssetServer: &assetserver.Options{
Assets: assets,
Middleware: core.Middleware,
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: func(ctx context.Context) {
logo := `
_ __ ___ ___ __| | ___ __ __ _ __ | | ___ __ _ __| | ___ _ __
| '__| / _ \ / __| _____ / _· | / _ \ \ \ /\ / / | '_ \ | | / _ \ / _· | / _· | / _ \ | ·__|
| | | __/ \__ \ |_____| | (_| | | (_) | \ V V / | | | | | | | (_) | | (_| | | (_| | | __/ | |
|_| \___| |___/ \__,_| \___/ \_/\_/ |_| |_| |_| \___/ \__ ,_| \__,_| \___| |_|`
log.Println(logo)
app.Startup(ctx)
},
OnShutdown: func(ctx context.Context) {
app.OnExit()
},
Bind: []interface{}{},
Mac: &mac.Options{
TitleBar: mac.TitleBarHiddenInset(),
About: &mac.AboutInfo{
Title: fmt.Sprintf("%s %s", app.AppName, app.Version),
Message: app.Description + app.Copyright,
Icon: icon,
},
WebviewIsTransparent: false,
WindowIsTranslucent: false,
},
Windows: &windows.Options{
WebviewIsTransparent: false,
WindowIsTranslucent: false,
DisableFramelessWindowDecorations: false,
},
Linux: &linux.Options{
ProgramName: app.AppName,
Icon: icon,
WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand,
WindowIsTranslucent: true,
},
})
if err != nil {
println("Error:", err.Error())
}
}