diff --git a/build/tasks/install-task.coffee b/build/tasks/install-task.coffee index 6ad119b83..8ce804ad6 100644 --- a/build/tasks/install-task.coffee +++ b/build/tasks/install-task.coffee @@ -1,3 +1,4 @@ +fs = require 'fs' path = require 'path' runas = null @@ -28,3 +29,7 @@ module.exports = (grunt) -> rm shareDir mkdir path.dirname(shareDir) cp shellAppDir, shareDir + + # Create relative symbol link for apm. + process.chdir(binDir) + fs.symlinkSync(path.join('..', '..', 'share', 'atom', 'resources', 'app', 'apm', 'node_modules', '.bin', 'apm'), 'apm') diff --git a/build/tasks/mkdeb-task.coffee b/build/tasks/mkdeb-task.coffee index 2d503ac7f..5adf92574 100644 --- a/build/tasks/mkdeb-task.coffee +++ b/build/tasks/mkdeb-task.coffee @@ -16,7 +16,7 @@ module.exports = (grunt) -> {name, version, description} = grunt.file.readJSON('package.json') section = 'devel' arch = 'amd64' - maintainer = 'GitHub ' + maintainer = 'GitHub ' data = {name, version, description, section, arch, maintainer} control = path.join('resources', 'linux', 'debian', 'control') diff --git a/keymaps/linux.cson b/keymaps/linux.cson index b9a3364da..1f85b78d0 100644 --- a/keymaps/linux.cson +++ b/keymaps/linux.cson @@ -15,6 +15,7 @@ 'ctrl-N': 'application:new-window' 'ctrl-W': 'window:close' 'ctrl-o': 'application:open' + 'ctrl-q': 'application:quit' 'ctrl-T': 'pane:reopen-closed-item' 'ctrl-n': 'application:new-file' 'ctrl-s': 'core:save' diff --git a/menus/linux.cson b/menus/linux.cson index cf4cdfb2e..4ea6d6512 100644 --- a/menus/linux.cson +++ b/menus/linux.cson @@ -17,7 +17,7 @@ { label: 'Close All &Buffers', command: 'pane:close' } { label: 'Clos&e Window', command: 'window:close' } { type: 'separator' } - { label: 'E&xit', command: 'application:quit' } + { label: 'Quit', command: 'application:quit' } ] } diff --git a/package.json b/package.json index 38a0f3469..88a444d80 100644 --- a/package.json +++ b/package.json @@ -66,15 +66,15 @@ "autocomplete": "0.27.0", "autoflow": "0.15.0", "autosave": "0.13.0", - "background-tips": "0.9.0", + "background-tips": "0.10.0", "bookmarks": "0.22.0", "bracket-matcher": "0.29.0", - "command-palette": "0.19.0", + "command-palette": "0.20.0", "dev-live-reload": "0.30.0", "exception-reporting": "0.17.0", "feedback": "0.28.0", - "find-and-replace": "0.93.0", - "fuzzy-finder": "0.44.0", + "find-and-replace": "0.94.0", + "fuzzy-finder": "0.45.0", "git-diff": "0.27.0", "go-to-line": "0.18.0", "grammar-selector": "0.23.0", @@ -86,15 +86,15 @@ "open-on-github": "0.23.0", "package-generator": "0.30.0", "release-notes": "0.26.0", - "settings-view": "0.105.0", + "settings-view": "0.106.0", "snippets": "0.40.0", "spell-check": "0.32.0", "status-bar": "0.38.0", - "styleguide": "0.27.0", - "symbols-view": "0.46.0", + "styleguide": "0.28.0", + "symbols-view": "0.47.0", "tabs": "0.33.0", "timecop": "0.17.0", - "tree-view": "0.85.0", + "tree-view": "0.86.0", "update-package-dependencies": "0.6.0", "welcome": "0.12.0", "whitespace": "0.21.0",