Electron Bot
9e866f8315
Bump v9.0.0-nightly.20191210
2019-12-10 07:32:16 -08:00
Cheng Zhao
a6d142a112
fix: window menu should handle keys correctly ( #21434 )
...
* fix: overriding AccessiblePaneView's methods
* chore: add CL link
2019-12-10 16:15:48 +09:00
Cheng Zhao
3cb0ed306b
fix: hiding window menu should work on startup ( #21436 )
...
* fix: menu visibility should not be overwritten on startup
* fix: removing menu for window without global menubar
* test: setMenu tests are not for mac
2019-12-09 11:17:36 -08:00
Jeremy Apthorp
7f6b308bf1
test: move remote specs to main process ( #21387 )
2019-12-09 10:27:30 -08:00
Electron Bot
409ef49d3a
Bump v9.0.0-nightly.20191209
2019-12-09 07:32:27 -08:00
Electron Bot
a5e84d0a2a
Bump v9.0.0-nightly.20191208
2019-12-08 07:32:26 -08:00
Electron Bot
e3f36d3e0b
Bump v9.0.0-nightly.20191207
2019-12-07 07:31:36 -08:00
Jeremy Apthorp
1f3561227d
feat: add tracing info to WebContents IPC methods ( #21404 )
2019-12-06 13:15:23 -08:00
Samuel Attard
5bc8809d64
fix: do not use messages after move ( #21419 )
2019-12-06 12:35:57 -08:00
loc
8a06ef11cf
fix: ensure persistence store still exists when GC runs ( #21402 )
...
Fix a bad access crash that happens when a render frame is deleted (window closed) and garbage collection runs afterward.
2019-12-06 11:15:08 -08:00
Electron Bot
4037b12511
Bump v9.0.0-nightly.20191206
2019-12-06 07:31:51 -08:00
Shelley Vohr
9e189eac71
fix: pass noLink correctly on Windows ( #21386 )
2019-12-05 13:38:57 -08:00
Birunthan Mohanathas
5223d1d774
fix: Fix compositor recycling when creating new BrowserView ( #21372 )
...
In #20829 , we fixed compositor recycling when switching between
BrowserViews, but it turns out that there is one additional case that we
need to handle. When we create a completely new BrowserView instance, it
starts of as visible (even when it hasn't been added to the window),
which means that it will need its own compositor instead of using the
recycled compositor.
To fix this, lets make BrowserViews hidden by default until they're
added to the window. See also #19988 . This is a potentially breaking
change given that the initial value of `document.visibilityState` will
now be `hidden`, but given the experimental status of BrowserViews, I
think this is a fine change to make. The old behavior can be restored
with `webPreferences: { show: true }`.
Notes: Fix compositor recycling when creating new BrowserView
2019-12-05 09:37:42 -08:00
Electron Bot
fff484d4ea
Bump v9.0.0-nightly.20191205
2019-12-05 07:33:07 -08:00
Cheng Zhao
0a741670a9
chore: remove native_mate (Part 14) ( #21365 )
...
* chore: remove uses of mate::Dictionary and mate::Handle
* chore: move CreateConstructor to gin_helper
* chore: remove native_mate
* chore: remove unneeded gin patch
2019-12-05 18:46:34 +09:00
Electron Bot
113b47d871
Bump v9.0.0-nightly.20191204
2019-12-04 07:32:41 -08:00
Milan Burda
01ab72d8c0
chore: remove unused shell/common/crash_reporter/win/crash_service.cc ( #21349 )
2019-12-04 15:09:58 +09:00
Electron Bot
c1845121e0
Bump v9.0.0-nightly.20191203
2019-12-03 07:32:38 -08:00
Jeremy Apthorp
9526c5584e
fix: deprecate setLayoutZoomLevelLimits ( #21296 )
2019-12-02 13:27:03 -08:00
Shelley Vohr
c7cbc2e6b1
fix: backgroundThrottling rwh assignment ( #21037 )
...
* fix: backgroundThrottling rwh assignment
* fix: disable DOM timer throttling
* chore: fix typo
2019-12-02 10:29:03 -08:00
Electron Bot
66035a2448
Bump v9.0.0-nightly.20191202
2019-12-02 07:33:23 -08:00
Electron Bot
469fc0ea36
Bump v9.0.0-nightly.20191201
2019-12-01 07:33:09 -08:00
Milan Burda
03824ef53f
build: fix building with enable_builtin_spellchecker = false ( #21334 )
2019-11-30 14:17:46 -08:00
Electron Bot
74f698d7bc
Bump v9.0.0-nightly.20191130
2019-11-30 07:31:23 -08:00
Electron Bot
ba77489cb6
Bump v9.0.0-nightly.20191129
2019-11-29 07:32:09 -08:00
Electron Bot
2129751966
Bump v9.0.0-nightly.20191128
2019-11-28 07:32:48 -08:00
Electron Bot
06e349d074
Bump v9.0.0-nightly.20191127
2019-11-27 07:32:14 -08:00
Shelley Vohr
5f365858c9
fix: correctly plumb checkboxChecked on win ( #21248 )
...
* fix: correctly plumb checkboxChecked on win
* address final style comment
2019-11-27 16:39:07 +09:00
Jeremy Apthorp
d25256dcf5
refactor: rewrite the net module to simplify state tracking ( #21244 )
2019-11-26 17:01:13 -08:00
Jeremy Apthorp
4149d76890
fix: restore --ignore-connections-limit functionality ( #21286 )
2019-11-26 13:27:33 -08:00
Samuel Attard
149aaeba94
feat: add session.addWordToSpellCheckerDictionary to allow custom words in the dictionary ( #21266 )
...
* feat: add session.addWordToSpellCheckerDictionary to allow custom words in the dictionary
* Update session.md
2019-11-26 13:16:43 -08:00
Electron Bot
8a9c7c484b
Bump v9.0.0-nightly.20191126
2019-11-26 07:33:26 -08:00
OJ Kwon
ca61d2fae7
fix: allow reading body from non-2xx responses in net.request ( #21055 )
...
* fix(urlrequest): allow non-2xx repsponse results
- closes #21046
* test(net): add test cases to verify non-2xx body
* test(session): update spec to match clientrequest behavior
* test(net): update test cases to match clientrequest behavior
* spec: clean up async net spec
2019-11-25 14:34:25 -08:00
Samuel Attard
d84ba30541
fix: reloadIgnoringCache() should ignore the cache ( #21263 )
2019-11-25 11:12:58 -08:00
loc
f26b7931eb
fix: add missing early return ( #21264 )
2019-11-25 11:03:54 -08:00
Electron Bot
27c764c66c
Bump v9.0.0-nightly.20191125
2019-11-25 07:31:36 -08:00
Electron Bot
ab695fb2f7
Bump v9.0.0-nightly.20191124
2019-11-24 07:31:32 -08:00
Electron Bot
78ae5d410e
Bump v9.0.0-nightly.20191123
2019-11-23 07:31:26 -08:00
Shelley Vohr
d20273f95b
chore: improve nativeImage path converter error ( #21243 )
2019-11-22 19:16:43 -08:00
Electron Bot
745363959a
Bump v9.0.0-nightly.20191122
2019-11-22 07:31:58 -08:00
Jeremy Apthorp
033d309874
fix: record cpu_profiler data for main process ( #21187 )
...
* fix: record cpu_profiler data for main process
* kick ci
2019-11-21 18:05:41 -08:00
Electron Bot
1da9959f57
Bump v9.0.0-nightly.20191121
2019-11-21 07:31:25 -08:00
Electron Bot
af3bee742f
Revert "Bump v9.0.0-nightly.20191120"
...
This reverts commit 99cafae1ec
.
2019-11-20 07:37:12 -08:00
Electron Bot
99cafae1ec
Bump v9.0.0-nightly.20191120
2019-11-20 07:31:46 -08:00
Cheng Zhao
50f2d2b5ab
fix: menu should not be garbage-collected when popuping ( #21169 )
...
* fix: retain menu when popuping
* test: menu should not be garbage-collected when popuping
2019-11-20 20:17:39 +09:00
Electron Bot
6ca7eb79bc
Bump v9.0.0-nightly.20191119
2019-11-19 07:32:04 -08:00
Robo
73467f00e3
fix: allow chromium to handle WM_NCCALCSIZE for frameless windows ( #21164 )
2019-11-19 06:07:10 -08:00
Jeremy Apthorp
4045852e6f
fix: stream protocols sometimes flake out ( #21113 )
2019-11-18 10:47:29 -08:00
Electron Bot
f4371b3f03
Bump v9.0.0-nightly.20191118
2019-11-18 10:14:35 -08:00
Samuel Attard
e0dc8154b3
Revert "Bump v9.0.0-nightly.20191118"
...
This reverts commit ae07582d0a
.
2019-11-18 10:13:02 -08:00