Cheng Zhao
|
51368952a2
|
Remove deprecated API usages
|
2015-12-08 12:58:39 +08:00 |
|
Cheng Zhao
|
04f7ceab73
|
Merge branch 'master' into desktop-capture-api
|
2015-12-08 12:43:44 +08:00 |
|
Cheng Zhao
|
0f2f9b5543
|
No need to use CommandDispatcher
|
2015-12-08 11:20:07 +08:00 |
|
Cheng Zhao
|
e8b5a6dedf
|
Merge pull request #3718 from atom/chrome47-linux
Port Chrome47 on Linux
|
2015-12-08 10:14:27 +08:00 |
|
Paul Betts
|
af28900189
|
Fix up Chrome47 changes
|
2015-12-07 13:27:05 -08:00 |
|
Kevin Sawicki
|
68d937ed47
|
🎨
|
2015-12-07 11:20:15 -08:00 |
|
Kevin Sawicki
|
96ef09742c
|
Directly assign submenu when constructor is Menu
|
2015-12-07 11:16:36 -08:00 |
|
Paul Betts
|
3931ebb7ef
|
Fix up Windows build errors
|
2015-12-07 10:02:06 -08:00 |
|
Kevin Sawicki
|
d5c740957f
|
🎨
|
2015-12-07 09:29:03 -08:00 |
|
Kevin Sawicki
|
26ac86c95c
|
Convert submenu when non-Menu is passed into MenuItem ctor
|
2015-12-07 09:28:48 -08:00 |
|
Cheng Zhao
|
d0be6c7411
|
Fix cppling warning
|
2015-12-07 22:44:35 +08:00 |
|
Cheng Zhao
|
73e7773d84
|
Update to API changes of Chrome 47
|
2015-12-07 19:56:23 +08:00 |
|
billyct
|
5f092a6c65
|
support an api with SetIgnoreMouseEvents, and worked fine with osx
|
2015-12-06 10:14:54 +08:00 |
|
Cheng Zhao
|
e1d7ef7e24
|
Bump v0.35.4
|
2015-12-04 19:23:48 +08:00 |
|
Cheng Zhao
|
c8e2be7b28
|
Bump v0.35.3
|
2015-12-04 16:43:23 +08:00 |
|
Cheng Zhao
|
5e5ae81c53
|
'key of' is better than Object.keys
|
2015-12-04 11:40:35 +08:00 |
|
Cheng Zhao
|
973ae06f21
|
Destroy the native window in next tick
It fixes a possible crash when native code is iterating all windows
while the JavaScript code decides to destroy a window.
|
2015-12-04 11:35:04 +08:00 |
|
Cheng Zhao
|
2c6d232254
|
Don't add too much listeners in BrowserWindowProxy
|
2015-12-04 11:12:36 +08:00 |
|
Cheng Zhao
|
504d3d3088
|
Merge pull request #3670 from mixmaxhq/jeff/fix_window_open
Fix `window.open` not respecting the features string
|
2015-12-04 10:55:51 +08:00 |
|
Charlie Hess
|
f2797d2eab
|
Merge commit '58567834c7cb9c290ef48c9e8f54ae37246ef665' into web-contents-download-url
Conflicts:
atom/browser/api/atom_api_web_contents.cc
|
2015-12-03 10:31:51 -08:00 |
|
Cheng Zhao
|
48a11bd237
|
Weak map only needs to be deleted for once
|
2015-12-03 17:10:14 +08:00 |
|
Cheng Zhao
|
eb8426269f
|
Remove itself from the cleanup list when it is destroyed
|
2015-12-03 17:04:40 +08:00 |
|
Cheng Zhao
|
117b7462de
|
window.id is no longer available when window is closed
|
2015-12-03 16:17:10 +08:00 |
|
Cheng Zhao
|
a15f9fab5b
|
Use BuildPrototype to build prototype
This saves the step of manually keeping the global template object,
which is easy to forget then leak.
|
2015-12-03 16:04:46 +08:00 |
|
Cheng Zhao
|
6795bd1d96
|
Do not manually manage native resources
We should rely on the destructor to cleanup everything, instead of
putting them in the Destroy method.
|
2015-12-03 15:38:43 +08:00 |
|
Charlie Hess
|
c311c6cf1b
|
Add a DownloadURL method on WebContents.
|
2015-12-02 13:49:30 -08:00 |
|
Jeff Wear
|
225fe72d03
|
Ensure that window.open does not override the child options
Fixes https://github.com/atom/electron/issues/3652.
|
2015-12-02 12:00:51 -08:00 |
|
Cheng Zhao
|
615ce45849
|
win: Implement menu parameter
|
2015-12-02 19:58:10 +08:00 |
|
Cheng Zhao
|
3cdd0f35c7
|
mac: Implement menu parameter
|
2015-12-02 19:05:22 +08:00 |
|
Cheng Zhao
|
2fba05b5e7
|
Add menu parameter for Tray.popUpContextMenu
|
2015-12-02 18:43:11 +08:00 |
|
Cheng Zhao
|
202475f5a9
|
Deprecating a property with method of same name causes trouble
Close #3511.
|
2015-12-02 17:29:58 +08:00 |
|
Cheng Zhao
|
e5974e44ed
|
Deprecate the page-title-set event
We have two names for the same event, page-title-updated wins.
|
2015-12-01 18:50:56 +08:00 |
|
Cheng Zhao
|
c95117fb22
|
Delay the page-title-set event to next tick
|
2015-12-01 18:34:58 +08:00 |
|
Cheng Zhao
|
83ee78451a
|
Emit event when title becomes empty
|
2015-12-01 17:53:13 +08:00 |
|
Cheng Zhao
|
8d20dda6d7
|
No need to override TitleWasSet in NativeWindow
|
2015-12-01 17:51:09 +08:00 |
|
Cheng Zhao
|
1b3eb1cc5d
|
Delay the did-fail-provisional-load event to next tick
Chrome is doing some stuff after the DidFailProvisionalLoad event, if we
call LoadURL at this time crash would happen.
|
2015-12-01 17:00:42 +08:00 |
|
Cheng Zhao
|
0f17a0163d
|
Put common constants in atom_constants
|
2015-12-01 16:21:15 +08:00 |
|
Paul Betts
|
7fd1db192b
|
Lint harder
|
2015-11-30 18:12:00 -08:00 |
|
Paul Betts
|
549da7fd91
|
Linting
|
2015-11-30 11:10:18 -08:00 |
|
Paul Betts
|
7cce3987eb
|
Add CORS header to file jobs
|
2015-11-30 11:08:45 -08:00 |
|
Paul Betts
|
65cb1488b0
|
Fix CORS header code to be cleaner
|
2015-11-30 11:08:44 -08:00 |
|
Paul Betts
|
7622bb40a9
|
Enable all origins via CORS header for custom schemes
This PR disables CORS for custom schemes, which allows you to serve Font
resources from custom schemes after using registerCustomSchemeAsSecure
|
2015-11-30 11:08:43 -08:00 |
|
Cheng Zhao
|
44e24ebf7a
|
Delete BridgeTaskRunner when main message loop is ready
|
2015-11-30 22:29:01 +08:00 |
|
Luke Westby
|
df9ecefe01
|
fix typo in "rotation" string
|
2015-11-29 12:22:53 -06:00 |
|
Cheng Zhao
|
62add3abcc
|
Bump v0.35.2
|
2015-11-27 22:23:19 +08:00 |
|
Cheng Zhao
|
932cd92bf6
|
Fix wrong deprecation wrappers of BrowserWindow
|
2015-11-27 10:30:51 +08:00 |
|
Cheng Zhao
|
b0d4aa211d
|
Fix compatibility with activate-with-no-open-windows event
|
2015-11-26 13:57:48 +08:00 |
|
Cheng Zhao
|
6c1878d15b
|
mac: Clears the delegate when window is going to be closed
Since EL Capitan it is possible that the methods of delegate would get
called after the window has been closed.
Refs atom/atom#9584.
|
2015-11-26 13:56:56 +08:00 |
|
Cheng Zhao
|
8ce19d8059
|
Merge pull request #3586 from atom/ipc-fasterer
Ensure calling webview.send will not block the renderer
|
2015-11-26 13:15:08 +08:00 |
|
Cheng Zhao
|
9c62be8fc9
|
Improve the deprecation notice for ipc module
Close #3577.
|
2015-11-26 11:06:56 +08:00 |
|