-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApplicationSettings.go
45 lines (36 loc) · 1.05 KB
/
ApplicationSettings.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
package backend
import (
_ "embed"
"github.com/Masterminds/semver"
"wails_vue/backend/Config"
"wails_vue/backend/FileStore"
)
type ApplicationSettings struct {
// The title cased name used in the window title and such
// "SurrealDB Explorer"
Title string `json:"title"`
// The lower cased name used for directories and such
// "surrealdb_explorer"
Name string `json:"name"`
Icon []byte `json:"-"`
Version *semver.Version `json:"version"`
}
func NewApplicationSettings() *ApplicationSettings {
settings := &ApplicationSettings{
Title: "SurrealDB Explorer",
Name: "surrealdb_explorer",
Version: semver.MustParse("0.0.13"),
}
FileStore.NewStores(settings.Name)
FileStore.DefineStore[Config.Window]("window_settings")
FileStore.DefineStore[Config.Connections]("connections")
FileStore.DefineStore[Config.QueriesList]("queries")
FileStore.DefineStore[Config.Preferences]("preferences")
return settings
}
func (a *ApplicationSettings) GetTitle() string {
return a.Title
}
func (a *ApplicationSettings) GetName() string {
return a.Name
}