Skip to content

Commit

Permalink
added version to app name for easy identification
Browse files Browse the repository at this point in the history
  • Loading branch information
beebeeoii committed Jan 12, 2022
1 parent 31f3e89 commit 5dbb51d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func Init() error {
if runtime.GOOS == "windows" {
systray.Register(onReady, onExit)
}
mainApp = app.NewWithID(fmt.Sprintf("%s v%s", lominus.APP_NAME, lominus.APP_VERSION))
mainApp = app.NewWithID(lominus.APP_NAME)
mainApp.SetIcon(resourceAppIconPng)

go func() {
Expand All @@ -65,7 +65,7 @@ func Init() error {
}
}()

w = mainApp.NewWindow(lominus.APP_NAME)
w = mainApp.NewWindow(fmt.Sprintf("%s v%s", lominus.APP_NAME, lominus.APP_VERSION))

credentialsTab, credentialsUiErr := getCredentialsTab(w)
if credentialsUiErr != nil {
Expand Down

0 comments on commit 5dbb51d

Please sign in to comment.