lp:snappy-atom

Owned by Nitin Prabhakar
Get this repository:
git clone https://git.launchpad.net/snappy-atom

Import details

Import Status: Failed

This repository is an import of the Git repository at https://github.com/retrocausal/atom.git.

The import has been suspended because it failed 5 or more times in succession.

Last successful import was .

Import started on izar and finished taking 1 hour — see the log
Import started on alnitak and finished taking 1 hour — see the log
Import started on izar and finished taking 1 hour — see the log
Import started on alnitak and finished taking 1 hour — see the log

Branches

Name Last Modified Last Commit
locallts 2017-10-01 07:41:41 UTC
merge from 1.20

Author: Nitin Prabhakar
Author Date: 2017-10-01 07:41:41 UTC

merge from 1.20

master 2017-09-30 05:58:39 UTC
Merge pull request #15760 from atom/tj-update-macos-icons

Author: Thomas Johansen
Author Date: 2017-09-30 05:58:39 UTC

Merge pull request #15760 from atom/tj-update-macos-icons

Fix faded application icons on macOS 10.13

1.19-releases 2017-08-21 10:06:48 UTC
:arrow_down: pathwatcher, atom-keymap and tree-view

Author: Antonio Scandurra
Author Date: 2017-08-21 10:05:50 UTC

:arrow_down: pathwatcher, atom-keymap and tree-view

This partially reverts c8dd400 as we don't want to take the risk of
cherry-picking unrelated changes on stable in order to fix #15267.

Please, note that decrementing the version of these dependencies has the
cost of introducing some duplication in the `node_modules` folder due to
pathwatcher not being deduped, which slightly increments the size of the
final application.

as-fix-block-decorations-margin-top-calculation 2017-08-20 08:05:22 UTC
:art:

Author: Antonio Scandurra
Author Date: 2017-08-20 08:05:22 UTC

:art:

ns-fix-highlight-end 2017-08-19 02:53:58 UTC
Fix highlight end pixel position calculation

Author: Nathan Sobo
Author Date: 2017-08-19 02:53:58 UTC

Fix highlight end pixel position calculation

Previously, we were calculating the position preceding block decorations
for the row following the end of the highlighted range, but that's
actually wrong. We just want the position following block decorations of
the end of the highlighted range, plus one line height. This prevents us
from incorrectly rendering the end of highlight after block decorations
that immediately follow the end of the highlighted range.

fb-wb-command-meta 2017-08-18 21:57:56 UTC
[Commands] Add support for rich listener objects with first-class metadata

Author: Will Binns-Smith
Author Date: 2017-08-18 21:52:18 UTC

[Commands] Add support for rich listener objects with first-class metadata

This adds support for listener objects which, in addition to the
existing callback listeners, can optionally provide a `displayName`
ahead of time to avoid a potentially awkward humanized displayName.

Every object-based listener must implement `handleEvent()`, which plays
the role of the callback fired when the command is dispatched.

We can support other first-class metadata, for example I'm preparing a pull
request to the command palette to support displaying a command's
`description` field as a second line below the `displayName` in search
results. I even have an example of adding "tags" to a command to help
capture keywords a user might use when searching for a command, kind of
like how macOS shows "System Preferences" as a result for settings:

Here's an example of an object command listener:

```js
atom.commands.add('foo:command', document.body, {
  displayName: 'My awesome foo command',
  description: 'Here\'s some detail about my foo command. Try it out!',
  handleEvent() {
    alert('foo!');
  },
```

It should also be technically possible to attach these properties to a
function callback. If we'd like to officially support this I'll add some
tests to check:

```js
function myListener() {
  alert('foo!');
}

myListener.displayName = 'My Awesome Listener';
myListener.description = 'Does awesome stuff!';
```

I'll cross-link my command palette pull request which demonstrates the
use of this API.

mb-remove-runas 2017-08-18 20:10:05 UTC
Replace runas with spawn-as-admin in command installer

Author: Max Brunsfeld
Author Date: 2017-08-18 20:10:05 UTC

Replace runas with spawn-as-admin in command installer

as-fix-cropped-fonts 2017-08-18 13:56:54 UTC
Drop use of GPU tiles for lines and line numbers

Author: Antonio Scandurra
Author Date: 2017-08-18 13:56:54 UTC

Drop use of GPU tiles for lines and line numbers

