Add roadmap to help menu

This commit is contained in:
Kevin Sawicki
2014-10-29 09:24:58 -07:00
parent 61f75b0764
commit 9f80be4570
2 changed files with 2 additions and 0 deletions

View File

@@ -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' }
]
}

View File

@@ -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()