From 5d62127b67231e210d792817303f123de5134cfd Mon Sep 17 00:00:00 2001 From: Phil Hord Date: Mon, 21 Sep 2015 17:29:22 -0400 Subject: [PATCH 01/22] :bug: Teach git-repository-provider to recognize .git-files Git repositories may be contained in a .git directory or a .git file in the workdir hierarchy, but Atom only recognizes the directory format. Teach Atom to recognize the filesystem-agnostic Git symbolic link used by default in many situations including, for example, submodules. The .git file contains a relative or absolute path to the location of the real git-dir, preceded by the 8-byte string "gitdir: ". Here's a console log showing the normal creation of such a symbolic link. /tmp $ git init --separate-git-dir foo.git bar Initialized empty Git repository in /tmp/foo.git/ /tmp $ ls /tmp $ bar foo.git /tmp $ ls -la bar drwxr-xr-x 2 hordp hordp 4096 Sep 18 15:54 . drwxr-xr-x 4 hordp hordp 4096 Sep 18 15:54 .. -rw-r--r-- 1 hordp hordp 25 Sep 18 15:54 .git /tmp $ ls foo.git branches config description HEAD hooks info objects refs /tmp $ cat bar/.git gitdir: /tmp/foo.git Fixes #8876 --- src/git-repository-provider.coffee | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/git-repository-provider.coffee b/src/git-repository-provider.coffee index 850d30f22..3b4df5d2b 100644 --- a/src/git-repository-provider.coffee +++ b/src/git-repository-provider.coffee @@ -1,6 +1,17 @@ fs = require 'fs' +{Directory} = require 'pathwatcher' GitRepository = require './git-repository' +# Returns the .gitdir path in the agnostic Git symlink .git file given, or +# null if the path is not a valid gitfile. +# +# * `gitFile` {String} path of gitfile to parse +gitFileRegex = RegExp "^gitdir: (.+)" +pathFromGitFile = (gitFile) -> + try + gitFileBuff = fs.readFileSync(gitFile, 'utf8') + return gitFileBuff?.match(gitFileRegex)[1] + # Checks whether a valid `.git` directory is contained within the given # directory or one of its ancestors. If so, a Directory that corresponds to the # `.git` folder will be returned. Otherwise, returns `null`. @@ -11,6 +22,9 @@ findGitDirectorySync = (directory) -> # can return cached values rather than always returning new objects: # getParent(), getFile(), getSubdirectory(). gitDir = directory.getSubdirectory('.git') + gitDirPath = pathFromGitFile(gitDir.getPath?()) + if gitDirPath + gitDir = new Directory(directory.resolve(gitDirPath)) if gitDir.existsSync?() and isValidGitDirectorySync gitDir gitDir else if directory.isRoot() From 7445857c821dce07e5f5a027628cf0d3fde04709 Mon Sep 17 00:00:00 2001 From: Phil Hord Date: Mon, 21 Sep 2015 17:16:45 -0400 Subject: [PATCH 02/22] :white_check_mark: Add test for .git-files --- spec/git-repository-provider-spec.coffee | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/spec/git-repository-provider-spec.coffee b/spec/git-repository-provider-spec.coffee index 15e1dcc60..176acee7d 100644 --- a/spec/git-repository-provider-spec.coffee +++ b/spec/git-repository-provider-spec.coffee @@ -56,6 +56,21 @@ describe "GitRepositoryProvider", -> provider.repositoryForDirectory(directory).then (result) -> expect(result).toBe null + describe "when specified a Directory with a valid gitfile-linked repository", -> + it "returns a Promise that resolves to a GitRepository", -> + waitsForPromise -> + provider = new GitRepositoryProvider atom.project + gitDirPath = path.join(__dirname, 'fixtures/git/master.git') + workDirPath = temp.mkdirSync('git-workdir') + fs.writeFileSync(path.join(workDirPath, '.git'), 'gitdir: ' + gitDirPath+'\n') + + directory = new Directory workDirPath + provider.repositoryForDirectory(directory).then (result) -> + expect(result).toBeInstanceOf GitRepository + expect(provider.pathToRepository[result.getPath()]).toBeTruthy() + expect(result.statusTask).toBeTruthy() + expect(result.getType()).toBe 'git' + describe "when specified a Directory without existsSync()", -> directory = null provider = null From 388c851794602a4882d1fcd0b1db511512ad823a Mon Sep 17 00:00:00 2001 From: Wliu <50Wliu@users.noreply.github.com> Date: Wed, 30 Sep 2015 16:23:19 -0400 Subject: [PATCH 03/22] :arrow_up: find-and-replace@0.184.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f04062e0a..ac7a6b550 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "dev-live-reload": "0.47.0", "encoding-selector": "0.21.0", "exception-reporting": "0.37.0", - "find-and-replace": "0.183.0", + "find-and-replace": "0.184.0", "fuzzy-finder": "0.90.0", "git-diff": "0.56.0", "go-to-line": "0.30.0", From 1940d4584b2984a77a794c49a8c0882227fba7e7 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 30 Sep 2015 15:01:52 -0600 Subject: [PATCH 04/22] Fix typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /cc @izuzak since I don’t want to open a PR for this --- src/window-event-handler.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/window-event-handler.coffee b/src/window-event-handler.coffee index 666a153ac..270650b2f 100644 --- a/src/window-event-handler.coffee +++ b/src/window-event-handler.coffee @@ -76,11 +76,11 @@ class WindowEventHandler atom.keymaps.handleKeyboardEvent(event) event.stopImmediatePropagation() - handleDrop: (evenDocumentt) -> + handleDrop: (event) -> event.preventDefault() event.stopPropagation() - handleDragover: (Documentevent) -> + handleDragover: (event) -> event.preventDefault() event.stopPropagation() event.dataTransfer.dropEffect = 'none' From 7d2e32efb1c6375a4c42b112317b0b7eff8ef763 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 30 Sep 2015 14:07:27 -0700 Subject: [PATCH 05/22] :arrow_up: grunt-electron-installer --- build/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/package.json b/build/package.json index 4960d6571..deb53bf2a 100644 --- a/build/package.json +++ b/build/package.json @@ -22,7 +22,7 @@ "grunt-contrib-less": "~0.8.0", "grunt-cson": "0.16.0", "grunt-download-electron": "^2.1.1", - "grunt-electron-installer": "1.0.3", + "grunt-electron-installer": "1.0.4", "grunt-lesslint": "0.17.0", "grunt-peg": "~1.1.0", "grunt-shell": "~0.3.1", From 212886817e7fae2c59a14a8e4fdf7e19e8e859b5 Mon Sep 17 00:00:00 2001 From: Phil Hord Date: Thu, 1 Oct 2015 09:41:24 -0400 Subject: [PATCH 06/22] Clean up *nix-specific paths in spec There remain a few others in other specs, but someone who can test them reliably should clean those up. --- spec/git-repository-provider-spec.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/git-repository-provider-spec.coffee b/spec/git-repository-provider-spec.coffee index 176acee7d..13a0724d6 100644 --- a/spec/git-repository-provider-spec.coffee +++ b/spec/git-repository-provider-spec.coffee @@ -11,7 +11,7 @@ describe "GitRepositoryProvider", -> it "returns a Promise that resolves to a GitRepository", -> waitsForPromise -> provider = new GitRepositoryProvider atom.project - directory = new Directory path.join(__dirname, 'fixtures/git/master.git') + directory = new Directory path.join(__dirname, 'fixtures', 'git', 'master.git') provider.repositoryForDirectory(directory).then (result) -> expect(result).toBeInstanceOf GitRepository expect(provider.pathToRepository[result.getPath()]).toBeTruthy() @@ -24,11 +24,11 @@ describe "GitRepositoryProvider", -> secondRepo = null waitsForPromise -> - directory = new Directory path.join(__dirname, 'fixtures/git/master.git') + directory = new Directory path.join(__dirname, 'fixtures', 'git', 'master.git') provider.repositoryForDirectory(directory).then (result) -> firstRepo = result waitsForPromise -> - directory = new Directory path.join(__dirname, 'fixtures/git/master.git/objects') + directory = new Directory path.join(__dirname, 'fixtures', 'git', 'master.git', 'objects') provider.repositoryForDirectory(directory).then (result) -> secondRepo = result runs -> @@ -60,7 +60,7 @@ describe "GitRepositoryProvider", -> it "returns a Promise that resolves to a GitRepository", -> waitsForPromise -> provider = new GitRepositoryProvider atom.project - gitDirPath = path.join(__dirname, 'fixtures/git/master.git') + gitDirPath = path.join(__dirname, 'fixtures', 'git', 'master.git') workDirPath = temp.mkdirSync('git-workdir') fs.writeFileSync(path.join(workDirPath, '.git'), 'gitdir: ' + gitDirPath+'\n') From 1670357293b7088e1348d0f03e17f5bd454d43d3 Mon Sep 17 00:00:00 2001 From: Ross Allen Date: Thu, 24 Sep 2015 12:14:59 -0700 Subject: [PATCH 07/22] Link Gutter::decorateMarker to TextEditor::decorateMarker `Gutter::decorateMarker` passes its `decorationParams` object through to `TextEditor::decorateMarker`. Rather than duplicate documentation and fall out-of-date (as was surfaced in #8920), link the `TextEditor::decorateMarker` as the canonical docs location. --- src/gutter.coffee | 13 +++++-------- src/text-editor.coffee | 40 +++++++++++++++++++++++++--------------- 2 files changed, 30 insertions(+), 23 deletions(-) diff --git a/src/gutter.coffee b/src/gutter.coffee index 4f09a27f2..8418823bf 100644 --- a/src/gutter.coffee +++ b/src/gutter.coffee @@ -78,14 +78,11 @@ class Gutter # ## Arguments # # * `marker` A {Marker} you want this decoration to follow. - # * `decorationParams` An {Object} representing the decoration - # * `class` This CSS class will be applied to the decorated line number. - # * `onlyHead` (optional) If `true`, the decoration will only be applied to - # the head of the marker. - # * `onlyEmpty` (optional) If `true`, the decoration will only be applied if - # the associated marker is empty. - # * `onlyNonEmpty` (optional) If `true`, the decoration will only be applied - # if the associated marker is non-empty. + # * `decorationParams` An {Object} representing the decoration. It is passed + # to {TextEditor::decorateMarker} as its `decorationParams` and so supports + # all options documented there. + # * `type` __Caveat__: set to `'line-number'` if this is the line-number + # gutter, `'gutter'` otherwise. This cannot be overridden. # # Returns a {Decoration} object decorateMarker: (marker, options) -> diff --git a/src/text-editor.coffee b/src/text-editor.coffee index 8dce16439..62cd167b9 100644 --- a/src/text-editor.coffee +++ b/src/text-editor.coffee @@ -1253,7 +1253,7 @@ class TextEditor extends Model # is invalidated, or is destroyed, the decoration will be updated to reflect # the marker's state. # - # There are three types of supported decorations: + # The following are the supported decorations types: # # * __line__: Adds your CSS `class` to the line nodes within the range # marked by the marker @@ -1269,36 +1269,46 @@ class TextEditor extends Model #
# # ``` + # * __overlay__: Positions the view associated with the given item at the head + # or tail of the given `Marker`. + # * __gutter__: A decoration that tracks a {Marker} in a {Gutter}. Gutter + # decorations are created by calling {Gutter::decorateMarker} on the + # desired `Gutter` instance. # # ## Arguments # # * `marker` A {Marker} you want this decoration to follow. # * `decorationParams` An {Object} representing the decoration e.g. # `{type: 'line-number', class: 'linter-error'}` - # * `type` There are a few supported decoration types: `line-number`, `line`, - # `highlight`, and `overlay`. The behavior of the types are as follows: - # * `line-number` Adds the given `class` to the line numbers overlapping the - # rows spanned by the marker. + # * `type` There are several supported decoration types. The behavior of the + # types are as follows: # * `line` Adds the given `class` to the lines overlapping the rows - # spanned by the marker. + # spanned by the `Marker`. + # * `line-number` Adds the given `class` to the line numbers overlapping + # the rows spanned by the `Marker`. # * `highlight` Creates a `.highlight` div with the nested class with up - # to 3 nested regions that fill the area spanned by the marker. + # to 3 nested regions that fill the area spanned by the `Marker`. # * `overlay` Positions the view associated with the given item at the - # head or tail of the given marker, depending on the `position` + # head or tail of the given `Marker`, depending on the `position` # property. + # * `gutter` Tracks a {Marker} in a {Gutter}. Created by calling + # {Gutter::decorateMarker} on the desired `Gutter` instance. # * `class` This CSS class will be applied to the decorated line number, # line, highlight, or overlay. + # * `item` (optional) An {HTMLElement} or a model {Object} with a + # corresponding view registered. Only applicable to the `gutter` and + # `overlay` types. # * `onlyHead` (optional) If `true`, the decoration will only be applied to - # the head of the marker. Only applicable to the `line` and `line-number` - # types. - # * `onlyEmpty` (optional) If `true`, the decoration will only be applied if - # the associated marker is empty. Only applicable to the `line` and + # the head of the `Marker`. Only applicable to the `line` and # `line-number` types. + # * `onlyEmpty` (optional) If `true`, the decoration will only be applied if + # the associated `Marker` is empty. Only applicable to the `gutter`, + # `line`, and `line-number` types. # * `onlyNonEmpty` (optional) If `true`, the decoration will only be applied - # if the associated marker is non-empty. Only applicable to the `line` - # and `line-number` types. + # if the associated `Marker` is non-empty. Only applicable to the + # `gutter`, `line`, and `line-number` types. # * `position` (optional) Only applicable to decorations of type `overlay`, - # controls where the overlay view is positioned relative to the marker. + # controls where the overlay view is positioned relative to the `Marker`. # Values can be `'head'` (the default), or `'tail'`. # # Returns a {Decoration} object From 19073adf6ce142d39740dbeac4a90141d77e0837 Mon Sep 17 00:00:00 2001 From: Wliu <50Wliu@users.noreply.github.com> Date: Thu, 1 Oct 2015 16:39:46 -0400 Subject: [PATCH 08/22] :arrow_up: language-mustache@0.13.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac7a6b550..f70be70e8 100644 --- a/package.json +++ b/package.json @@ -129,7 +129,7 @@ "language-json": "0.16.0", "language-less": "0.28.2", "language-make": "0.18.0", - "language-mustache": "0.12.0", + "language-mustache": "0.13.0", "language-objective-c": "0.15.0", "language-perl": "0.29.0", "language-php": "0.30.0", From 28d8a105da38dc37ccc535ac925790d74d629c1e Mon Sep 17 00:00:00 2001 From: Wliu <50Wliu@users.noreply.github.com> Date: Thu, 1 Oct 2015 16:41:14 -0400 Subject: [PATCH 09/22] :arrow_up: language-json@0.17.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f70be70e8..f587f9da1 100644 --- a/package.json +++ b/package.json @@ -126,7 +126,7 @@ "language-hyperlink": "0.14.0", "language-java": "0.16.0", "language-javascript": "0.96.0", - "language-json": "0.16.0", + "language-json": "0.17.0", "language-less": "0.28.2", "language-make": "0.18.0", "language-mustache": "0.13.0", From d927f853df61e88179ffaff3a7ed4019178950b0 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:38:18 -0700 Subject: [PATCH 10/22] Update eslint package to point the linter --- build/deprecated-packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index ac980e165..1d3278d1d 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -83,6 +83,10 @@ "hasDeprecations": true, "latestHasDeprecations": false }, + "atom-eslint": { + "hasAlternative": true, + "alternative": "linter" + }, "atom-faker": { "version": "<=0.2.0", "hasDeprecations": true, From 83d61fd64018beb0426c37b7c311dc6023276c56 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:38:40 -0700 Subject: [PATCH 11/22] Update go-fmt to point to go-plus --- build/deprecated-packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 1d3278d1d..300c043e4 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -96,6 +96,10 @@ "hasAlternative": true, "alternative": "linter" }, + "atom-go-format": { + "hasAlternative": true, + "alternative": "go-plus" + }, "atom-grunt-configs": { "version": "<=0.1.0", "hasDeprecations": true, From 7e1b2f7d06f245efc0dd3e379484a9acf15926d1 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:39:28 -0700 Subject: [PATCH 12/22] Both alt autocomplete-python providers point to ac-python --- build/deprecated-packages.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 300c043e4..3e848917a 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -246,7 +246,7 @@ }, "autocomplete-jedi": { "hasAlternative": true, - "alternative": "autocomplete-plus-python-jedi" + "alternative": "autocomplete-python" }, "autocomplete-paths": { "version": "<=1.0.1", @@ -268,6 +268,10 @@ "hasDeprecations": true, "latestHasDeprecations": true }, + "autocomplete-plus-python-jedi": { + "hasAlternative": true, + "alternative": "autocomplete-python" + }, "autocomplete-snippets": { "version": "<=1.0.0", "hasDeprecations": true, From 33e693c336eaf376cd55ad1b44765085f3fa956b Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:39:47 -0700 Subject: [PATCH 13/22] highlight-css-color now points to pigments --- build/deprecated-packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 3e848917a..71ca82621 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -714,9 +714,8 @@ "latestHasDeprecations": true }, "highlight-css-color": { - "version": "<=1.3.0", - "hasDeprecations": true, - "latestHasDeprecations": true + "hasAlternative": true, + "alternative": "pigments" }, "highlight-line": { "version": "<=0.9.3", From a810a4805c35d4871234a8d1a536f490575606be Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:42:21 -0700 Subject: [PATCH 14/22] nbsp-package is now in core --- build/deprecated-packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 71ca82621..49923b7a7 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -1056,6 +1056,10 @@ "hasDeprecations": true, "latestHasDeprecations": false }, + "nbsp-detect": { + "hasAlternative": true, + "alternative": "core" + }, "node-debugger": { "version": "<=0.2.3", "hasDeprecations": true, From d5ce1856570202146389462fd180a34162a32fa9 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:42:33 -0700 Subject: [PATCH 15/22] Deprecate ternjs for atom-ternjs --- build/deprecated-packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 49923b7a7..9e5b41e77 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -1515,6 +1515,10 @@ "hasDeprecations": true, "latestHasDeprecations": false }, + "ternjs": { + "hasAlternative": true, + "alternative": "atom-ternjs" + }, "test-status": { "version": "<=0.27.1", "hasDeprecations": true, From 5a4f79c5056e51d0ca41424fc9be2760fd8ce23f Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Thu, 1 Oct 2015 15:43:09 -0700 Subject: [PATCH 16/22] Deprecate remember-session package --- build/deprecated-packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 9e5b41e77..6a5ced009 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -1272,6 +1272,10 @@ "hasDeprecations": true, "latestHasDeprecations": true }, + "remember-session": { + "hasAlternative": true, + "alternative": "core" + }, "remote-atom": { "version": "<=1.2.0", "hasDeprecations": true, From 5b522f70c234ebc373351ae7bcfd3d8627946e9d Mon Sep 17 00:00:00 2001 From: Jeremy Ebneyamin Date: Fri, 2 Oct 2015 00:01:06 -0700 Subject: [PATCH 17/22] :bug: Fix Windows context menu shortcut Fix the bug where Open With Atom on Windows machines will fail for paths containing spaces. Wraps quotes around the path to the Atom executable in the reg key string. --- src/browser/squirrel-update.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/browser/squirrel-update.coffee b/src/browser/squirrel-update.coffee index be90e6cd6..0e4743a21 100644 --- a/src/browser/squirrel-update.coffee +++ b/src/browser/squirrel-update.coffee @@ -67,9 +67,9 @@ installContextMenu = (callback) -> installMenu = (keyPath, arg, callback) -> args = [keyPath, '/ve', '/d', 'Open with Atom'] addToRegistry args, -> - args = [keyPath, '/v', 'Icon', '/d', process.execPath] + args = [keyPath, '/v', 'Icon', '/d', "\"#{process.execPath}\""] addToRegistry args, -> - args = ["#{keyPath}\\command", '/ve', '/d', "#{process.execPath} \"#{arg}\""] + args = ["#{keyPath}\\command", '/ve', '/d', "\"#{process.execPath}\" \"#{arg}\""] addToRegistry(args, callback) installMenu fileKeyPath, '%1', -> From 21611260480593a03b4e31d27b54adffaa939ff8 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Fri, 2 Oct 2015 13:55:45 -0700 Subject: [PATCH 18/22] Deprecate max-tabs for tidy-tabs --- build/deprecated-packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/deprecated-packages.json b/build/deprecated-packages.json index 6a5ced009..4a8b53442 100644 --- a/build/deprecated-packages.json +++ b/build/deprecated-packages.json @@ -1007,9 +1007,8 @@ "latestHasDeprecations": true }, "max-tabs": { - "version": "<=0.3.0", - "hasDeprecations": true, - "latestHasDeprecations": true + "hasAlternative": true, + "alternative": "tidy-tabs" }, "maximize-panes": { "version": "<=0.1.0", From 37503b4d03f3f0162738332ff9693641b9ffdd40 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Fri, 2 Oct 2015 15:01:36 -0700 Subject: [PATCH 19/22] :arrow_up: one ui themes to fix fnr --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f587f9da1..d48cf1d25 100644 --- a/package.json +++ b/package.json @@ -62,10 +62,10 @@ "atom-light-ui": "0.43.0", "base16-tomorrow-dark-theme": "1.0.0", "base16-tomorrow-light-theme": "1.0.0", - "one-dark-ui": "1.1.4", + "one-dark-ui": "1.1.5", "one-dark-syntax": "1.1.1", "one-light-syntax": "1.1.1", - "one-light-ui": "1.1.4", + "one-light-ui": "1.1.5", "solarized-dark-syntax": "0.38.1", "solarized-light-syntax": "0.22.1", "about": "1.1.0", From d1603320f77c341740aaab0d96b4a5ba2dcf1571 Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Fri, 2 Oct 2015 17:23:30 -0700 Subject: [PATCH 20/22] :arrow_up: find-and-replace@0.185.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d48cf1d25..97c8f58e7 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "dev-live-reload": "0.47.0", "encoding-selector": "0.21.0", "exception-reporting": "0.37.0", - "find-and-replace": "0.184.0", + "find-and-replace": "0.185.0", "fuzzy-finder": "0.90.0", "git-diff": "0.56.0", "go-to-line": "0.30.0", From c019f1a02eb8f7778d42bb8ade2ab25d323e5974 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Sat, 3 Oct 2015 15:53:01 +0200 Subject: [PATCH 21/22] :arrow_up: autocomplete-plus --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 97c8f58e7..054535706 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "autocomplete-atom-api": "0.9.2", "autocomplete-css": "0.11.0", "autocomplete-html": "0.7.2", - "autocomplete-plus": "2.20.0", + "autocomplete-plus": "2.21.0", "autocomplete-snippets": "1.7.1", "autoflow": "0.25.0", "autosave": "0.22.0", From 4b507be99769a38e0b8e9b26a950fc408951f986 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Sat, 3 Oct 2015 15:53:11 +0200 Subject: [PATCH 22/22] :arrow_up: wrap-guide --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 054535706..e7792571e 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "update-package-dependencies": "0.10.0", "welcome": "0.30.0", "whitespace": "0.31.0", - "wrap-guide": "0.37.0", + "wrap-guide": "0.38.0", "language-c": "0.48.0", "language-clojure": "0.17.0", "language-coffee-script": "0.42.0",