At the cost of a very minimal reduction in layout performance, we gain
reliable rendering at all line heights and don't have to worry about
characters that extend above/below the footprint of a line.

Signed-off-by: Nathan Sobo <nathan@github.com>

1.20-releases 2017-08-17 18:11:05 UTC
Merge pull request #15228 from atom/mb-fix-set-text-via-diff-bug

Author: Max Brunsfeld
Author Date: 2017-08-17 18:09:36 UTC

Merge pull request #15228 from atom/mb-fix-set-text-via-diff-bug

Upgrade text-buffer for setTextViaDiff fix

pb-remove-unneeded-files-win 2017-08-15 23:12:15 UTC
Merge branch 'master' into pb-remove-unneeded-files-win

Author: Ian Olsen
Author Date: 2017-08-15 23:12:15 UTC

Merge branch 'master' into pb-remove-unneeded-files-win

ns-fix-mousewheel-handling 2017-08-15 22:08:07 UTC
Only scroll one axis at a time, whichever has the greater delta

Author: Nathan Sobo
Author Date: 2017-08-15 22:08:07 UTC

Only scroll one axis at a time, whichever has the greater delta

ns-move-placeholder-text 2017-08-15 21:48:18 UTC
Add test for placeholder text positioning

Author: Nathan Sobo
Author Date: 2017-08-15 21:48:18 UTC

Add test for placeholder text positioning

as-simplify-did-focus 2017-08-15 09:38:42 UTC
Simplify `didFocus` logic in `TextEditorComponent`

Author: Antonio Scandurra
Author Date: 2017-08-15 09:37:58 UTC

Simplify `didFocus` logic in `TextEditorComponent`

Prior to #15302, we wanted to make sure the component had rendered the
hidden input when receiving the focus event. To do so, we added some
workarounds for scenarios where the focus event was triggered before the
component had the chance to detect it was attached or visible.

After that pull-request, however, we always render the hidden input
independently of which events the component has observed, thus making
those workarounds not necessary anymore.

Please, note that we decided not to include this commit's changes in
beta, and want to let them bake for a full release cycle instead.

fb-wb-modal-focus 2017-08-14 16:56:43 UTC
Add documentation to addModalPanel api

Author: Will Binns-Smith
Author Date: 2017-08-14 16:56:43 UTC

Add documentation to addModalPanel api

as-fix-hidpi-blurriness 2017-08-14 14:50:06 UTC
WIP

Author: Antonio Scandurra
Author Date: 2017-08-14 14:50:06 UTC

WIP

wl-auto-detect-encoding 2017-08-03 04:53:04 UTC
Update promise logic

Author: Wliu
Author Date: 2017-08-03 04:53:04 UTC

Update promise logic

facebook 2017-08-02 20:45:46 UTC
:arrow_up: language-php@0.41.0

Author: Wliu
Author Date: 2017-08-02 20:45:46 UTC

:arrow_up: language-php@0.41.0

jr-node-version-debugging 2017-07-16 12:19:39 UTC
Try building with npm 5.3

Author: Jason Rudolph
Author Date: 2017-07-16 12:19:39 UTC

Try building with npm 5.3

sm-dock-button-rendering 2017-07-12 03:26:48 UTC
Fix dock button rendering issue

Author: simurai
Author Date: 2017-07-12 03:26:48 UTC

Fix dock button rendering issue

as-show-pending-ime-input 2017-07-03 09:18:57 UTC
Show pending IME input instead of just the last typed character

Author: Antonio Scandurra
Author Date: 2017-07-03 09:18:57 UTC

Show pending IME input instead of just the last typed character

ku-fix-destroy-item-bug 2017-07-01 03:33:41 UTC
Merge branch 'master' into ku-fix-destroy-item-bug

Author: Katrina Uychaco
Author Date: 2017-07-01 03:33:41 UTC

Merge branch 'master' into ku-fix-destroy-item-bug

fb-mdt-resolve-to-resource-path 2017-06-28 23:26:27 UTC
:bug: Don't prefix resource path if package path is already absolute

Author: Matthew Dapena-Tretter
Author Date: 2017-06-20 01:09:46 UTC

:bug: Don't prefix resource path if package path is already absolute

1.18-releases 2017-06-15 22:07:50 UTC
:arrow_up: line-ending-selector

Author: Max Brunsfeld
Author Date: 2017-06-15 22:05:09 UTC

:arrow_up: line-ending-selector

