Wliu
27c66300e4
Merge branch 'master' into wl-build-on-node-7
2017-03-21 23:25:31 -04:00
Antonio Scandurra
934c377af6
Fix tests
2017-03-17 17:04:11 +01:00
Antonio Scandurra
d94c8811f3
Replace CommandRegistry.addBundled with a boolean param in .add
2017-03-17 16:19:25 +01:00
Antonio Scandurra
2f9a9ed657
Merge branch 'master' into as-snapshot-atom-environment
2017-03-17 15:25:10 +01:00
Antonio Scandurra
bade347e01
Revert "Upgrade to Babel 6 and apply fewer transformations when transpiling babel files"
2017-03-17 12:40:38 +01:00
Antonio Scandurra
81af989f0d
Merge branch 'master' into as-snapshot-atom-environment
2017-03-16 21:08:41 +01:00
Antonio Scandurra
a8b885c4d5
Merge branch 'master' into as-ns-startup-snapshot
2017-03-16 10:52:34 +01:00
Ian Olsen
4ef9a0502f
Merge pull request #11803 from lexicalunit/lexicalunit/replace-selected-text-tweak
...
Following replaceSelectedText(), update the selected text range accordingly.
2017-03-13 14:46:50 -07:00
Antonio Scandurra
0d29004723
Speed up FileSystemBlobStore.load by not storing invalidation keys
...
This was unneeded because we can simply compute the cache key by
concatenating the v8 version and the file's contents.
2017-03-13 19:11:53 +01:00
Antonio Scandurra
ea440148d8
Fix remaining tests
2017-03-12 11:57:16 +01:00
Antonio Scandurra
b1704ee7e6
Fix Workspace specs
2017-03-11 19:20:16 +01:00
Antonio Scandurra
284f2c62e5
Start fixing tests
2017-03-11 19:05:28 +01:00
Dirk Thomas
348553049a
update specs
2017-03-10 10:41:20 -08:00
Antonio Scandurra
e61919cd60
Merge branch 'master' into as-ns-startup-snapshot
2017-03-10 15:04:26 +01:00
Antonio Scandurra
11961b09ac
Merge pull request #13949 from atom/as-minimize-startup-sync-io
...
Minimize synchronous I/O during startup
2017-03-10 15:00:30 +01:00
Antonio Scandurra
7e761d39af
Fall back to local storage when no history can be found
2017-03-10 14:37:37 +01:00
Antonio Scandurra
1248eb0b20
Merge branch 'master' into as-ns-startup-snapshot
2017-03-10 09:32:17 +01:00
Antonio Scandurra
5f9b62c603
💚
2017-03-10 09:31:59 +01:00
Antonio Scandurra
73e8642b96
Merge branch 'master' into as-ns-startup-snapshot
2017-03-10 09:04:30 +01:00
Antonio Scandurra
33f96bf6cb
Fix workspace-spec.js
2017-03-10 09:01:10 +01:00
Antonio Scandurra
9e864fac30
Merge branch 'master' into as-update-fs-plus
2017-03-09 20:33:13 +01:00
Amy Troschinetz
ac7bb27e22
Select the replaced text post replacement.
2017-03-08 20:24:31 -06:00
Nathan Sobo
206bcac1bc
Merge pull request #13955 from atom/fb-mdt-workspace-element-to-js
...
Convert workspace element and spec to JavaScript
2017-03-07 19:49:32 -07:00
Matthew Dapena-Tretter
3017b28ef7
Convert workspace element to JS: Cleanup
2017-03-07 16:31:00 -08:00
Matthew Dapena-Tretter
ca4d55954b
Convert workspace element to JS: Lint
2017-03-07 15:56:57 -08:00
Matthew Dapena-Tretter
ede4a2972a
Convert workspace element to JS: Decaffeinate
2017-03-07 15:49:22 -08:00
Matthew Dapena-Tretter
d6a354d6ba
Convert panel container to JS: Cleanup
2017-03-07 14:52:32 -08:00
Matthew Dapena-Tretter
f56865b6f8
Convert panel container to JS: Lint
2017-03-07 14:30:33 -08:00
Matthew Dapena-Tretter
228b24b68b
Convert panel container to JS: Decaffeinate
2017-03-07 14:20:27 -08:00
Antonio Scandurra
cf9a5b13e3
Replace localStorage with StateStore in HistoryManager
...
Instead of using `localStorage` to store and retrieve the project
history, with this commit we will use `StateStore` so that we can
retrieve state asynchronously without blocking Atom during startup.
2017-03-07 11:02:40 +01:00
Antonio Scandurra
a9f91cc96e
Delete test verifying that GitRepository.open works with file paths
...
With the upgrade of git-utils libgit2 was updated too and the behavior
tested by the deleted spec doesn't seem to be supported anymore.
However, we believe we can delete this test because the only entry point
for creating `GitRepository` instances is `repositoryForDirectorySync`
in `GitRepositoryProvider`, which only allows `Directory` objects to be
supplied as its input arguments.
2017-03-06 16:18:40 +01:00
Antonio Scandurra
e74737d38e
Fix ThemeManager specs
2017-03-06 14:39:04 +01:00
Antonio Scandurra
778db180db
Fix Workspace specs
2017-03-06 13:34:43 +01:00
Antonio Scandurra
ed9a101de2
Fix destroying a PanelContainer containing multiple panels
...
Previously, when calling `destroy` on a `PanelContainer` containing
multiple panels, Atom would throw a `Cannot read property 'destroy' of
undefined` exception. This was due to iterating over the panels while at
the same time destroying them, which caused the iterated array to be
modified during the loop.
With this commit we slice the array before iterating over it so that
destroying a `PanelContainer` doesn't throw exceptions anymore.
2017-03-04 15:39:38 +01:00
Max Brunsfeld
4f261731ae
Merge pull request #13922 from atom/fb-mdt-workspace-to-js
...
Convert workspace to JavaScript
2017-03-03 13:03:36 -08:00
Wliu
5f2dc226b5
Merge pull request #13912 from atom/wl-remove-workaround
...
Remove macOS emoji workaround
2017-03-03 10:51:46 -05:00
Matthew Dapena-Tretter
53ec839ae5
Convert workspace to JavaScript: cleanup
2017-03-02 18:11:22 -08:00
Matthew Dapena-Tretter
7a0d7f8b4c
Convert workspace to JavaScript: lint
2017-03-02 18:01:40 -08:00
Matthew Dapena-Tretter
cb71ce64ae
Convert workspace to JavaScript: decaffeinate
2017-03-02 18:01:40 -08:00
Max Brunsfeld
c1d1bbcb18
Provide a fresh environment when deserializing in specs
2017-03-02 11:54:00 -08:00
Max Brunsfeld
d6981dfcab
Avoid throwing intentional errors in DOMElementPool test
2017-03-02 10:19:48 -08:00
Max Brunsfeld
c26509cfab
Throw an error when assertions fail if built from source
...
Signed-off-by: Nathan Sobo <nathan@github.com >
2017-03-02 10:14:59 -08:00
Antonio Scandurra
8d46de418f
Re-enable native module cache
2017-03-02 09:11:54 +01:00
Wliu
fabc38162b
Remove macOS emoji workaround
...
No longer needed now that we are on Chrome 53
2017-03-01 17:32:31 -05:00
Antonio Scandurra
e275570a4e
Remove blob store and native module cache
2017-02-28 17:20:49 +01:00
Wliu
69d12d917b
Merge branch 'master' into wl-build-on-node-7
2017-02-24 13:11:05 -05:00
Wliu
82faad9f92
Merge pull request #13825 from atom/wl-relativize-specs-more
...
Relativize spec paths more when reporting
2017-02-23 17:44:47 -05:00
Damien Guard
e04c31445d
Merge pull request #13754 from hron/normalize-disk-drive-letter
...
Normalize disk drive letter in path on Windows
2017-02-20 09:54:19 -08:00
Aleksei Gusev
fd9dbb6e87
Normalize disk drive letter in path on Windows
...
Currently atom creates two buffers for the same file if passed
paths use difference case for disk drive letter,
e.g. d:\file.txt and D:\file.txt
2017-02-18 11:32:44 +03:00
Antonio Scandurra
4acd477559
Merge pull request #13818 from atom/ns-as-return-all-decorations
...
Return decorations for markers from *all* marker layers from decorationsForScreenRowRange
2017-02-17 11:15:15 +01:00