Skip to content

Commit

Permalink
Change main menu 'Help' order
Browse files Browse the repository at this point in the history
  • Loading branch information
yishn committed Aug 6, 2015
1 parent a82f43c commit c988c34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]

## [Goban v0.3.6][v0.3.6] (2015-08-06)
## [Goban v0.3.6][v0.3.6] (2015-08-07)

**Added**
* Highlight current game track in graph
Expand Down
10 changes: 5 additions & 5 deletions view/index.view.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ function buildMenu() {
enabled: false
},
{
label: 'Check For Updates',
label: 'Check For &Updates',
click: function() {
checkForUpdates(function(hasUpdates) {
if (hasUpdates) return
Expand All @@ -514,15 +514,15 @@ function buildMenu() {
},
{ type: 'separator' },
{
label: 'Issues',
label: 'GitHub &Respository',
click: function() {
shell.openExternal('https://github.com/yishn/' + app.getName() + '/issues')
shell.openExternal('https://github.com/yishn/' + app.getName())
}
},
{
label: 'GitHub Respository',
label: 'Report &Issue',
click: function() {
shell.openExternal('https://github.com/yishn/' + app.getName())
shell.openExternal('https://github.com/yishn/' + app.getName() + '/issues')
}
}
]
Expand Down

0 comments on commit c988c34

Please sign in to comment.