fb-mdt-docks-disply-none 2017-06-15 01:02:26 UTC
Set `display: none` on hidden docks

Author: Matthew Dapena-Tretter
Author Date: 2017-06-14 01:19:56 UTC

Set `display: none` on hidden docks

This way IntersectionObserver can be used to tell when they're truly
visible.

sm-native-tabs 2017-06-03 06:54:53 UTC
Enable native tabs on macOS

Author: simurai
Author Date: 2017-06-03 06:54:53 UTC

Enable native tabs on macOS

wl-lint-specs 2017-05-31 04:51:38 UTC
:shirt:

Author: Wliu
Author Date: 2017-05-31 04:51:38 UTC

:shirt:

1.17-releases 2017-05-25 18:32:43 UTC
1.17.2

Author: Ian Olsen
Author Date: 2017-05-25 18:32:43 UTC

1.17.2

wl-remove-autoupdate-error-in-specs 2017-05-15 23:21:29 UTC
:art:

Author: Wliu
Author Date: 2017-05-15 23:21:29 UTC

:art:

mq-migrate-squirrel-update 2017-05-14 04:45:50 UTC
Pull these functions out into module scope

Author: Machiste Quintana
Author Date: 2017-05-14 04:45:50 UTC

Pull these functions out into module scope

ns-dont-open-dev-tools-in-headless-tests 2017-05-12 16:20:43 UTC
Fix test of opening dev tools on error

Author: Nathan Sobo
Author Date: 2017-05-12 16:20:36 UTC

Fix test of opening dev tools on error

as-ns-longest-screen-row 2017-05-05 16:33:33 UTC
WIP

Author: Antonio Scandurra
Author Date: 2017-05-05 16:33:33 UTC

WIP

ns-as-text-decorations-take-2 2017-05-04 15:31:27 UTC
Make first-mate scope ids always larger than built-in ones

Author: Antonio Scandurra
Author Date: 2017-05-04 15:31:27 UTC

Make first-mate scope ids always larger than built-in ones

fb-bf-exports-for-atom-in-orbit 2017-05-04 06:36:47 UTC
Minor changes to compile-cache.js for atom-in-orbit.

Author: Michael Bolin
Author Date: 2017-05-04 05:55:39 UTC

Minor changes to compile-cache.js for atom-in-orbit.

Currently, atom-in-orbit's build script has a step
where it applies these changes locally using a patch file,
which is gross. By upstreaming what atom-in-orbit needs
exported, we can remove this gross hack.

I tested this with the complementary change to atom-in-orbit
and verified that the new build worked properly.

Released under CC0.

fb-hw-binary-c 2017-05-03 23:38:21 UTC
Ensure binary compatibility checks with/without the module cache are consistent

Author: hansonw
Author Date: 2017-05-03 23:38:21 UTC

Ensure binary compatibility checks with/without the module cache are consistent

as-ns-text-decoration-layers 2017-05-02 16:03:34 UTC
Integrate text decorations into TextEditorComponent

Author: Antonio Scandurra
Author Date: 2017-05-02 16:03:34 UTC

Integrate text decorations into TextEditorComponent

Signed-off-by: Nathan Sobo <nathan@github.com>

fb-hw-directoryreplace 2017-04-28 19:10:25 UTC
Allow custom directory search providers to also override replace

Author: hansonw
Author Date: 2017-02-05 09:08:17 UTC

Allow custom directory search providers to also override replace

This change allows providers of `atom.directory-searcher` to provide a
custom `replace` handler to override the default `scandal` replace, and
moves the existing replacement logic into the default `DirectorySearch`
provider.

For example, in Nuclide, we provide a custom directory searcher to
enable searching remote files. However, remote file replacement is still
broken.

As a temporary workaround we ended up monkey-patching
`atom.workspace.replace` (cc @zertosh):
https://github.com/facebook/nuclide/blob/master/pkg/nuclide-remote-projects/lib/patchAtomWorkspaceReplace.js#L41

This will allow us to remove the hack and just modify our custom
directory searcher instead.

Released under CC0.

1.16-releases 2017-04-11 18:06:14 UTC
Fix less spec

Author: Nathan Sobo
Author Date: 2017-04-11 18:05:36 UTC

Fix less spec

On AppVeyor, the patch version of less is emitting lower-case CSS color
names. This makes our test compatible with both capitalizations.

Signed-off-by: Max Brunsfeld <maxbrunsfeld@gmail.com>

