Wliu
dfe27ff989
More deprecations
2015-11-19 20:49:05 -05:00
Wliu
577b85e76c
Merge remote-tracking branch 'refs/remotes/origin/master' into wl-electron-35
2015-11-19 20:20:24 -05:00
Wliu
9a850f9cb2
This is ridiculous
2015-11-19 20:11:26 -05:00
Wliu
c85cd80544
Fix missing parentheses
2015-11-19 19:49:29 -05:00
Wliu
50a42af9fd
...try this?
2015-11-19 18:20:51 -05:00
Wliu
f6328fb511
One more ipc fix
2015-11-19 16:37:11 -05:00
Wliu
cad7406085
⬆️ language-sass@0.44.0
2015-11-19 16:07:31 -05:00
Wliu
878ad232dc
⬆️ language-javascript@0.102.0
2015-11-19 16:06:57 -05:00
Wliu
a285d34c89
⬆️ language-coffee-script@0.45.0
2015-11-19 16:06:22 -05:00
Max Brunsfeld
43b2c46077
Merge branch 'beta'
2015-11-19 11:58:40 -08:00
Max Brunsfeld
ef4631b5b6
Merge remote-tracking branch 'origin/stable' into beta
...
Conflicts:
package.json
v1.3.0-beta5
2015-11-19 11:10:55 -08:00
Nathan Sobo
23102198ce
Don’t change key name in serialized application state
...
We changed it internally for clarity, but this is breaking compatibility
with restoring state when upgrading from previous versions.
Fixes #9690
2015-11-19 11:10:00 -08:00
Max Brunsfeld
57503e4294
Prepare 1.3.0-beta5
2015-11-19 11:09:37 -08:00
Daniel Hengeveld
ced8dbb9c3
only cache node_modules in case it's leading to these other build failures
2015-11-19 17:43:48 +01:00
Nathan Sobo
a126374a7b
Coerce boolean options to booleans
...
Pairing with @as-cii
2015-11-19 08:14:24 -08:00
Daniel Hengeveld
9788873058
Merge pull request #9654 from atom/dh-only-remove-node-modules-if-changed
...
Only remove node_modules on ci if changed
2015-11-19 16:39:30 +01:00
Daniel Hengeveld
2d1c35805e
:arrow_up:legal-eagle@0.13.0
...
- adds Public Domain as a permissive license type.
2015-11-19 16:32:12 +01:00
Nathan Sobo
fb5b1ba7f3
1.2.3
v1.2.3
2015-11-19 07:13:37 -08:00
abe33
69a0acd554
🐛 Fix typo in project deserializer method
...
Addresses #9598
2015-11-19 07:13:01 -08:00
Nathan Sobo
e572763cf7
Remove unnecessary fat arrow
2015-11-18 22:21:27 -08:00
Nathan Sobo
b04c26ba30
Discard highlights that end above the visible row range
...
Fixes #9628
2015-11-18 21:32:05 -08:00
Wliu
5fca7b6582
More ipc-renderer fixes
2015-11-18 21:20:45 -05:00
Wliu
fec1507ff4
Require ipc-renderer where it belongs
2015-11-18 21:10:40 -05:00
Max Brunsfeld
bcbb8c05a9
Merge pull request #9684 from atom/mb-remove-public-docs-for-directory-search
...
Remove public docs for DirectorySearch and DefaultDirectorySearcher
2015-11-18 16:04:24 -08:00
Wliu
d2a86e2466
Add 'home' argument to app.getPath()
2015-11-18 18:46:38 -05:00
Wliu
0945383d78
Merge remote-tracking branch 'refs/remotes/origin/master' into wl-electron-35
2015-11-18 16:11:49 -05:00
Wliu
17c5198299
⬆️ language-xml@0.34.1
2015-11-18 16:07:41 -05:00
Max Brunsfeld
799a792f7f
Remove public docs for DirectorySearch and DefaultDirectorySearcher
2015-11-18 13:05:27 -08:00
Wliu
c81913f917
⬆️ notifications@0.62.0
2015-11-18 15:49:36 -05:00
Nathan Sobo
6bc35f96df
Merge branch 'beta'
2015-11-18 11:08:37 -08:00
Nathan Sobo
d204e53ba2
Merge branch 'stable' into beta
v1.3.0-beta4
2015-11-18 11:07:48 -08:00
Nathan Sobo
835acc298c
Merge pull request #9672 from atom/as-ns-fix-opening-from-finder
...
Fix opening multiple files from the finder in the same window
2015-11-18 11:06:02 -08:00
Nathan Sobo
7a5e34e1d2
Merge pull request #9681 from atom/mb-fix-dock-icon-click
...
Avoid using deprecated 'activate-with-no-open-windows' event
v1.2.2
2015-11-18 10:58:58 -08:00
Max Brunsfeld
75a52968d0
Avoid using deprecated 'activate-with-no-open-windows' event
...
The current shim for that event has a missing event argument
2015-11-18 10:55:40 -08:00
Nathan Sobo
c09c04669c
Coerce boolean options to booleans
...
Pairing with @as-cii
2015-11-18 10:41:07 -08:00
Thomas Johansen
1ee08be508
Merge pull request #9268 from atom/tj-electron-logging
...
Use ELECTRON_ENABLE_LOGGING instead of console.log shims
2015-11-18 18:52:00 +01:00
Thomas Johansen
ae09d687a0
Re-enable console.log via ELECTRON_ENABLE_LOGGING
2015-11-18 17:46:20 +01:00
Thomas Johansen
a8147c09a2
🔥 Remove console.log shims
2015-11-18 17:46:20 +01:00
Daniel Hengeveld
962b814bb6
add node version to fingerprint
2015-11-18 16:13:58 +01:00
Nathan Sobo
d0cb8e2c55
Store project directory paths as state on AtomWindow in browser process
...
Fixes #9574
Previously, we were storing the project directory paths as the
`initialPaths` key in load settings, which were accessed in the browser
process by reading the URL hash. However, this URL hash was not always
available, subjecting us to timing issues when opening multiple files
in the same folder in rapid succession.
We now store the project directory paths directly on AtomWindow
instances on creation, then RPC changes from the render process to the
browser process with a custom code path.
Shout out to :airplane::finnadie:’d @as-cii on this for pairing with me.
2015-11-17 21:00:13 -08:00
Wliu
6c811433cf
Fix executeJavaScriptInDevTools
...
The joy of Atom and Electron having identically-named functions
2015-11-17 23:11:55 -05:00
Wliu
b38e4bc928
⬆️ language-ruby@0.64.0
2015-11-17 22:55:32 -05:00
Wliu
6cd480b37e
Fix Electron deprecations
2015-11-17 21:16:09 -05:00
Wliu
91f4ab1f1c
⬆️ whitespace@0.32.1
2015-11-17 20:34:51 -05:00
Wliu
b9cd7e6890
⬆️ language-javascript@0.101.1
2015-11-17 20:21:53 -05:00
Wliu
082ebdb584
⬆️ language-ruby@0.63.0
2015-11-17 20:18:02 -05:00
Wliu
12935b4c13
⬆️ language-python@0.42.1
2015-11-17 20:15:29 -05:00
Nathan Sobo
6b877df0d9
1.3.0-beta4
2015-11-17 16:58:48 -08:00
Nathan Sobo
9537007a2a
Merge branch 'beta'
2015-11-17 16:57:33 -08:00
Nathan Sobo
e475065b45
Merge branch 'stable' into beta
2015-11-17 16:57:19 -08:00