diff --git a/info.plist b/info.plist index 2f1bc8b..cd9f36c 100644 --- a/info.plist +++ b/info.plist @@ -705,7 +705,7 @@ 10m version - 3.0.0 + 3.0.1 webaddress diff --git a/main.go b/main.go index f0f4cd4..cff6c97 100644 --- a/main.go +++ b/main.go @@ -13,12 +13,14 @@ import ( "path/filepath" aw "github.com/deanishe/awgo" + "github.com/deanishe/awgo/update" ) const ( cacheKey = "projects.json" issueTrackerURL = "https://github.com/deanishe/alfred-sublime-text/issues" forumThreadURL = "https://www.alfredforum.com/topic/4510-find-and-open-sublime-text-projects/" + repo = "deanishe/alfred-sublime-text" ) var ( @@ -27,7 +29,10 @@ var ( ) func init() { - wf = aw.New() + wf = aw.New( + update.GitHub(repo), + aw.HelpURL(issueTrackerURL), + ) configFile = filepath.Join(wf.DataDir(), "sublime.toml") }