mb-ns-refactor-workspace-open 2017-03-24 22:24:17 UTC
Refactor Workspace.open

Author: Max Brunsfeld
Author Date: 2017-03-24 22:24:17 UTC

Refactor Workspace.open

Signed-off-by: Nathan Sobo <nathan@github.com>

wl-open-empty-editor-as-pending 2017-03-24 04:12:20 UTC
Fix another spec

Author: Wliu
Author Date: 2017-03-24 04:12:20 UTC

Fix another spec

wl-update-language-git 2017-03-21 00:17:46 UTC
:art:

Author: Wliu
Author Date: 2017-03-21 00:17:46 UTC

:art:

ns-electron-1.6.x 2017-03-17 02:23:10 UTC
Upgrade to Electron 1.6.3

Author: Nathan Sobo
Author Date: 2017-03-17 02:23:10 UTC

Upgrade to Electron 1.6.3

ns-upgrade-text-buffer 2017-03-16 02:21:53 UTC
:arrow_up: text-buffer (prerelease)

Author: Nathan Sobo
Author Date: 2017-03-16 02:21:53 UTC

:arrow_up: text-buffer (prerelease)

ks-log-typo 2017-03-14 19:17:50 UTC
Dowloading -> Downloading

Author: Kevin Sawicki
Author Date: 2017-03-14 19:17:50 UTC

Dowloading -> Downloading

1.15-releases 2017-03-08 20:18:47 UTC
1.15.0

Author: Hubot
Author Date: 2017-03-08 20:18:47 UTC

1.15.0

1.14-releases 2017-02-27 17:32:59 UTC
Merge pull request #13887 from atom/as-ignore-key-ref-on-text-editor

Author: Antonio Scandurra
Author Date: 2017-02-27 17:29:26 UTC

Merge pull request #13887 from atom/as-ignore-key-ref-on-text-editor

Ignore `ref` and `key` props in `TextEditor.prototype.update`

ns-mb-remove-dummy-scrollbars 2017-02-18 00:47:05 UTC
WIP2

Author: Max Brunsfeld
Author Date: 2017-02-18 00:47:05 UTC

WIP2

wl-notification-stack-detail 2017-02-15 02:26:27 UTC
:memo: Clarify that stack only has an effect if detail is present as well

Author: Wliu
Author Date: 2017-02-15 02:26:27 UTC

:memo: Clarify that stack only has an effect if detail is present as well

mb-ns-fix-duplicate-display-markers 2017-02-10 23:43:08 UTC
:arrow_up: text-buffer (prerelease)

Author: Max Brunsfeld
Author Date: 2017-02-10 23:43:08 UTC

:arrow_up: text-buffer (prerelease)

1.13-releases 2017-02-02 13:57:07 UTC
:arrow_up: markdown-preview

Author: Antonio Scandurra
Author Date: 2017-02-02 13:55:27 UTC

:arrow_up: markdown-preview

1.12-releases 2017-01-04 23:19:46 UTC
1.12.9

Author: Ian Olsen
Author Date: 2017-01-04 23:19:46 UTC

1.12.9

mb-ns-integrate-new-display-layer 2016-12-21 18:40:47 UTC
:arrow_up: bracket-matcher

Author: Damien Guard
Author Date: 2016-12-21 18:40:47 UTC

:arrow_up: bracket-matcher

fb-vjeux-flush-context-menu-2 2016-12-06 16:45:34 UTC
Flush DOM before displaying context menu

Author: Christopher Chedeau
Author Date: 2016-12-06 16:45:34 UTC

Flush DOM before displaying context menu

Released under CC0

overlay-scroll 2016-11-28 19:45:05 UTC
Rename `stable: true` to `avoidOverlay: false` and fix tests

Author: Nathan Sobo
Author Date: 2016-11-28 19:45:05 UTC

Rename `stable: true` to `avoidOverlay: false` and fix tests

As part of the test fixes, I’m honoring the `autoscroll: false` option
in `insertText` and `insertNewline` to avoid inadvertently scrolling the
editor during tests when the editor is modified.

ns-fix-ime 2016-11-15 20:14:21 UTC
Forward compositionstart/end events to KeymapManager to avoid IME issues

Author: Nathan Sobo
Author Date: 2016-11-15 19:25:15 UTC

Forward compositionstart/end events to KeymapManager to avoid IME issues

as-ns-browserify 2016-11-04 15:41:07 UTC
WIP

