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

Commit

Permalink
Fix windows resolution, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
achhabra2 committed Dec 14, 2021
1 parent 45eec93 commit e4b8a08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func main() {
func GetAppDefaultDimensions() (int, int) {
switch goruntime.GOOS {
case "windows":
return 600, 500
return 650, 580
case "darwin":
return 480, 400
default:
Expand Down
2 changes: 1 addition & 1 deletion selfupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/rhysd/go-github-selfupdate/selfupdate"
)

const version = "0.0.5"
const version = "0.0.6"

func doSelfUpdate() bool {
v := semver.MustParse(version)
Expand Down

0 comments on commit e4b8a08

Please sign in to comment.