Skip to content

Commit

Permalink
Add roadmap to help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Oct 30, 2014
1 parent 61f75b0 commit 9f80be4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions menus/darwin.cson
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@
{ label: 'Terms of Use', command: 'application:open-terms-of-use' }
{ label: 'Documentation', command: 'application:open-documentation' }
{ label: 'Community Discussions', command: 'application:open-discussions' }
{ label: 'Roadmap', command: 'application:open-roadmap' }
{ type: 'separator' }
]
}
Expand Down
1 change: 1 addition & 0 deletions src/browser/atom-application.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ class AtomApplication

@on 'application:open-documentation', -> require('shell').openExternal('https://atom.io/docs/latest/?app')
@on 'application:open-discussions', -> require('shell').openExternal('https://discuss.atom.io')
@on 'application:open-roadmap', -> require('shell').openExternal('https://atom.io/roadmap?app')
@on 'application:open-terms-of-use', -> require('shell').openExternal('https://atom.io/terms')
@on 'application:install-update', -> @autoUpdateManager.install()
@on 'application:check-for-update', => @autoUpdateManager.check()
Expand Down

0 comments on commit 9f80be4

Please sign in to comment.