We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564e279 commit 32f7ef3Copy full SHA for 32f7ef3
main.go
@@ -15,13 +15,17 @@ import (
15
//go:embed frontend/dist
16
var assets embed.FS
17
18
+const (
19
+ version = "0.0.1"
20
+)
21
+
22
func main() {
23
go listener.CreateWatcher()
24
25
GoSearchApp := GoSearch()
26
27
err := wails.Run(&options.App{
- Title: "GoSearch",
28
+ Title: "GoSearch - V" + version,
29
Width: 650,
30
Height: 350,
31
Frameless: true,
@@ -44,4 +48,4 @@ func main() {
44
48
if err != nil {
45
49
pterm.Fatal.WithFatal(true).Println(err)
46
50
}
47
-}
51
+}
0 commit comments