Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from Nitamet/fix-settings
Browse files Browse the repository at this point in the history
Save settings path first time app is launched
  • Loading branch information
Nitamet authored Apr 15, 2024
2 parents 329cb44 + 51e48b7 commit 6cc18ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions backend/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ func createNewSettingsFile(configDir string) Settings {

// Write default settings to file
settings := getDefaultSettings()
settings.path = path

settingsJson, err := json.MarshalIndent(settings, "", " ")
if err != nil {
log.Panic(err)
Expand Down
2 changes: 1 addition & 1 deletion updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
)

const version = "v0.4.0"
const version = "v0.4.1"
const updaterURL = "https://geemo.app/"

func setupUpdater() *selfupdate.Updater {
Expand Down

0 comments on commit 6cc18ca

Please sign in to comment.