From 9f80be4570eedfe6cedaf168b2e0177e2ecd25dc Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 29 Oct 2014 09:24:58 -0700 Subject: [PATCH] Add roadmap to help menu --- menus/darwin.cson | 1 + src/browser/atom-application.coffee | 1 + 2 files changed, 2 insertions(+) diff --git a/menus/darwin.cson b/menus/darwin.cson index 7cf5bccc8..d483108f0 100644 --- a/menus/darwin.cson +++ b/menus/darwin.cson @@ -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' } ] } diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index abf90ca31..fb1f0331d 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -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()