Author: Antonio Scandurra
Author Date: 2016-11-04 15:41:07 UTC

WIP

1.11-releases 2016-11-01 16:27:44 UTC
:arrow_up: apm

Author: Damien Guard
Author Date: 2016-11-01 16:27:44 UTC

:arrow_up: apm

mq-convert-even-more-to-js 2016-10-31 04:59:27 UTC
Merge branch 'master' into mq-convert-even-more-to-js

Author: Machiste Quintana
Author Date: 2016-10-31 04:59:27 UTC

Merge branch 'master' into mq-convert-even-more-to-js

as-ns-move-editor-out 2016-10-14 16:55:26 UTC
WIP

Author: Antonio Scandurra
Author Date: 2016-10-14 16:55:26 UTC

WIP

1.14 2016-10-05 19:49:02 UTC
Merge pull request #12883 from atom/mb-fix-maintain-grammar-return-value

Author: Max Brunsfeld
Author Date: 2016-10-05 19:49:02 UTC

Merge pull request #12883 from atom/mb-fix-maintain-grammar-return-value

Always return Disposable from maintain{Config,Grammar}

ns-improve-test-script-assertions 2016-09-16 20:37:45 UTC
Improve error messages in script/test when no application found

Author: Nathan Sobo
Author Date: 2016-09-16 20:37:45 UTC

Improve error messages in script/test when no application found

ns-fix-add-pane-event 2016-09-12 17:00:26 UTC
Ensure pane is added to container before invoking onDidAddPane listeners

Author: Nathan Sobo
Author Date: 2016-09-12 17:00:26 UTC

Ensure pane is added to container before invoking onDidAddPane listeners

Fixes #12654

ns-upgrade-scandal 2016-09-08 20:44:43 UTC
:arrow_up: scandal

Author: Nathan Sobo
Author Date: 2016-09-08 20:44:43 UTC

:arrow_up: scandal

cn-fix-invalid-delayed-package-loading 2016-08-25 10:16:09 UTC
:bug: Reset the package's local storage setting if loading cannot be deferred

Author: abe33
Author Date: 2016-08-25 10:16:09 UTC

:bug: Reset the package's local storage setting if loading cannot be deferred

tj-upgrade-deprecated-packages 2016-08-23 19:00:27 UTC
Don't expect color variables to be lowercased in ThemeManager spec

Author: Max Brunsfeld
Author Date: 2016-08-23 19:00:27 UTC

Don't expect color variables to be lowercased in ThemeManager spec

1.9-releases 2016-08-17 23:27:06 UTC
:arrow_up: markdown-preview and styleguide

Author: Max Brunsfeld
Author Date: 2016-08-17 23:26:57 UTC

:arrow_up: markdown-preview and styleguide

in order to lock down the version of highlights.

Signed-off-by: Nathan Sobo <nathan@github.com>

ns-main-process-tests-on-circle 2016-08-13 18:57:36 UTC
Try this

Author: Nathan Sobo
Author Date: 2016-08-13 18:57:36 UTC

Try this

ns-as-unique-atom-homes-for-startup-spec 2016-08-11 16:50:55 UTC
Give each integration test its own ATOM_HOME

Author: Nathan Sobo
Author Date: 2016-08-11 16:50:55 UTC

Give each integration test its own ATOM_HOME

We symlink the compile cache from the original ATOM_HOME to ensure
window startup is still performant, but avoid anything else leaking
across tests.

mb-kill-chromedriver-in-build 2016-08-09 00:58:13 UTC
WIP - kill chromedriver before running tests

Author: Max Brunsfeld
Author Date: 2016-08-09 00:58:13 UTC

WIP - kill chromedriver before running tests

1.8-releases 2016-07-14 21:04:02 UTC
Ensure Cygwin + Msys compatibility on Windows

Author: Damien Guard
Author Date: 2016-05-24 18:14:24 UTC

Ensure Cygwin + Msys compatibility on Windows

mkt-url-based-command-dispatch 2016-05-26 05:36:35 UTC
:fire: Unused CommandRegistry::dispatchFromUrl and friends

Author: Michelle Tilley
Author Date: 2016-05-23 22:05:24 UTC

:fire: Unused CommandRegistry::dispatchFromUrl and friends

1.7-releases 2016-05-24 20:48:02 UTC
Prepare for 1.7.5

Author: Michelle Tilley
Author Date: 2016-05-24 20:48:02 UTC

Prepare for 1.7.5

as-use-marker-layer-update-events 2016-05-05 11:55:02 UTC
Create selections just-in-time before querying `TextEditor`

Author: Antonio Scandurra
Author Date: 2016-05-04 14:10:27 UTC

Create selections just-in-time before querying `TextEditor`

wl-async-dialog 2016-05-03 02:42:56 UTC
Yup, that's not how callbacks work

Author: Wliu
Author Date: 2016-05-03 02:42:56 UTC

Yup, that's not how callbacks work

1.6-releases 2016-04-12 04:01:36 UTC
:arrow_up: find-and-replace

Author: Katrina Uychaco
Author Date: 2016-04-12 04:01:36 UTC

:arrow_up: find-and-replace

dr-portable-mode-mac 2016-04-04 19:24:10 UTC
Merge branch 'master' into dr-portable-mode-mac

Author: Amy Truong
Author Date: 2016-04-04 19:24:10 UTC

Merge branch 'master' into dr-portable-mode-mac

mq-zoom-scroll 2016-04-03 20:01:04 UTC
Merge branch 'master' into mq-zoom-scroll

Author: Machiste Quintana
Author Date: 2016-04-03 20:01:04 UTC

Merge branch 'master' into mq-zoom-scroll

ns-appveyor-experimentation 2016-03-30 01:24:08 UTC
Only run the task I'm testing

Author: Nathan Sobo
Author Date: 2016-03-30 01:24:08 UTC

Only run the task I'm testing

ns-test-apm-upgrade 2016-03-21 22:39:19 UTC
:arrow_up: apm and update its install target to match apm’s copy of node

Author: Nathan Sobo
Author Date: 2016-03-21 21:32:34 UTC

:arrow_up: apm and update its install target to match apm’s copy of node

scroll-away-from-bottom-panels 2016-03-18 21:25:19 UTC
Only ensure the cursor is visible if we're not using an explicit height.

Author: joshaber
Author Date: 2016-03-18 21:25:19 UTC

Only ensure the cursor is visible if we're not using an explicit height.

mkt-fix-1-7-beta-0-release 2016-03-17 20:06:53 UTC
:arrow_up: about

Author: Michelle Tilley
Author Date: 2016-03-17 20:06:53 UTC

:arrow_up: about

ld-change-range-event 2016-03-12 05:26:27 UTC
Add Selection.onDidChangeRange event object to emitter

Author: Lee Dohm
Author Date: 2016-03-12 05:26:27 UTC

Add Selection.onDidChangeRange event object to emitter

ns-skip-deleted-project-paths 2016-03-02 23:37:09 UTC
Distinguish initialPaths from pathsToOpen

Author: Nathan Sobo
Author Date: 2016-03-02 23:37:09 UTC

Distinguish initialPaths from pathsToOpen

The initialPaths that are provided when we restore application state
should not be conflated with pathsToOpen. We want to deserialize the
window’s state based on this set of initialPaths, but we don’t
want to open empty buffers for any of the initialPaths that no longer
exist.

Credit to @jrkoenig for this idea. This is a slightly modified version
of the change he made in #10628.

1.5-releases 2016-03-01 19:38:50 UTC
Merge pull request #10967 from b6pzeusbc54tvhw5jgpyw8pwz2x6gs/change-getLineC...

Author: Max Brunsfeld
Author Date: 2016-02-25 17:10:53 UTC

Merge pull request #10967 from b6pzeusbc54tvhw5jgpyw8pwz2x6gs/change-getLineCount-to-getScreenLineCount

Fix a inconsistent getLineCount() use

fold-comment-with-empty-line 2016-03-01 01:09:36 UTC
Merge PR #4898 Fold comment with empty line inside of it

Author: Nathan Sobo
Author Date: 2016-03-01 01:09:36 UTC

Merge PR #4898 Fold comment with empty line inside of it

expose-updates 2016-02-24 00:39:24 UTC
Use `onDidCompleteDownloadingUpdate` in `listenForUpdates`

Author: Katrina Uychaco
Author Date: 2016-02-19 23:35:42 UTC

Use `onDidCompleteDownloadingUpdate` in `listenForUpdates`

This gets a bit confusing… It was formerly
`@applicationDelegate.onUpdateAvailable`, but `::onUpdateAvailable`
listens for the `did-begin-downloading-update` event and
`::onDidCompleteDownloadingUpdate` listens for the `update-available`
event. Note that ‘available’ here means successfully downloaded and
ready to be used and NOT available to be downloaded.

mb-optimize-package-load 2016-02-19 00:58:32 UTC
Tokenize in idle callbacks

Author: Max Brunsfeld
Author Date: 2016-02-19 00:58:32 UTC

Tokenize in idle callbacks

ld-set-active-item 2016-02-02 22:28:45 UTC
Add Workspace.setActivePaneItem API

Author: Lee Dohm
Author Date: 2016-02-02 22:28:22 UTC

Add Workspace.setActivePaneItem API

ku-buffer-pool 2016-02-02 07:41:49 UTC
Create BufferPool class and instantiate in Project

Author: Katrina Uychaco
Author Date: 2016-02-02 07:39:22 UTC

Create BufferPool class and instantiate in Project

ku-fix-cwd 2016-01-08 21:35:22 UTC
Don't depend on current working directory in spec

Author: Katrina Uychaco
Author Date: 2016-01-08 21:35:22 UTC

Don't depend on current working directory in spec

dh-dont-hide-activation-errors-in-test 2015-12-16 20:23:40 UTC
Ha! I was just writing some ruby a minute ago clearly

Author: Daniel Hengeveld
Author Date: 2015-12-16 20:23:40 UTC

Ha! I was just writing some ruby a minute ago clearly

dr-wait-linux 2015-11-25 14:24:28 UTC
:penguin: Make --wait work on Linux

Author: Dave Rael
Author Date: 2015-11-25 14:24:28 UTC

:penguin: Make --wait work on Linux

including using Atom as the git commit editor

mb-fix-windows-build 2015-10-29 17:46:07 UTC
Include log output in cibuild

Author: Max Brunsfeld
Author Date: 2015-10-29 16:37:03 UTC

Include log output in cibuild

mb-publish-artifacts-from-appveyor 2015-10-27 00:24:16 UTC
Build All The Things!

Author: Joe Fitzgerald
Author Date: 2015-10-27 00:24:16 UTC

Build All The Things!

mb-side-by-side-windows-installer 2015-10-23 20:00:48 UTC
Remove space from uploaded installer asset name

Author: Max Brunsfeld
Author Date: 2015-10-23 20:00:48 UTC

Remove space from uploaded installer asset name

Signed-off-by: Nathan Sobo <nathan@github.com>

bf-test-runner-fixes 2015-10-17 19:39:20 UTC
Assign default values for applicationDelegate, document, window to AtomEnviro...

Author: Michael Bolin
Author Date: 2015-10-17 19:39:20 UTC

Assign default values for applicationDelegate, document, window to AtomEnvironment.

I tested this using the new custom testrunner feature introduced in
https://github.com/atom/atom/pull/8968. My testrunner function was defined as follows:

```js
'use babel';

module.exports = function({testPaths, buildAtomEnvironment, logFile, headless, legacyTestRunner}) {
  global.atom = buildAtomEnvironment();
};
```

Without this change, `buildAtomEnvironment()` threw a bunch of exceptions.

gjt-local-apm 2015-09-30 04:55:57 UTC
Merge origin/master

Author: Garen Torikian
Author Date: 2015-09-30 04:55:57 UTC

Merge origin/master

iz-close-window-with-last-tab 2015-09-28 14:03:32 UTC
Add config option to close window when closing tabs

Author: Ivan Zuzak
Author Date: 2015-09-27 09:37:32 UTC

Add config option to close window when closing tabs

iz-fix-getCurrentWordBufferRange 2015-09-23 12:06:41 UTC
Add specs to demonstrate problem with Cursor.getCurrentWordBufferRange

Author: Ivan Zuzak
Author Date: 2015-09-20 08:47:02 UTC

Add specs to demonstrate problem with Cursor.getCurrentWordBufferRange

jl-local-apm 2015-09-11 18:44:01 UTC
Seems not to actually be in master

Author: Jessica Lord
Author Date: 2015-09-11 18:44:01 UTC

Seems not to actually be in master

move-lines-up-and-down-with-multiple-selections 2015-08-12 00:06:24 UTC
Handle multiple selections on the same line

Author: Nathan Sobo
Author Date: 2015-08-12 00:06:24 UTC

Handle multiple selections on the same line

1100 of 105 results
This repository contains Public information 
Everyone can see this information.

Subscribers