status
stringclasses 1
value | repo_name
stringlengths 9
24
| repo_url
stringlengths 28
43
| issue_id
int64 1
104k
| updated_files
stringlengths 8
1.76k
| title
stringlengths 4
369
| body
stringlengths 0
254k
⌀ | issue_url
stringlengths 37
56
| pull_url
stringlengths 37
54
| before_fix_sha
stringlengths 40
40
| after_fix_sha
stringlengths 40
40
| report_datetime
timestamp[ns, tz=UTC] | language
stringclasses 5
values | commit_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,696 |
["docs/api/system-preferences.md", "shell/browser/api/atom_api_system_preferences.cc"]
|
Add method for getting Windows 10 Shell Color
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Problem Description
I need a way of checking if the user is in https://i.imgur.com/yvZYfsG.png
Windows Dark mode or light mode
### Proposed Solution
systemPreferences.getShellColorType()
### Alternatives Considered
n/a
### Additional Information
Because my app icon is white, I want it to invert if using the Windows 10 light mode.
https://i.imgur.com/dzsLQTs.png
You can barely see it in light mode.
|
https://github.com/electron/electron/issues/18696
|
https://github.com/electron/electron/pull/19217
|
4439249617f40a13d9283b729f050b29d8bbe40f
|
da672a3b5cf93392d36c00bb6f92f8e930ed4ae5
| 2019-06-08T11:59:51Z |
c++
| 2019-07-15T21:37:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,685 |
["atom/browser/api/atom_api_browser_window.cc", "atom/browser/api/atom_api_browser_window.h", "atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h"]
|
win.webContents.destroy() causes a crash
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 3.1.11, 4.2.4, 5.0.2
* **Operating System:**
* macOS 10.14.4
* **Last Known Working Electron version:**
* 2.0.18
### Expected Behavior
Calling `webContents.destroy()` on a `BrowserWindow` instance should not crash Electron.
### Actual Behavior
Calling `webContents.destroy()` on a `BrowserWindow` instance crashes Electron.
### To Reproduce
Append `mainWindow.webContents.destroy()` at the end of the `createWindow` function in Fiddle.
### Additional Information
Seems to be related to https://github.com/electron/electron/commit/a25b49a127d08849835b6781092843f2fc145d87#diff-3d0d8f51a9e7a8d2a462429afa5c5959
```
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.github.electron.framework 0x0000000101e5dc28 base::ObserverList<atom::api::ExtendedWebContentsObserver, false, true>::RemoveObserver(atom::api::ExtendedWebContentsObserver const*) + 648 (algorithm:999)
1 com.github.electron.framework 0x0000000101e5908f atom::api::WebContents::RemoveObserver(atom::api::ExtendedWebContentsObserver*) + 47 (atom_api_web_contents.h:286)
2 com.github.electron.framework 0x0000000101e58fbd atom::api::BrowserWindow::~BrowserWindow() + 141 (atom_api_browser_window.cc:101)
3 com.github.electron.framework 0x0000000101e591d5 atom::api::BrowserWindow::~BrowserWindow() + 21 (atom_api_browser_window.cc:103)
4 com.github.electron.framework 0x0000000101e59279 atom::api::BrowserWindow::~BrowserWindow() + 25 (atom_api_browser_window.cc:97)
5 com.github.electron.framework 0x0000000101e7379b mate::TrackableObjectBase::Destroy() + 43 (trackable_object.cc:45)
6 com.github.electron.framework 0x0000000101e7402f void base::internal::FunctorTraits<void (mate::TrackableObjectBase::*)(), void>::Invoke<base::WeakPtr<mate::TrackableObjectBase> >(void (mate::TrackableObjectBase::*)(), base::WeakPtr<mate::TrackableObjectBase>&&) + 127 (bind_internal.h:447)
7 com.github.electron.framework 0x0000000101e73f4a void base::internal::InvokeHelper<true, void>::MakeItSo<void (mate::TrackableObjectBase::*)(), base::WeakPtr<mate::TrackableObjectBase> >(void (mate::TrackableObjectBase::*&&)(), base::WeakPtr<mate::TrackableObjectBase>&&) + 90 (bind_internal.h:553)
8 com.github.electron.framework 0x0000000101e73ee0 void base::internal::Invoker<base::internal::BindState<void (mate::TrackableObjectBase::*)(), base::WeakPtr<mate::TrackableObjectBase> >, void ()>::RunImpl<void (mate::TrackableObjectBase::*)(), std::__1::tuple<base::WeakPtr<mate::TrackableObjectBase> >, 0ul>(void (mate::TrackableObjectBase::*&&)(), std::__1::tuple<base::WeakPtr<mate::TrackableObjectBase> >&&, std::__1::integer_sequence<unsigned long, 0ul>) + 80 (bind_internal.h:604)
9 com.github.electron.framework 0x0000000101e73e39 base::internal::Invoker<base::internal::BindState<void (mate::TrackableObjectBase::*)(), base::WeakPtr<mate::TrackableObjectBase> >, void ()>::RunOnce(base::internal::BindStateBase*) + 57 (bind_internal.h:572)
10 libbase.dylib 0x000000010c5aba2f 0x10c5a9000 + 10799
11 libbase.dylib 0x000000010c5dc663 base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 947
12 libbase.dylib 0x000000010c6a577a base::internal::IncomingTaskQueue::RunTask(base::PendingTask*) + 234
13 libbase.dylib 0x000000010c6af1dc base::MessageLoop::RunTask(base::PendingTask*) + 908
14 libbase.dylib 0x000000010c6af7c9 base::MessageLoop::DeferOrRunPendingTask(base::PendingTask) + 89
15 libbase.dylib 0x000000010c6afa99 base::MessageLoop::DoWork() + 553
16 libbase.dylib 0x000000010ca3d252 base::MessagePumpCFRunLoopBase::RunWork() + 98
17 libbase.dylib 0x000000010ca3d1dc 0x10c5a9000 + 4800988
18 libbase.dylib 0x000000010ca4d15a base::mac::CallWithEHFrame(void () block_pointer) + 10
19 libbase.dylib 0x000000010ca3c0c5 base::MessagePumpCFRunLoopBase::RunWorkSource(void*) + 101
20 com.apple.CoreFoundation 0x00007fff505025e3 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
21 com.apple.CoreFoundation 0x00007fff50502589 __CFRunLoopDoSource0 + 108
22 com.apple.CoreFoundation 0x00007fff504e5f93 __CFRunLoopDoSources0 + 283
23 com.apple.CoreFoundation 0x00007fff504e5505 __CFRunLoopRun + 1189
24 com.apple.CoreFoundation 0x00007fff504e4e0e CFRunLoopRunSpecific + 455
25 com.apple.HIToolbox 0x00007fff4f7d19db RunCurrentEventLoopInMode + 292
26 com.apple.HIToolbox 0x00007fff4f7d161d ReceiveNextEventCommon + 355
27 com.apple.HIToolbox 0x00007fff4f7d14a6 _BlockUntilNextEventMatchingListInModeWithFilter + 64
28 com.apple.AppKit 0x00007fff4db6bffb _DPSNextEvent + 965
29 com.apple.AppKit 0x00007fff4db6ad93 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
30 com.apple.AppKit 0x00007fff4db64eb0 -[NSApplication run] + 699
31 libbase.dylib 0x000000010ca3e8b2 0x10c5a9000 + 4806834
32 libbase.dylib 0x000000010ca3b765 base::MessagePumpCFRunLoopBase::Run(base::MessagePump::Delegate*) + 101
33 libbase.dylib 0x000000010c6ae98d base::MessageLoop::Run(bool) + 573
34 libbase.dylib 0x000000010c7cf22e base::RunLoop::Run() + 590
35 libcontent.dylib 0x00000001170fe9e2 content::BrowserMainLoop::MainMessageLoopRun() + 402
36 libcontent.dylib 0x00000001170fe703 content::BrowserMainLoop::RunMainMessageLoopParts() + 483
37 libcontent.dylib 0x00000001171a7cda 0x11565c000 + 28622042
38 libcontent.dylib 0x00000001170f0a7f content::BrowserMain(content::MainFunctionParams const&) + 655
39 libcontent.dylib 0x0000000119f06a08 0x11565c000 + 76196360
40 libcontent.dylib 0x0000000119f0822a 0x11565c000 + 76202538
41 libcontent.dylib 0x0000000119efee75 0x11565c000 + 76164725
42 libembedder.dylib 0x0000000106a80ae0 service_manager::Main(service_manager::MainParams const&) + 2128
43 libcontent.dylib 0x0000000119f06769 content::ContentMain(content::ContentMainParams const&) + 89
44 com.github.electron.framework 0x0000000101cad3de AtomMain + 110 (atom_library_main.mm:26)
45 com.github.electron 0x0000000100f04f82 main + 34 (atom_main.cc:217)
46 libdyld.dylib 0x00007fff7c95e3d5 start + 1
```
|
https://github.com/electron/electron/issues/18685
|
https://github.com/electron/electron/pull/18686
|
da58ac7c20f92973801f37cbcab6f430f4e5d045
|
6e327184bd6dd1dc92fada16e9d64d8b45c616f2
| 2019-06-07T13:54:21Z |
c++
| 2019-06-14T02:44:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,670 |
["patches/node/.patches", "patches/node/build_bring_back_node_with_ltcg_configuration.patch"]
|
Native node modules binaries targeting Electron 4+ are bloated
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4.2.x, 5.0.x, 6.0.0 beta
* **Operating System:**
* Windows 10
* **Last Known Working Electron version:**
* 3.1.x
### Expected Behavior
Native node modules are built in release mode with node-gyp (via npm install) and the binary size is similar to modules built for Electron 3.
### Actual Behavior
Native node modules are not built with correct build settings, leading to bloated binaries
### To Reproduce
Create `.npmrc` with the following content
```
disturl = https://atom.io/download/atom-shell
runtime = electron
target = 4.2.0
arch = x64
```
`npm install diskusage` for example
### Screenshots
**Electron 3**

**Electron 4**

**Electron 5**

**Electron 6**

### Additional Information
At least with Electron 4, the issue is caused by `node_with_ltcg` not being set in `include/node/common.gypi`
```
['node_with_ltcg=="true"', {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'true' # /GL, whole program optimization, needed for LTCG
},
'VCLibrarianTool': {
'AdditionalOptions': [
'/LTCG:INCREMENTAL', # link time code generation
]
},
'VCLinkerTool': {
'OptimizeReferences': 2, # /OPT:REF
'EnableCOMDATFolding': 2, # /OPT:ICF
'LinkIncremental': 1, # disable incremental linking
'AdditionalOptions': [
'/LTCG:INCREMENTAL', # incremental link-time code generation
]
}
}
}, {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false'
},
'VCLinkerTool': {
'LinkIncremental': 2 # enable incremental linking
}
}
}]
```
|
https://github.com/electron/electron/issues/18670
|
https://github.com/electron/electron/pull/20614
|
86258c6cff88c60d730c0d1f050bb68c12c41d99
|
58115c1caeebabf0ca74c5eacb1d320a986fad65
| 2019-06-06T14:10:45Z |
c++
| 2019-10-17T21:10:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,664 |
["docs/api/tray.md", "lib/browser/api/tray.js", "shell/browser/api/atom_api_tray.cc", "shell/browser/api/atom_api_tray.h", "shell/browser/ui/tray_icon.cc", "shell/browser/ui/tray_icon.h", "shell/browser/ui/tray_icon_cocoa.h", "shell/browser/ui/tray_icon_cocoa.mm"]
|
Replace StatusItemView implementation with [NSStatusItem button]
|
Now that we have a supported platform list of >= 10.10 we can use the `[NSStatusItem button]` instead of the hacks and tricks we use currently.
|
https://github.com/electron/electron/issues/18664
|
https://github.com/electron/electron/pull/18981
|
cde79501e3ead3bef8d3ba454ef957559d8fcd5e
|
47a38daee20ef77cc98bc13bb7a7c1d690fd635c
| 2019-06-06T06:10:35Z |
c++
| 2019-07-31T17:52:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,663 |
["atom/browser/ui/tray_icon_cocoa.mm"]
|
Tray icon becomes invisible when selecting "Auto" appearance in System Preferences on macOS 10.15 beta1
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->2.0.7
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->macOS 10.15 beta1
* **Last Known Working Electron version:**
* <!-- (if applicable) e.g. 3.1.0 -->N/A
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
The tray icon can display clearly when selecting "Auto" appearance in System Preferences on macOS 10.15 beta1
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
The tray icon is invisible when selecting "Auto" appearance in System Preferences on macOS 10.15 beta1
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
1. Install WD Discovery or VMware Fusion
2. Switch macOS 10.15 beta1 Appearance setting to "Auto"
3. Check the tray icon in the system menu bar
4. The tray icon is invisible
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
<!-- Add any other context about the problem here. -->
Click on the tray icon, if you specify highlight/selected tray image, it displays well
|
https://github.com/electron/electron/issues/18663
|
https://github.com/electron/electron/pull/18666
|
bb1914238982b6535d4a58b3805bf2ecc0457a00
|
ad54d38678ac28f5a1e6102650395c5ad61947be
| 2019-06-06T05:35:08Z |
c++
| 2019-06-07T19:01:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,639 |
["BUILD.gn", "script/dist_zip.mac.x64.manifest", "script/dist_zip.mac_mas.x64.manifest"]
|
Consistent crash when hardware acceleration is disabled
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.5 (also present in beta.6)
* **Operating System:**
* macOS 10.14.5
* **Last Known Working Electron version:**
* 6.0.0-beta.4
### Expected Behavior
Electron should not crash after calling `app.disableHardwareAcceleration()`
### Actual Behavior
Electron crashes (main process) when started with hardware acceleration disabled.
```
[16974:0604/215819.260822:FATAL:gpu_data_manager_impl_private.cc(901)] The display compositor is frequently crashing. Goodbye.
```
### To Reproduce
Reproducible trivially with electron-quick-start
```sh
$ git clone https://github.com/adill/electron-quick-start -b macOS-no-gpu-crash
$ npm install
$ npm start
```
|
https://github.com/electron/electron/issues/18639
|
https://github.com/electron/electron/pull/18870
|
dca583a77f43280e0968c552003c40ae66852977
|
23286fe5573fdb0e3b263d849dbc2bcc9746776f
| 2019-06-05T05:05:09Z |
c++
| 2019-06-20T01:14:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,638 |
["docs/api/webview-tag.md", "lib/common/web-view-methods.js", "lib/renderer/web-view/web-view-attributes.ts", "spec/webview-spec.js"]
|
Setting new src in webview is slow in v6
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.6
* **Operating System:**
* macOS 10.14.5
* **Last Known Working Electron version:**
* 5.0.2
### Expected Behavior
Setting new src in previous version of electron would take only 1–2ms.
### Actual Behavior
Setting new src in electron v6 takes ~600–700ms.
### To Reproduce
1. Clone this repo: https://github.com/steverandy/electron-quick-start/
2. Checkout branch `slow-webview`
3. Run `npm install` and `npm start`
4. Open devtool to see the time took to set new src
### Screenshots
<img width="1136" alt="Screenshot 2019-06-05 at 10 23 12 AM" src="https://user-images.githubusercontent.com/525332/58925938-f1dc8900-877b-11e9-84ee-5ae555936117.png">
|
https://github.com/electron/electron/issues/18638
|
https://github.com/electron/electron/pull/18990
|
015e1348e0175766bce6cfdb1a5685fcdc700452
|
faa27104853312f6bd8fae51aac4dedea3ae8a78
| 2019-06-05T02:23:44Z |
c++
| 2019-07-10T13:20:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,547 |
["shell/app/atom_main_delegate.cc"]
|
Electron exits silently when running as root on Linux
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.5, 5.0.2
* **Operating System:**
* Linux - Ubuntu 18.04 x64
* **Last Known Working Electron version:**
* 4.2.3
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Electron should warn root users that `Running as root without --no-sandbox is not supported.`, even if ELECTRON_ENABLE_LOGGING is not set
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
Running Electron as root fails silently, unless the user sets the environment variable `ELECTRON_ENABLE_LOGGING=true`. When `ELECTRON_ENABLE_LOGGING=true`, the console displays the message:
```sh
Running as root without --no-sandbox is not supported.
```
This behaviour is really confusing as causes people to think Electron doesn't work on their platform (eg see #18350) We should provide more context here.
### To Reproduce
As root run:
```sh
$ git clone https://github.com/electron/electron-quick-start.git
$ npm install
$ npm start
```
No output.
Again as root run:
```sh
$ export ELECTRON_ENABLE_LOGGING=true
$ npm start
```
Warning message appears
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/18547
|
https://github.com/electron/electron/pull/19216
|
6d5e49478269d38cb494edfb5df51541e19adaf5
|
b49ca7ba2edec202c6a828edb8cad8300d55cb5b
| 2019-05-31T14:47:32Z |
c++
| 2019-07-15T14:38:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,521 |
["patches/chromium/.patches", "patches/chromium/allow_new_privileges_in_unsandboxed_child_processes.patch", "spec/node-spec.js"]
|
Executing SUID binaries not possible in v5
|
Since v5, it's no longer possible to start setuid binaries from within an Electron renderer process - even with sandboxing disabled.
|
https://github.com/electron/electron/issues/18521
|
https://github.com/electron/electron/pull/19953
|
ae9424d93aec2f06034e6de3efca4e016836ef62
|
832c926712802913d7f48f84015d394d62281338
| 2019-05-30T13:17:02Z |
c++
| 2019-08-27T22:35:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,503 |
["atom/app/atom_content_client.cc", "atom/app/atom_content_client.h"]
|
GPU information page renders garbage
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.4
* **Operating System:**
* Windows 10 (17763)
* **Last Known Working Electron version:**
* 5.0.1
### Expected Behavior
Loading `chrome://gpu` in a `BrowserWindow` shows the page as it does in the [equivalent](https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Win_x64%2F655764%2Fchrome-win.zip?generation=1556747765859143&alt=media) Chromium version (76.0.3783.1).
### Actual Behavior
Garbage text is rendered in the window.
### To Reproduce
1. Use electron-quick-start
2. Edit the line to `mainWindow.loadURL('chrome://gpu')`
### Screenshots

### Additional Information
I want to use this page to view the GPU log at the bottom to diagnose crashes and canvas elements going blank. Unlike the GPU information, the log doesn't seem to be accessible via any electron API.
|
https://github.com/electron/electron/issues/18503
|
https://github.com/electron/electron/pull/18531
|
81366b5bfbaf7963d4812b9da41547e10610a4ff
|
26155c8a000b922cfaaf80e338ef21a55a0b5162
| 2019-05-29T10:37:26Z |
c++
| 2019-05-31T20:05:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,502 |
["shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_browser_window.h", "shell/browser/native_window.cc", "shell/browser/native_window.h", "shell/browser/native_window_observer.h", "shell/browser/ui/cocoa/electron_ns_window_delegate.mm"]
|
MacOS modal focus
|
On MacOS (Windows/Linux work fine) I am opening a modal window. The modal window opens up fine but focus behavior is broken. When I click on the main window (outside of modal) it gains the focus (which should not happen) and then the modal window gains focus (which is correct), but right after that the modal gains blur (which is wrong). Now if I try to focus the modal with mouse it does not do anything as the main window is focused.
Here I have created a demo which prints out to console which window is focused.
[https://github.com/zarubond/electron-quick-start/tree/modal_focus](https://github.com/zarubond/electron-quick-start/tree/modal_focus)
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
Tested on Electron 3, 5, 6-beta4
* **Operating System:**
MacOS 10.13 (Windows 10 and Ubuntu 18.04 work fine)
* **Last Known Working Electron version:**
None
### Expected Behavior
Main window should never get focused if the modal window is opened
### Actual Behavior
Main window gains focused event if the modal window is opened.
### To Reproduce
Open up the console to see which windows are getting focused and the open the modal with open button.
[https://github.com/zarubond/electron-quick-start/tree/modal_focus](https://github.com/zarubond/electron-quick-start/tree/modal_focus)
### Screenshots

(ignore the last line, I had to switch to screen-short program)
|
https://github.com/electron/electron/issues/18502
|
https://github.com/electron/electron/pull/24286
|
d9d07c65b2440f61e0b979fde90ac896334b1c3f
|
af4876296ced639c4b831ebb3cd010bd226cc6b0
| 2019-05-29T08:03:49Z |
c++
| 2020-06-29T20:15:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,459 |
["atom/renderer/api/atom_api_spell_check_client.cc", "atom/renderer/api/atom_api_spell_check_client.h", "spec/api-web-frame-spec.js"]
|
New spellcheck API treats contractions as separate words
|
#### NOTE: I'm opening a separate issue to #1005 because this is a separate regression - in ^4.0.0, this still worked.
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 5.0.2
* **Operating System:**
* Windows 10 x64 latest
* **Last Known Working Electron version:**
* 4.2.2
### Expected Behavior
The spellchecker is correctly called with contractions (and their parts)
### Actual Behavior
The spellchecker is now only called with the parts of the contractions.
### To Reproduce
Just use the spellcheck API anywhere.
### Additional Information
In ^4.0.0, the spellcheck API would call the spellchecker with first the contraction and then its parts (i.e. for `couldn't` it would be called with `couldn't`, `couldn`, `t` in order). The new ^5.0.0 API calls the spellchecker with an array of just the parts (i.e. for `couldn't` it would be called with `['couldn', 't']`. Therefore, it is now completely impossible to correctly handle contractions.
Thank you for looking into this. <3
|
https://github.com/electron/electron/issues/18459
|
https://github.com/electron/electron/pull/18506
|
a31faaae616ba82373f5032fb40292a32031fb60
|
ab70e854f8ab4ee043382f64e427520473d39ce7
| 2019-05-27T00:21:06Z |
c++
| 2019-05-31T04:19:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,436 |
["patches/chromium/.patches", "patches/chromium/fix_use_weakptr_to_detect_deletion.patch"]
|
electron crashes when closing application menu (armv7l)
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->v6.0.0-beta.4
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->Raspberry Pi 3B+ (armv7l) / DietPi v6.24.1
* **Last Known Working Electron version:**
* <!-- (if applicable) e.g. 3.1.0 -->v3.1.9
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Application menu should close.
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
App crashes without any error message.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
Run following repository and open and close the menu. This is only an arm7vl issue.
https://github.com/nmenke/electron-quick-start.git
```sh
$ git clone https://github.com/nmenke/electron-quick-start.git
$ npm install
$ npm start || electron .
```
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Additional Information
<!-- Add any other context about the problem here. -->
I don't know if the issue is present in electron@4 because of glibc >= 2.27.
|
https://github.com/electron/electron/issues/18436
|
https://github.com/electron/electron/pull/19257
|
c76b0b70c14e7f2b9da7fdde521afaf5f9d36f84
|
3a6cafaf0a6e3a864f3b1f8f8e99adbfa3cae793
| 2019-05-24T06:03:15Z |
c++
| 2019-07-31T23:48:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,434 |
["docs/api/app.md", "patches/chromium/.patches", "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "shell/browser/api/electron_api_app.cc", "shell/browser/api/electron_api_app.h", "spec-main/api-app-spec.ts", "spec/fixtures/api/singleton-data/main.js", "spec/fixtures/api/singleton-data/package.json", "spec/fixtures/api/singleton/main.js"]
|
second-instance event should pass ENV of requester
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Problem Description
<!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. -->
the second-instance event passes the commandLine and workingDirectory of the second instance, but does not pass the environment variable map. thus, if one desires to pass updates of the environment variables (updated between the time of first process and second process creation) to the first process, this is not currently possible
### Proposed Solution
<!-- Describe the solution you'd like in a clear and concise manner -->
the `second-instance` event should pass an `env` argument
### Alternatives Considered
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
one could roll their own, via self-managed filesystem operations
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/18434
|
https://github.com/electron/electron/pull/30891
|
5592652504e9e46e84aa85c3bb0404211cc9e581
|
db0a152bc1318feb912bdc9638e0c040a2626290
| 2019-05-23T23:31:53Z |
c++
| 2021-10-15T01:32:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,429 |
["shell/renderer/atom_render_frame_observer.cc", "shell/renderer/atom_renderer_client.cc", "shell/renderer/atom_sandboxed_renderer_client.cc", "shell/renderer/renderer_client_base.cc", "shell/renderer/renderer_client_base.h", "spec/api-subframe-spec.js", "spec/fixtures/sub-frames/webview-iframe-preload.js"]
|
nodeIntegrationInSubFrames webview attribute causes preload script to run multiple times
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
5.0.1
* **Operating System:**
windows
* **Last Known Working Electron version:**
n/a
### Expected Behavior
A preload script should run only 1 time for each webContents / iframe
### Actual Behavior
The preload script appears to run multiple times
### To Reproduce
https://github.com/Tim91084/electron-node-subframe-issue/tree/node-in-subframe-runs-too-often
```sh
$ git clone https://github.com/Tim91084/electron-node-subframe-issue.git -b node-in-subframe-runs-too-often
$ npm install
$ npm start || electron .
```
### Screenshots

|
https://github.com/electron/electron/issues/18429
|
https://github.com/electron/electron/pull/19260
|
b57e623c119c020506805302e3b8269c7d5a736d
|
d1c9f5e309352a300232aedb3bf4b5424283da1a
| 2019-05-23T17:34:14Z |
c++
| 2019-07-17T00:13:05Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,410 |
["patches/chromium/.patches", "patches/chromium/chore_add_debounce_on_the_updatewebcontentsvisibility_method_to.patch"]
|
Main window flickers with maximizing and fullscreen
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> Electron 4.1.3, 4.2.1, 5.0.0-beta6 and 6.0.0-beta2
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> macOS 10.14.4
* **Last Known Working Electron version:**
* <!-- (if applicable) e.g. 3.1.0 --> 3.1.7
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Maximizing/restoring and toggling/exiting fullscreen shouldn't cause the main window to flicker.
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
Main window flickers when the app is maximized/restored or if fullscreen is toggled/exited.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
1. Launch an Electron app
2. Maximize and restore the main window
3. Toggle and exit fullscreen
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->

### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/18410
|
https://github.com/electron/electron/pull/18661
|
00d18917d09f13f549be355ea3fc703dc035c520
|
0146cc0eb5d4236ba93f171824123799edb642d2
| 2019-05-22T19:31:23Z |
c++
| 2019-06-19T19:51:25Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,406 |
["atom/browser/ui/file_dialog_win.cc"]
|
<input type=file> is not working on Windows.
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.4
* **Operating System:**
* Windows 10(1809) 64bit
* **Last Known Working Electron version:**
* 5.0.1
### Expected Behavior
Can not select local file using <input type="file">.
### Actual Behavior
Can select local file using <input type="file">.
### To Reproduce
1. Run this commands.
```sh
$ git clone https://github.com/agata/can-not-select-file.git
$ cd can-not-select-file
$ npm install
$ npm start
```
or download [Installer for the sample app](https://github.com/agata/can-not-select-file/blob/master/dist/Electron%20Setup%201.0.0.exe). Then Install and run it.
2. The app shows mozilla's page with example for <input type="file"> .
3. Click "Choose File" and select a local file. It can not select file. It keeps to show "No file choosen."
### Screenshots
<img width="1154" alt="electron-6 0 0-beta 4" src="https://user-images.githubusercontent.com/40473/58185299-c7a3b980-7ced-11e9-9aa4-1378afc91fde.png">
Screeencast: [Electron-6.0.0-beta.4.mov.zip](https://github.com/electron/electron/files/3207975/Electron-6.0.0-beta.4.mov.zip)
### Additional Information
- Can select a file on Mac OS + Electron 6.0.0-beta.4.
- Can select a file on Mac OS + Electron 5.0.1.
- Can select a file on Windows 10 + Electron 5.0.1.
- Can not select a file on Windows 10 + Electron 6.0.0-beta.4.
I couldn't use the fiel open dialog on Electron 6.0.0-beta.3. Because beta.3 has [this issue](https://github.com/electron/electron/pull/18341) . It was fixed the issue by Electron 6.0.0-beta.4.
|
https://github.com/electron/electron/issues/18406
|
https://github.com/electron/electron/pull/18492
|
f5b3d00b47c44626f292593de04af0d6a4ba7c52
|
3d8db573d9291bc41f823cc9f195f990ce03d7a3
| 2019-05-22T15:21:28Z |
c++
| 2019-05-29T19:37:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,380 |
["patches/node/.patches", "patches/node/fix_enable_tls_renegotiation.patch"]
|
Node http request to API Server fails with TLS Error - No Renegotiation
|
### Issue Details
* **Electron Version: v5.0.0
* **Operating System: MacOS 10.14.4 (18E226)
* **Node System version: Tried 11.15.0 and 12.2.0
* **Last Known Working Electron version: None
### Expected Behavior
I expect to receive a response, In this case it would be an unauthorized response.
### Actual Behavior
I am receiving the following error:
```
Error: Error: socket hang up
at Request._callback (/Users/darkogrozdanovski/Development/Multiplatform/electron-request/main.js:14:20)
at self.callback (/Users/darkogrozdanovski/Development/Multiplatform/electron-request/node_modules/request/request.js:185:22)
at Request.emit (events.js:194:13)
at Request.onRequestError (/Users/darkogrozdanovski/Development/Multiplatform/electron-request/node_modules/request/request.js:881:8)
at ClientRequest.emit (events.js:194:13)
at TLSSocket.socketOnEnd (_http_client.js:435:9)
at TLSSocket.emit (events.js:199:15)
at endReadableNT (_stream_readable.js:1141:12)
at processTicksAndRejections (internal/process/task_queues.js:81:17)
```
### To Reproduce
I was able to reproduce this by taking the quickstart (https://github.com/electron/electron-quick-start) and adding code to make the request in the main.js file using the node *request* library
Here is a link to the branch i created
[Link To Branch](https://github.com/darko1002001/electron-quick-start/compare/master...darko1002001:bug/tls?expand=1)
By some experimentation i was able to get to an error which said the following:
```
Uncaught Exception:
Error: 140283303048872:error:100000b6:SSL routines:OPENSSL_internal:NO_RENEGOTIATION:../../third_party/boringssl/src/ssl/ssl_lib.cc:966:
```
The reason i am using request is that the API i am trying to access blocks the normal XHR requests due to CORS and even if i disable webSecurity in electron i still am unable to pass the authentication and get redirected to a login page, i am guessing there is some kind of redirect if it detects a request coming from a browser.
I also tried to execute the exact same code to make a request by writing a separate script and running it using the command *node script.js*. This worked without any issues.
From what i've read Electron is using the Boringssl implementation which doesn't support this. Is there some kind of a way to skip the renegotiation or bypass it?
|
https://github.com/electron/electron/issues/18380
|
https://github.com/electron/electron/pull/25022
|
3313e00578be3f9d5daac83913dd49291a158266
|
902184385030064131b74a98466f846784d6ce64
| 2019-05-21T14:00:44Z |
c++
| 2020-08-19T18:18:16Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,364 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm"]
|
customButtonsOnHover does not respect minimizable nor maximizable options
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 4.1.4
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->macOS
* **Last Known Working Electron version:**:
* <!-- (if applicable) e.g. 3.1.0 --> Never
### Expected Behavior
When `titleBarStyle` is set to `customButtonsOnHover`, the semaphore buttons *should not* appear on hover if the `maximizable` and `minimizable` options are set to `false`.
### Actual Behavior
When `titleBarStyle` is set to `customButtonsOnHover`, the semaphore buttons appear on hover regardless if the `maximizable` and `minimizable` options are set to `false`.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
The reason for this issue is to be able to get rid of the gray line at the top of the `BrowserWindow` described here https://github.com/electron/electron/issues/18364
|
https://github.com/electron/electron/issues/18364
|
https://github.com/electron/electron/pull/18425
|
01cd6e7a066ce46ab8ade06548c224797da4f79b
|
1688ebdd40796b711e1440c5850e03f8910dfabc
| 2019-05-20T13:08:16Z |
c++
| 2019-05-28T17:23:16Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,310 |
["atom/browser/native_window_views.cc", "atom/browser/native_window_views_win.cc"]
|
Frameless window prevents taskbar unhide
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.3
* **Operating System:**
* Windows 10 (1809)
* **Last Known Working Electron version:**:
* 5.0.1
### Expected Behavior
Dragging your mouse to the bottom of the screen with a maximized frameless window and a hidden Windows taskbar should make the taskbar appear.
### Actual Behavior
The taskbar does not appear.
### To Reproduce
* Ensure you have Taskbar hiding enabled

```sh
$ git clone https://github.com/adill/electron-quick-start -b no-taskbar-unhide
$ npm install
$ npm start || electron .
```
* Move your mouse to the bottom of the screen
### Screenshots
### Additional Information
|
https://github.com/electron/electron/issues/18310
|
https://github.com/electron/electron/pull/18321
|
c1cccfc0820fad29ec11b87b6f704b62716166bd
|
340014a9d32fad6a00958b1edef348b3c456a50f
| 2019-05-15T16:46:41Z |
c++
| 2019-05-21T00:50:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,298 |
["docs/api/web-request.md"]
|
details.responseHeaders should be optional
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:** 4.0.4
* **Operating System:** Windows 10
### Expected Behavior
According to [here](https://developer.chrome.com/extensions/webRequest#type-HttpHeaders), (search for "onCompleted"), the responseHeaders set into the details object are optional, but electron.d.ts shows they're not:
```
interface OnCompletedDetails {
id: number;
url: string;
method: string;
webContentsId?: number;
resourceType: string;
referrer: string;
timestamp: number;
responseHeaders: ResponseHeaders;
fromCache: boolean;
statusCode: number;
statusLine: string;
}
```
I was getting a crash where I assumed that they're set , but `details.responseHeaders` was undefined (when doing a `window.open("", "a");`)
|
https://github.com/electron/electron/issues/18298
|
https://github.com/electron/electron/pull/18302
|
2ad62cedc3a6743d9bdfd549498dc53e8b2f1b9e
|
2a08bfbcc62754debdcbdb2cec4962ca7352be39
| 2019-05-14T16:11:26Z |
c++
| 2019-05-16T01:20:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,254 |
["atom/browser/atom_download_manager_delegate.cc", "atom/browser/atom_download_manager_delegate.h", "atom/browser/web_dialog_helper.cc", "atom/common/promise_util.h"]
|
DCHECK in file chooser
|
To repro: click on an `<input type=file>` in debug mode.
```
#
# Fatal error in ../../v8/src/api-inl.h, line 126
# Debug check failed: allow_empty_handle || that != nullptr.
#
#
#
#FailureMessage Object: 0x7ffee3550f30Received signal 4 <unknown> 00019dbc4f82
0 libbase.dylib 0x00000001179e03b1 base::debug::CollectStackTrace(void**, unsigned long) + 33
1 libbase.dylib 0x00000001176a5ecb base::debug::StackTrace::StackTrace(unsigned long) + 75
2 libbase.dylib 0x00000001176a5f1d base::debug::StackTrace::StackTrace(unsigned long) + 29
3 libbase.dylib 0x000000011769a0f5 base::debug::StackTrace::StackTrace() + 37
4 libbase.dylib 0x00000001179e0221 base::debug::(anonymous namespace)::StackDumpSignalHandler(int, __siginfo*, void*) + 1393
5 libsystem_platform.dylib 0x00007fff7a836b5d _sigtramp + 29
6 ??? 0x000000000000ffff 0x0 + 65535
7 libv8_libbase.dylib 0x000000019dbbc045 v8::base::(anonymous namespace)::DefaultDcheckHandler(char const*, int, char const*) + 21
8 libv8.dylib 0x0000000172cc363e v8::Utils::OpenHandle(v8::Context const*, bool) + 270
9 libv8.dylib 0x0000000172cc7366 v8::Context::Enter() + 38
10 Electron Framework 0x000000010e3fbb29 v8::Context::Scope::Scope(v8::Local<v8::Context>) + 57
11 Electron Framework 0x000000010e3fb88d v8::Context::Scope::Scope(v8::Local<v8::Context>) + 29
12 Electron Framework 0x000000010e425314 v8::MaybeLocal<v8::Promise> atom::util::Promise::Then<void, bool, std::__1::vector<base::FilePath, std::__1::allocator<base::FilePath> > const&>(base::OnceCallback<void (bool, std::__1::vector<base::FilePath, std::__1::allocator<base::FilePath> > const&)>) + 132
13 Electron Framework 0x000000010e4225fc (anonymous namespace)::FileSelectHelper::ShowOpenDialog(file_dialog::DialogSettings const&) + 236
14 Electron Framework 0x000000010e421b6b atom::WebDialogHelper::RunFileChooser(content::RenderFrameHost*, std::__1::unique_ptr<content::FileSelectListener, std::__1::default_delete<content::FileSelectListener> >, blink::mojom::FileChooserParams const&) + 987
15 Electron Framework 0x000000010e302e24 atom::CommonWebContentsDelegate::RunFileChooser(content::RenderFrameHost*, std::__1::unique_ptr<content::FileSelectListener, std::__1::default_delete<content::FileSelectListener> >, blink::mojom::FileChooserParams const&) + 212
16 libcontent.dylib 0x000000011b43801c content::WebContentsImpl::RunFileChooser(content::RenderFrameHost*, std::__1::unique_ptr<content::FileSelectListener, std::__1::default_delete<content::FileSelectListener> >, blink::mojom::FileChooserParams const&) + 156
17 libcontent.dylib 0x000000011a909e37 content::FileChooserImpl::OpenFileChooser(mojo::StructPtr<blink::mojom::FileChooserParams>, base::OnceCallback<void (mojo::StructPtr<blink::mojom::FileChooserResult>)>) + 471```
|
https://github.com/electron/electron/issues/18254
|
https://github.com/electron/electron/pull/18288
|
d027be05a6b78c13522e103924f8d65568d10b02
|
fde3137b905656d773132babc17e890ed741199c
| 2019-05-11T00:03:52Z |
c++
| 2019-05-14T22:46:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,252 |
["atom/browser/net/atom_network_delegate.cc", "atom/browser/net/url_request_context_getter.cc", "spec-main/chromium-spec.ts"]
|
Network Error Logging is disabled by default
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4, 5, 6
* **Operating System:**
* not related
* **Last Known Working Electron version:**:
* doesn't work at all
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Electron's network request honor NEL header and make NEL request.
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
Does not happens
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
Navigate known NEL-enabled endpoint (i.e https://dcreager.net/nel/intro/), collect netlog and check `Reporting` section.
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
<!-- Add any other context about the problem here. -->
NEL (https://www.w3.org/TR/network-error-logging/) is enabled by default from M69 (https://www.chromestatus.com/features/5391249376804864), but in our desktop client based on v4 (and v5, 6 for verification purpose) doesn't honor NEL header so we are not able to collect users using desktop client.
In chromium visiting NEL configured endpoint will make proper NEL request to specified endpoint, and client side behavior can be verified via netlog like below:

In Electron, some version simply doesn't have `Reporting` section at all, or if exists it says it's disabled:

|
https://github.com/electron/electron/issues/18252
|
https://github.com/electron/electron/pull/18255
|
babe2b68fbaf8f2d6326706c698e3afe601b572b
|
f4c792d01435b6ab9730a9ed5eca159038993bc9
| 2019-05-10T21:39:54Z |
c++
| 2019-05-29T23:33:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,242 |
["docs/api/app.md", "spec-main/api-app-spec.ts"]
|
app.setPath() does not create directories
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 5.0.1
* **Operating System:**
* macOS 10.14
### Expected Behavior
According to the [API documentation](https://github.com/electron/electron/blob/master/docs/api/app.md#appsetpathname-path) `app.setPath()` should create the directory passed, if it does not exist.
### Actual Behavior
It does not.
### To Reproduce
In particular, I was calling `app.setPath('logs', path)` and `app.setPath('userCache', path)` with non-existent directories; they were not created.
### Additional Information
The creation [seems to be delegated to `base::PathService::OverrideAndCreateIfNeeded`](https://github.com/electron/electron/blob/master/atom/browser/api/atom_api_app.cc#L879), so I think this may just be a simple bug (the last parameter should be `true` not `false`).
|
https://github.com/electron/electron/issues/18242
|
https://github.com/electron/electron/pull/18244
|
1688ebdd40796b711e1440c5850e03f8910dfabc
|
c6216151121be2b1807c022557bfdce65061a03c
| 2019-05-09T22:28:09Z |
c++
| 2019-05-28T17:37:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,236 |
["lib/browser/api/dialog.js", "spec/api-dialog-spec.js"]
|
showMessageBox BrowserWindow is not optional
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.2
* **Operating System:**
* Windows 10 (1809)
* **Last Known Working Electron version:**:
* 5.0.0
### Expected Behavior
`dialog.showMessageBox({options...})` should display a message box matching the options passed in
### Actual Behavior
A message box complaining about parsing argument at index 11 displays
### To Reproduce
```sh
$ git clone https://github.com/adill/electron-quick-start -b show-message-box
$ npm install
$ npm start || electron .
```
### Screenshots
### Additional Information
|
https://github.com/electron/electron/issues/18236
|
https://github.com/electron/electron/pull/18240
|
e73a0e6cc66665d83242e263bc8718c42ffd7c7e
|
1a2ab11c90e44bf46bf69f72dcbee2e384116a34
| 2019-05-09T18:16:11Z |
c++
| 2019-05-21T14:08:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,188 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "atom/browser/common_web_contents_delegate.cc", "atom/browser/common_web_contents_delegate.h"]
|
Exiting Fullscreen mode for Embedded Content does not work.
|
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
5.0.0
* **Operating System:**
MacOS 10.13.6 / Windows 10
* **Last Known Working Electron version:**:
Electron v2.0.8
### Expected Behavior
Exiting fullscreen content ( ie. A Youtube Video displayed in a iframe ) should return the to app.
### Actual Behavior
Video size shrinks, but screen stays black , see https://cl.ly/f7af08d44619
### To Reproduce
main.js
```
const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
let window = null
// Wait until the app is ready
app.once('ready', () => {
// Create a new window
window = new BrowserWindow({
// Set the initial width to 500px
width: 600,
// Set the initial height to 400px
height: 600,
// Don't show the window until it's ready, this prevents any white flickering
show: false,
webPreferences: {
webSecurity: false,
nodeIntegration: true,
allowRunningInsecureContent: true,
},
})
window.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
window.once('ready-to-show', () => {
window.show()
})
})
```
index.html
```
<!DOCTYPE html>
<html>
</head>
<body>
<div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/eBpxovL0zng" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</div>
</body>
</html>
```
### Screenshots
Screen recording https://cl.ly/f7af08d44619
|
https://github.com/electron/electron/issues/18188
|
https://github.com/electron/electron/pull/18736
|
9856e5df3bf98988eec84622183d3d8657c0d669
|
5e320291b44b52fe1cdb845c6c9392884d65353f
| 2019-05-07T10:42:41Z |
c++
| 2019-06-13T21:02:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,182 |
["DEPS", "lib/common/asar.js", "spec/fixtures/api/electron-main-module/app.asar", "spec/fixtures/api/electron-main-module/app/index.js", "spec/fixtures/api/electron-main-module/app/node_modules/some-module/main2.js", "spec/fixtures/api/electron-main-module/app/node_modules/some-module/package.json", "spec/node-spec.js"]
|
package.json main field ignored for modules inside asar packaged app
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 6.0.0-beta.1
* **Operating System:**
* Windows 10 Pro (1809)
* **Last Known Working Electron version:**:
* 5.0.1
### Expected Behavior
`rimraf` should be able to be `require`'d within an ASAR packaged app.
### Actual Behavior
Modules that use `package.json`'s `main` field will fail to load from within the context of an ASAR packaged app. It appears, to me, that `internalModuleReadJSON` from within `readPackage` in the commonjs loader `lib/internal/modules/cjs/loader.js` isn't referencing ASAR-aware `fs` methods.
### To Reproduce
```sh
$ git clone https://github.com/adill/electron-quick-start -b package-json-in-asar
$ cd app\
$ npm install
$ cd ..
$ npm install
$ npm run-script build
$ npm run-script start
```
### Screenshots

### Additional Information
|
https://github.com/electron/electron/issues/18182
|
https://github.com/electron/electron/pull/18183
|
91e3421525199a9c440d346ea78d624ec4927486
|
cfb6e847a0f499005b2821e79436aa8484da2ba2
| 2019-05-06T17:56:45Z |
c++
| 2019-05-07T13:44:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,161 |
["shell/common/application_info_win.cc"]
|
process.windowsStore returns undefined even in AppX packages in Electron 5.0.x, 7.x, 8.x
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* Tested on electron 5.0.0, through 5.0.6
* **Operating System:**
* Windows 10 (Tested on both 1803 and 1809)
### Expected Behavior
`process.windowsStore` should return true if running inside of an appx package, as described in https://electronjs.org/docs/api/process#processwindowsstore
### Actual Behavior
`process.windowsStore` returns undefined, even when running in an appx package
### To Reproduce
I forked electron-quick-start to demonstrate the issue I found.
[https://github.com/dangeredwolf/electron-quick-start](https://github.com/dangeredwolf/electron-quick-start)
You can then use `npm run buildWindows` to create the appx.
If you're unfamiliar with appx deployment, appx files need to be signed to be installed, even in developer mode. [This is basically how to do that (from Microsoft's docs)](https://docs.microsoft.com/en-gb/windows/uwp/packaging/sign-app-package-using-signtool)
`process.windowsStore` is undefined in both the main and renderer processes when installed as an AppX
### Screenshots
I set it up to throw a dialog box of whatever process.windowsStore is

It's obvious from electron itself that it's running from C:\Program Files\WindowsApps

### Additional Information
After further testing, I confirmed that this is an issue introduced in Electron 5.0.0. You can test this by cloning [the electron-quick-start fork with process.windowsStore checks](https://github.com/dangeredwolf/electron-quick-start) and changing `package.json`'s `"devDependencies"`>`"electron"` from `"^5.0.0"` to `"^4.2.0"`

|
https://github.com/electron/electron/issues/18161
|
https://github.com/electron/electron/pull/23785
|
f445e0a7974f68962c5171b35d13fb1abe6ee1c0
|
ca6a4156261cd5d956058be5ddb69a09240be172
| 2019-05-04T23:20:50Z |
c++
| 2020-05-27T17:50:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,140 |
["atom/browser/api/atom_api_system_preferences_mac.mm", "atom/browser/ui/cocoa/NSColor+Hex.h", "atom/browser/ui/cocoa/NSColor+Hex.mm"]
|
App crashes after invoking of systemPreferences.getAccentColor()
|
After calling `systemPreferences.getAccentColor();` app crashes. There is no any error in console, only `Process finished with exit code 0`. `try/catch` doesn't help.
### Issue Details
* **Electron Version:** 5.0.0
* **Operating System:** macOS 10.14.4
* **Last Known Working Electron version:** unknown
### Expected Behavior
Method `systemPreferences.getAccentColor();` should work as described in docs.
### Actual Behavior
App crashes.
### To Reproduce
Just execute following on macOS 10.14.4 with electron 5.0.0:
```javascript
const {app, systemPreferences} = require('electron');
app.whenReady().then(() => {
try {
let accentColor = systemPreferences.getAccentColor();
console.log(accentColor);
} catch (e) {
console.error(e);
}
});
```
|
https://github.com/electron/electron/issues/18140
|
https://github.com/electron/electron/pull/18144
|
d79dc056bc5e8ff83c3138154b8eee6cea424d03
|
0ab3d7a0beb99ae897ad5572cde490d2adc81e4e
| 2019-05-03T17:41:06Z |
c++
| 2019-05-07T15:26:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,138 |
["docs/api/browser-window.md", "shell/browser/api/electron_api_base_window.cc", "shell/browser/api/electron_api_base_window.h", "shell/browser/native_window.cc", "shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "spec/api-browser-window-spec.ts"]
|
Allow to retrieve window tabbingIdentifier at runtime
|
Electron supports macOS sierra native tabs when creating windows, however in order to properly restore an arrangement of multiple groups of tabs, we would need to get this information at runtime before closing the application.
|
https://github.com/electron/electron/issues/18138
|
https://github.com/electron/electron/pull/39980
|
04b2ba84cd9c1c883498e0cee8492c4bb59088ec
|
713d8c4167a07971775db847adca880f49e8d381
| 2019-05-03T13:50:18Z |
c++
| 2023-10-03T19:27:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,126 |
["shell/browser/net/url_request_async_asar_job.cc", "spec/api-protocol-spec.js"]
|
Crash when passing an array for header value in registerFileProtocol handler
|
Here's an example [fiddle](https://github.com/electron/fiddle) that triggers the crash: https://gist.github.com/0cbf622b1b46ea55811f56df9b32df37.
It looks like we're just assuming that this value is a string, and we crash hard if anything other than a string is passed. It would be better for us to throw a JS error in this situation.
```
base::Value::GetString() const (in Electron Framework) (values.cc:319)
atom::URLRequestAsyncAsarJob::StartAsync(std::__1::unique_ptr<base::Value, std::__1::default_delete<base::Value> >, int) (in Electron Framework) (url_request_async_asar_job.cc:88)
base::internal::Invoker<base::internal::BindState<void (atom::URLRequestAsyncAsarJob::*)(std::__1::unique_ptr<base::Value, std::__1::default_delete<base::Value> >, int), base::WeakPtr<atom::URLRequestAsyncAsarJob>, std::__1::unique_ptr<base::Value, std::__1::default_delete<base::Value> >, int>, void ()>::RunOnce(base::internal::BindStateBase*) (in Electron Framework) (bind_internal.h:641)
base::TaskAnnotator::RunTask(char const*, base::PendingTask*) (in Electron Framework) (task_annotator.cc:114)
base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*, bool*) (in Electron Framework) (heap_profiler.h:93)
base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoSomeWork() (in Electron Framework) (thread_controller_with_message_pump_impl.cc:214)
base::MessagePumpKqueue::Run(base::MessagePump::Delegate*) (in Electron Framework) (message_pump_kqueue.cc:155)
non-virtual thunk to base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) (in Electron Framework) (thread_controller_with_message_pump_impl.cc:0)
base::RunLoop::RunWithTimeout(base::TimeDelta) (in Electron Framework) (run_loop.cc:167)
content::BrowserProcessSubThread::IOThreadRun(base::RunLoop*) (in Electron Framework) (browser_process_sub_thread.cc:0)
base::Thread::ThreadMain() (in Electron Framework) (thread.cc:315)
base::(anonymous namespace)::ThreadFunc(void*) (in Electron Framework) (platform_thread_posix.cc:83)
```
NB. this is probably only a good first issue if you have some C++ experience :)
|
https://github.com/electron/electron/issues/18126
|
https://github.com/electron/electron/pull/18854
|
236d552d6a0553c4daf0fe824727421327cfe036
|
81497c7f2e7ca4de7779580b72ec10da37012949
| 2019-05-02T19:30:33Z |
c++
| 2019-06-21T16:23:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,123 |
["patches/chromium/crashpad_pid_check.patch", "patches/chromium/printing.patch"]
|
'silent: true' for printing not working in version 5.
|
Hey there
I have upgraded an app to version 5 as in the list of fixes was the silent printing bug, but the issue is still the same.
My code:
`printWindow.webContents.print({silent: true});`
Results in nothing happening at all. No errors thrown or anything. Changing it back to false, brings up the window to select the printer and then it prints perfectly fine. It's just the silent mode that doesn't work.
I am running this on Windows 10, with Node version 10.15.3. I can not try with a different OS as the printer only has drivers for Windows.
Many thanks,
Michael
|
https://github.com/electron/electron/issues/18123
|
https://github.com/electron/electron/pull/18979
|
819cebff5dd8b7a690733455ee65a9facfbc33ff
|
e8e360a902790f3382f23c09678fc2eccba98748
| 2019-05-02T17:29:57Z |
c++
| 2019-06-27T03:53:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,119 |
["BUILD.gn", "buildflags/BUILD.gn", "buildflags/buildflags.gni", "filenames.gni", "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "shell/browser/ui/win/electron_desktop_window_tree_host_win.h", "shell/browser/win/dark_mode.cc", "shell/browser/win/dark_mode.h", "shell/common/api/features.cc", "typings/internal-ambient.d.ts"]
|
Windows chrome and context menu should be aware of dark mode setting
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Problem Description
Recent builds of Windows 10 support a "dark mode" that changes the chrome and context menus to fit better with the rest of the OS. https://www.digitaltrends.com/computing/how-to-enable-dark-mode-in-windows-10/ has a write up of how to enable this.
Here's a side-by-side of Explorer and the Quick Start app on Windows `10.0.17763.437`:

This is complementary to #15316 but not the whole solution:
- it'd be great if the defaults "just worked" based on this setting, so app developers and users would get this benefit without needing to manage configuration themselves
- some apps choose to roll their own themes, but they don't have control over the main menu or context menu without also rolling their own implementations of those and hiding the default chrome
To go into more detail, here's what a context menu looks like that respects the dark mode setting:

And here's the equivalent main menu and context menu in the Electron Quick Start when using Electron 5:


### Proposed Solution
I'm not familiar with how this works under the hood, but happy to go spelunking if this is something that interests the maintainers to gather more information.
### Alternatives Considered
As mentioned above, app developers can roll their own dark theme for menus and switch to use a chromeless `BrowserWindow`. That's fine for people who want to invest in that, but if there's lots of interest in the default chrome working better then maybe this is worth diving into?
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/18119
|
https://github.com/electron/electron/pull/33624
|
21ef8501e7c71cd8d56828e21d310d07f9d86510
|
4c7c0b41c2027db27cf563e9eabb95cc8adf96bb
| 2019-05-02T14:14:11Z |
c++
| 2022-06-14T16:27:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,034 |
["atom/browser/native_window_views.cc"]
|
BrowserWindow.show() always doesn't focus.
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 4.1.4
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> Windows 10 (1903)
* **Last Known Working Electron version:**:
* <!-- (if applicable) e.g. 3.1.0 --> N/A
### Expected Behavior
BrowserWindow.show(), as documented, shows **and** focuses the window.
### Actual Behavior
BrowserWindow.show() doesn't get focus, as noted in https://github.com/TheGoddessInari/rambox/issues/92.
I'm now having to explicitly call .focus() after .show(), even though the documentation explicitly states that .show() also focuses.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
<!-- Add any other context about the problem here. -->
I checked the code, and I don't see NativeWindow call anything like Focus. Maybe I'm looking in the wrong part of the code, but NativeWindowViews::Show() doesn't look to directly or indirectly call NativeWindowViews::Focus(), which is what you would expect from the documentation.
This is possibly specific to Linux? As ShowWindow on Windows **should** activate the window same as Focus does.
Many other applications use .show() and then .focus() on browserwindow, even though the focus is specifically documented as redundant in that case. But either way, the documentation doesn't match the behavior.
It's hard for me to search the code online since GitHub search doesn't seem to support literal searches within "quotes", so I might've missed something.
|
https://github.com/electron/electron/issues/18034
|
https://github.com/electron/electron/pull/18046
|
67b3fbca891299dd710a2ced75e0d0609e6a370d
|
00358545a9098158f095f47013483e83bb3b35d0
| 2019-04-29T16:19:12Z |
c++
| 2019-04-30T23:43:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 18,032 |
["patches/common/chromium/frame_host_manager.patch", "spec/api-browser-window-spec.js", "spec/fixtures/api/window-open-preload.js", "spec/network-helper.js"]
|
window.opener opened from webview is null after cross site navigation
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
`5.0.0`
* **Operating System:**
` macOS 10.14.4`
* **Last Known Working Electron version:**:
`4.0.4`
### Expected Behavior
Open a Window with domain A via `window.open` et navigate to domain B in the opened window should keep the `window.opener` reference.
At the business logic level, sign-in with Google Auth from a web frame doesn't work. The callback on final application domain can't post a message to the window opener.
### Actual Behavior
The `window.opener` is null after cross-site navigation.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
```js
// main.js
const { app, BrowserWindow } = require('electron')
function createWindow() {
const mainWindow = new BrowserWindow({
webPreferences: {
nodeIntegration: true,
webviewTag: true,
contextIsolation: false,
}
});
mainWindow.loadFile('index.html')
}
app.on('ready', createWindow)
app.on('window-all-closed', app.quit);
```
```html
<webview src="https://mail.google.com" allowpopups></webview>
```
- Call `window.open('https://google.com')` from the web view dev tools
- The `window.opener` is not null
- Go to Github with `window.location = 'https://github.com'`; the `window.opener` is null
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
Similar issues have been reported: https://github.com/electron/electron/issues/17869,
https://github.com/electron/electron/pull/15821, https://github.com/electron/electron/issues/8100
Also preloads doesn't load in the same origin context for the opened window.
Seems linked to https://github.com/electron/electron/issues/17989:
- Web view (`myapp.com`) open `auth.google.com`, `window.opener` is null and preloads are loaded
- Web view (`myapp.com`) open `auth.myapp.com`, `window.opener` is set but preloads are not loaded
More details [here](https://github.com/getstation/electron-chrome-extension/pull/47#issuecomment-487856527)
History: https://github.com/electron/electron/issues/11471#issuecomment-352627083
|
https://github.com/electron/electron/issues/18032
|
https://github.com/electron/electron/pull/18173
|
cec61d010b7f421870d07f00d2aae25bb3b05b61
|
b4276835d8a8212e7def2fa2b0838d86132fe150
| 2019-04-29T09:31:48Z |
c++
| 2019-06-03T20:23:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,996 |
["atom/app/node_main.cc", "atom/browser/atom_browser_main_parts.cc", "atom/browser/node_debugger.cc", "atom/browser/node_debugger.h", "spec/fixtures/module/delay-exit.js", "spec/node-spec.js"]
|
Quitting while attached (--inspect or --inspect-brk) causes crash
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 5.0.0
* **Operating System:**
* macOS 10.14.4
* **Last Known Working Electron version:**:
* 4.1.4
### Expected Behavior
Quitting while a debugger is attached to the process results in the application exiting without error.
### Actual Behavior
Qutting while a debugger is still attached results in the application crashing and macOS showing its crash report dialog.
### To Reproduce
1. Run electron with `--inspect=9229` or `--inspect-brk=9229`.
2. Attach with a debugger (such as Visual Studio Code).
3. Quit electron without detaching.
Below is a repo that reproduces the issue:
[Repo that reproduces the issue](https://github.com/kpes/electron5attachquitcrash)
```sh
$ git clone https://github.com/kpes/electron5attachquitcrash.git
$ npm install
```
|
https://github.com/electron/electron/issues/17996
|
https://github.com/electron/electron/pull/18028
|
4e5a0946c755910b98e8e0601a10b1532ec9cc53
|
67b3fbca891299dd710a2ced75e0d0609e6a370d
| 2019-04-27T02:24:35Z |
c++
| 2019-04-30T22:44:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,967 |
["docs/api/breaking-changes.md"]
|
Breaking 5.0 change: `process` is undefined when using `browserWindow.loadURL(url)`
|
### Issue Details
* **Electron Version:** 5.0.0
* **Operating System:** Ubuntu 18.10 (Cosmic Cuttlefish)
* **Last Known Working Electron version:**: ^3 and ^4
### Expected Behavior
`process` to be defined inside browser window
### Actual Behavior
`process` is undefined inside browser window
### To Reproduce
`app.html`
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>console.log(process)</script>
</body>
</html>
```
`main.js`
```js
const { app, BrowserWindow } = require('electron')
app.on('ready', () =>
Promise.resolve().then(() => {
let mainWindow = new BrowserWindow({
contextIsolation: false,
nodeIntegration: true,
webviewTag: true,
})
mainWindow.loadURL(`file://${__dirname}/app.html`)
mainWindow.on('closed', () => (mainWindow = null))
})
)
```
`package.json`
```json
{
"name": "elec-break-5",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"electron": "^5.0.0"
}
}
```
### Screenshots

### Additional Information
This is working in v^3 and v^4, but causes issues in v5. Nor have there been any depreciation warnings in v4 and nothing is referenced in [breaking changes](https://github.com/electron/electron/blob/master/docs/api/breaking-changes.md#planned-breaking-api-changes-50)
|
https://github.com/electron/electron/issues/17967
|
https://github.com/electron/electron/pull/17971
|
d673865881291a1f7c7f6ab4d414ceedce5b4c25
|
84212b8e8b1b1f969ee3986b05109ff65e96df3d
| 2019-04-25T17:16:18Z |
c++
| 2019-04-26T20:30:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,956 |
["docs/api/protocol.md"]
|
Documentation for `protocol` refers to removed `registerStandardSchemes` API
|
* [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
Although `protocol.registerStandardSchemes` [was removed in 5.0.0](https://github.com/electron/electron/blob/master/docs/api/breaking-changes.md#privileged-schemes-registration) there are still references to it (/suggestions to use it) in the documentation. For example, [`docs/api/protocol.md`](https://github.com/electron/electron/blob/ea6641afe55ca88df31761789462a999e5814a1e/docs/api/protocol.md) mentions it in these places:
In ["Using protocol with a custom partition or session" section](https://github.com/electron/electron/blob/ea6641afe55ca88df31761789462a999e5814a1e/docs/api/protocol.md#using-protocol-with-a-custom-partition-or-session):
> Using **`protocol.registerStandardSchemes`** without the session will still register your custom protocol as a standard scheme.
In [`protocol.registerFileProtocol(scheme, handler[, completion])` section](https://github.com/electron/electron/blob/ea6641afe55ca88df31761789462a999e5814a1e/docs/api/protocol.md#protocolregisterfileprotocolscheme-handler-completion):
> By default the scheme is treated like http:, which is parsed differently than protocols that follow the "generic URI syntax" like file:, so you probably want to call **`protocol.registerStandardSchemes`** to have your scheme treated as a standard scheme.
It also is mentioned in the ["Methods" section](https://github.com/electron/electron/blob/ea6641afe55ca88df31761789462a999e5814a1e/docs/api/protocol.md#methods), but that's OK because referring to migration from old functions. :heavy_check_mark:
### Expected Behavior
I think those two lines quoted above should be removed to avoid confusion.
|
https://github.com/electron/electron/issues/17956
|
https://github.com/electron/electron/pull/17959
|
075b818a8e658aeff91089f08472b5c8f9878247
|
e1acfffaf8a6d67d237e345627ecdb9c98215ff8
| 2019-04-24T20:47:01Z |
c++
| 2019-04-25T22:56:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,942 |
["patches/chromium/.patches", "patches/chromium/chore_add_debounce_on_the_updatewebcontentsvisibility_method_to.patch"]
|
v5.0.0: white flicker during Mission Control transitions and workspace transitions
|
### Issue Details
* **Electron Version:**
* all beta versions in 5.0.x
* **Operating System:**
* macOS 10.13 and 10.14
* **Last Known Working Electron version:**
* 4.1.4
### Expected Behavior
During Mission Control transitions or workspace transitions, the window should not flicker. See the right window in the screenshot
### Actual Behavior
During Mission Control transitions or workspace transitions, the whole window flickers white. See the left window in the screenshot
### Screenshots
left version is 5.0.0-beta.9, right version is 4.1.4

see more in [this video](https://youtu.be/1ERkxTIKk6E)
|
https://github.com/electron/electron/issues/17942
|
https://github.com/electron/electron/pull/18661
|
00d18917d09f13f549be355ea3fc703dc035c520
|
0146cc0eb5d4236ba93f171824123799edb642d2
| 2019-04-24T08:51:58Z |
c++
| 2019-06-19T19:51:25Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,937 |
["lib/browser/desktop-capturer.ts", "shell/browser/api/atom_api_desktop_capturer.cc"]
|
desktopCapturer.getSources with 'screen' causes binocular icon on lock screen
|
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4.1.3
* **Operating System:**
* macOS 10.14.4
* **Last Known Working Electron version:**:
* None.
### Expected Behavior
A call to `desktopCapturer.getSources( { types: [ 'screen'] })` should not cause the OS to show the binoculars icon when the user locks the screen, this icon should only be shown when the screen is being recorded.
As far as I know this icon is used to show that the user is recording a screen. [Here](https://macreports.com/binoculars-icon-on-mac-what-does-that-mean/) is explained this icon.
### Actual Behavior
Calling `desktopCapturer.getSources( { types: [ 'screen'] })` causes the binoculars icon to be shown to the user when he locks the PC, even when the screen is not being recorded in any other way. The icon isn't shown when the PC is unlocked, only when the PC is locked, until the users closes the electron app that made the call.
This doesn't happen when `desktopCapturer.getSources({ types: 'window' })` is called.
### To Reproduce
Clone this repository
```
git clone https://github.com/electron/electron-quick-start
npm install
npm start
```
Then, in the `renderer.js` file, put:
```
const { desktopCapturer } = require('electron');
desktopCapturer.getSources( { types: [ 'screen'] }, (error, sources) => {
if (error) throw error
for (let i = 0; i < sources.length; ++i) {
console.log('source: ' + sources[i].name);
}
});
```
Finally, while keeping the app opened, lock your screen and you will notice on the login screen the binoculars icon, even though there aren't any apps recording the screen. This icon will be seen on your lock screen as long as you have the electron app opened.
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
<img width="1412" alt="Screen Shot 2019-04-23 at 18 01 18" src="https://user-images.githubusercontent.com/4340899/56621413-fac13300-65f1-11e9-8d8d-a27a53c3e8af.png">
|
https://github.com/electron/electron/issues/17937
|
https://github.com/electron/electron/pull/20156
|
42999f42f206f1acd0d0aa8be23fdc7fc0f8cf6f
|
d2a94e6b1374809fdcda9bbf41fa16dfd56848c8
| 2019-04-24T01:57:22Z |
c++
| 2019-09-17T16:48:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,785 |
["docs/api/native-image.md"]
|
nativeImage.createFromNamedImage returns nothing
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4.1.4
* **Operating System:**
* MacOS 10.14.4
* **Last Known Working Electron version:**:
* n/a
### Expected Behavior
`createFromNamedImage` to return the image name passed as a string, in this case "NSImageNameFolder".
### Actual Behavior
`createFromNamedImage` returns no image data.
### To Reproduce
Here is a repo showing the issue:
https://github.com/erikjalevik/electron-retina-nativeimage-bugs
Instructions:
```
git clone [email protected]:erikjalevik/electron-retina-nativeimage-bugs.git
npm install
npm run start
```
The third section of the page shows the non-existent image under "nativeImage.createFromNamedImage".
### Screenshots
<img width="475" alt="Screenshot 2019-04-15 at 13 53 52" src="https://user-images.githubusercontent.com/8722592/56130703-ef349300-5f85-11e9-8c97-89e082cf1294.png">
|
https://github.com/electron/electron/issues/17785
|
https://github.com/electron/electron/pull/17826
|
829050daabbf029427504b79b3456b84be14cbfa
|
f1ee35e281a7ceae2fbee1773ebdde8e2e023bed
| 2019-04-15T11:54:53Z |
c++
| 2019-04-17T22:06:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,758 |
["atom/browser/notifications/mac/cocoa_notification.mm"]
|
Crash on macOS when clearing notifications manually on exit
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4.1.0
* **Operating System:**
* macOS 10.14.3 / 10.14.4
* **Last Known Working Electron version:**:
* dont know
### Expected Behavior
App quits without crashing
### Actual Behavior
On some cases when quitting the app on macOS it crashes.
### To Reproduce
no specific repro steps yet... trying to find out more info. It's not systematic as I tried to reproduce at least 100 times with no problem. I've also tried upgrading to 4.1.4 in case bugfixes between 4.1.0 and 4.1.4 will fix this issue but reading the release notes i doubt it.
### Crash report
<details>
```
Process: My App [7842]
Path: /Users/USER/Library/Application Support/fake/My App.app/Contents/MacOS/My App
Identifier: com.my.app
Version: 1.8.0-5744 (1.8.0-5744.5744)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: My App [7842]
User ID: 501
Date/Time: 2019-04-01 14:18:36.371 +0200
OS Version: Mac OS X 10.14.4 (18E226)
Report Version: 12
Anonymous UUID: 1ADC0B18-FD8C-A7FA-F780-70435EC49509
Time Awake Since Boot: 16000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [7842]
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 Electron Framework 0x00000001015bf3e1 0x101373000 + 2409441
1 Electron Framework 0x00000001015f2bc1 0x101373000 + 2620353
2 Electron Framework 0x0000000101413978 atom::AtomBrowserClient::AppendExtraCommandLineSwitches(base::CommandLine*, int) + 184
3 Electron Framework 0x0000000101b1252d 0x101373000 + 7992621
4 Electron Framework 0x0000000101b101a8 0x101373000 + 7983528
5 Electron Framework 0x0000000101b01f84 0x101373000 + 7925636
6 Electron Framework 0x0000000101afe16a 0x101373000 + 7909738
7 Electron Framework 0x0000000101afdca6 0x101373000 + 7908518
8 Electron Framework 0x0000000101a4b7f9 0x101373000 + 7178233
9 Electron Framework 0x0000000101a4c1b5 0x101373000 + 7180725
10 Electron Framework 0x0000000101a34b57 0x101373000 + 7084887
11 Electron Framework 0x0000000101a30a23 0x101373000 + 7068195
12 Electron Framework 0x0000000101a31783 0x101373000 + 7071619
13 Electron Framework 0x00000001013e2b7c atom::api::WebContents::LoadURL(GURL const&, mate::Dictionary const&) + 860
14 Electron Framework 0x0000000101388e31 0x101373000 + 89649
15 Electron Framework 0x0000000101388e0c 0x101373000 + 89612
16 Electron Framework 0x0000000101399592 0x101373000 + 157074
17 Electron Framework 0x00000001013f10ad base::internal::Invoker<base::internal::BindState<void (atom::api::WebContents::*)(GURL const&, mate::Dictionary const&)>, void (atom::api::WebContents*, GURL const&, mate::Dictionary const&)>::Run(base::internal::BindStateBase*, atom::api::WebContents*&&, GURL const&, mate::Dictionary const&) + 29
18 Electron Framework 0x00000001013994bc 0x101373000 + 156860
19 Electron Framework 0x00000001013f0e96 0x101373000 + 515734
20 Electron Framework 0x00000001013f0d45 mate::internal::Dispatcher<void (atom::api::WebContents*, GURL const&, mate::Dictionary const&)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 133
21 libnode.dylib 0x000000010628a8b1 0x105e13000 + 4683953
22 libnode.dylib 0x0000000106340b83 0x105e13000 + 5430147
23 libnode.dylib 0x00000001063401d3 0x105e13000 + 5427667
24 ??? 0x000030ec7a28463d 0 + 53792219874877
25 ??? 0x000030ec7a37474a 0 + 53792220858186
26 ??? 0x000030ec7a33f9ce 0 + 53792220641742
27 ??? 0x000030ec7a285d1b 0 + 53792219880731
28 ??? 0x000030ec7a37511e 0 + 53792220860702
29 ??? 0x000030ec7a33f9ce 0 + 53792220641742
30 ??? 0x000030ec7a285d1b 0 + 53792219880731
31 ??? 0x000030ec7a39233c 0 + 53792220980028
32 ??? 0x000030ec7a33f9ce 0 + 53792220641742
33 ??? 0x000030ec7a375002 0 + 53792220860418
34 ??? 0x000030ec7a33f9ce 0 + 53792220641742
35 ??? 0x000030ec7a3094a8 0 + 53792220419240
36 ??? 0x000030ec7a33e479 0 + 53792220636281
37 ??? 0x000030ec7a28410d 0 + 53792219873549
38 libnode.dylib 0x00000001064f2d67 0x105e13000 + 7208295
39 libnode.dylib 0x00000001064f2f65 0x105e13000 + 7208805
40 libnode.dylib 0x00000001065f4f61 0x105e13000 + 8265569
41 libnode.dylib 0x00000001065f59f0 0x105e13000 + 8268272
42 libnode.dylib 0x00000001065f48ea 0x105e13000 + 8263914
43 libnode.dylib 0x0000000105ef64a6 node::InternalCallbackScope::Close() + 198
44 libnode.dylib 0x0000000105ef66ba node::InternalMakeCallback(node::Environment*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 138
45 libnode.dylib 0x0000000105ef687d node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 109
46 libnode.dylib 0x0000000105ef67fc node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*, node::async_context) + 92
47 libnode.dylib 0x0000000105efed55 0x105e13000 + 965973
48 libnode.dylib 0x0000000105fc7e64 0x105e13000 + 1789540
49 libnode.dylib 0x0000000105fc2fe0 uv_run + 160
50 Electron Framework 0x00000001014af35c atom::NodeBindings::UvRunOnce() + 172
51 Electron Framework 0x000000010140efaa 0x101373000 + 638890
52 Electron Framework 0x000000010140ef78 0x101373000 + 638840
53 Electron Framework 0x000000010140ef3c 0x101373000 + 638780
54 Electron Framework 0x00000001014af7b4 base::internal::Invoker<base::internal::BindState<void (atom::NodeBindings::*)(), base::WeakPtr<atom::NodeBindings> >, void ()>::Run(base::internal::BindStateBase*) + 20
55 Electron Framework 0x000000010163c492 0x101373000 + 2921618
56 Electron Framework 0x000000010160193b 0x101373000 + 2681147
57 Electron Framework 0x0000000101601d25 0x101373000 + 2682149
58 Electron Framework 0x0000000101601ff9 0x101373000 + 2682873
59 Electron Framework 0x000000010160559a 0x101373000 + 2696602
60 Electron Framework 0x00000001015b95ea 0x101373000 + 2385386
61 Electron Framework 0x0000000101604ebf 0x101373000 + 2694847
62 com.apple.CoreFoundation 0x00007fff391415e3 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
63 com.apple.CoreFoundation 0x00007fff39141589 __CFRunLoopDoSource0 + 108
64 com.apple.CoreFoundation 0x00007fff39124f3b __CFRunLoopDoSources0 + 195
65 com.apple.CoreFoundation 0x00007fff39124505 __CFRunLoopRun + 1189
66 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
67 com.apple.HIToolbox 0x00007fff384109db RunCurrentEventLoopInMode + 292
68 com.apple.HIToolbox 0x00007fff38410715 ReceiveNextEventCommon + 603
69 com.apple.HIToolbox 0x00007fff384104a6 _BlockUntilNextEventMatchingListInModeWithFilter + 64
70 com.apple.AppKit 0x00007fff367aaffb _DPSNextEvent + 965
71 com.apple.AppKit 0x00007fff367a9d93 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
72 com.apple.AppKit 0x00007fff367a3eb0 -[NSApplication run] + 699
73 Electron Framework 0x0000000101605dce 0x101373000 + 2698702
74 Electron Framework 0x00000001016047cc 0x101373000 + 2693068
75 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
76 Electron Framework 0x0000000101886def 0x101373000 + 5324271
77 Electron Framework 0x0000000101886c10 0x101373000 + 5323792
78 Electron Framework 0x0000000101889282 0x101373000 + 5333634
79 Electron Framework 0x0000000101882c6c 0x101373000 + 5307500
80 Electron Framework 0x00000001017cc060 0x101373000 + 4558944
81 Electron Framework 0x00000001033dd0f4 0x101373000 + 33988852
82 Electron Framework 0x00000001017cae74 0x101373000 + 4554356
83 Electron Framework 0x0000000101374e44 AtomMain + 68
84 My App 0x0000000101368f26 main + 38
85 libdyld.dylib 0x00007fff6559c3d5 start + 1
Thread 1:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105f48109 0x105e13000 + 1265929
4 libnode.dylib 0x0000000105f480fc 0x105e13000 + 1265916
5 libnode.dylib 0x0000000105f48044 0x105e13000 + 1265732
6 libnode.dylib 0x0000000105f47972 0x105e13000 + 1263986
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 2:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105f48109 0x105e13000 + 1265929
4 libnode.dylib 0x0000000105f480fc 0x105e13000 + 1265916
5 libnode.dylib 0x0000000105f48044 0x105e13000 + 1265732
6 libnode.dylib 0x0000000105f47972 0x105e13000 + 1263986
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105f48109 0x105e13000 + 1265929
4 libnode.dylib 0x0000000105f480fc 0x105e13000 + 1265916
5 libnode.dylib 0x0000000105f48044 0x105e13000 + 1265732
6 libnode.dylib 0x0000000105f47972 0x105e13000 + 1263986
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 4:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105fc1113 0x105e13000 + 1761555
4 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 5:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105fc1113 0x105e13000 + 1761555
4 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105fc1113 0x105e13000 + 1761555
4 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 libnode.dylib 0x0000000105fcd859 uv_cond_wait + 9
3 libnode.dylib 0x0000000105fc1113 0x105e13000 + 1761555
4 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 8:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff656d122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff656d176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3912513e __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff391246ac __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff3b37aa9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 Electron Framework 0x0000000101605c1e 0x101373000 + 2698270
7 Electron Framework 0x00000001016047cc 0x101373000 + 2693068
8 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
9 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
10 Electron Framework 0x000000010160f847 0x101373000 + 2738247
11 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
13 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 9:: DnsConfigService
0 libsystem_kernel.dylib 0x00007fff656d778e kevent + 10
1 Electron Framework 0x000000010166c349 0x101373000 + 3117897
2 Electron Framework 0x000000010166b4cd 0x101373000 + 3114189
3 Electron Framework 0x0000000101604610 0x101373000 + 2692624
4 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
5 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 10:: WorkerPool/38919
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101666eb6 0x101373000 + 3096246
4 Electron Framework 0x0000000101667348 0x101373000 + 3097416
5 Electron Framework 0x000000010160f847 0x101373000 + 2738247
6 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 11:: WorkerPool/24327
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101666eb6 0x101373000 + 3096246
4 Electron Framework 0x0000000101667348 0x101373000 + 3097416
5 Electron Framework 0x000000010160f847 0x101373000 + 2738247
6 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 12:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff656d2ef2 read + 10
1 Electron Framework 0x000000010141979f 0x101373000 + 681887
2 Electron Framework 0x000000010160f847 0x101373000 + 2738247
3 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
5 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 13:: TaskSchedulerServiceThread
0 libsystem_kernel.dylib 0x00007fff656d778e kevent + 10
1 Electron Framework 0x000000010166c349 0x101373000 + 3117897
2 Electron Framework 0x000000010166b4cd 0x101373000 + 3114189
3 Electron Framework 0x00000001016045f2 0x101373000 + 2692594
4 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
5 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 14:: TaskSchedulerBackgroundWorker0
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101664300 0x101373000 + 3085056
4 Electron Framework 0x0000000101664431 0x101373000 + 3085361
5 Electron Framework 0x000000010161e138 0x101373000 + 2797880
6 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
7 Electron Framework 0x000000010160f847 0x101373000 + 2738247
8 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 15:: TaskSchedulerBackgroundBlockingWorker0
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101664300 0x101373000 + 3085056
4 Electron Framework 0x0000000101664431 0x101373000 + 3085361
5 Electron Framework 0x000000010161e138 0x101373000 + 2797880
6 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
7 Electron Framework 0x000000010160f847 0x101373000 + 2738247
8 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 16:: TaskSchedulerForegroundWorker0
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101664300 0x101373000 + 3085056
4 Electron Framework 0x0000000101664431 0x101373000 + 3085361
5 Electron Framework 0x000000010161e138 0x101373000 + 2797880
6 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
7 Electron Framework 0x000000010160f847 0x101373000 + 2738247
8 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 17:: TaskSchedulerSingleThreadForegroundBlocking0
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e57a 0x101373000 + 2798970
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 18:: TaskSchedulerSingleThreadForegroundBlocking1
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e57a 0x101373000 + 2798970
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 19:: TaskSchedulerSingleThreadForegroundBlocking2
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e57a 0x101373000 + 2798970
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 20:: TaskSchedulerSingleThreadForegroundBlocking3
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 21:: TaskSchedulerSingleThreadForegroundBlocking4
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 22:: Chrome_IOThread
0 libsystem_kernel.dylib 0x00007fff656d778e kevent + 10
1 Electron Framework 0x000000010166c349 0x101373000 + 3117897
2 Electron Framework 0x000000010166b4cd 0x101373000 + 3114189
3 Electron Framework 0x00000001016044ce 0x101373000 + 2692302
4 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
5 Electron Framework 0x0000000101894a04 0x101373000 + 5380612
6 Electron Framework 0x0000000101894ac4 0x101373000 + 5380804
7 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
8 Electron Framework 0x000000010160f847 0x101373000 + 2738247
9 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
11 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 23:: CompositorTileWorker1/35075
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x0000000101766f18 0x101373000 + 4144920
3 Electron Framework 0x0000000101629dad 0x101373000 + 2846125
4 Electron Framework 0x000000010160f847 0x101373000 + 2738247
5 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 24:: AudioThread
0 libsystem_kernel.dylib 0x00007fff656d122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff656d176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3912513e __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff391246ac __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
5 Electron Framework 0x000000010160590f 0x101373000 + 2697487
6 Electron Framework 0x00000001016047cc 0x101373000 + 2693068
7 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
8 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
9 Electron Framework 0x000000010160f847 0x101373000 + 2738247
10 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
11 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
12 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 25:
0 libsystem_kernel.dylib 0x00007fff656d1266 semaphore_wait_trap + 10
1 libnode.dylib 0x0000000105fcd700 uv_sem_wait + 16
2 Electron Framework 0x00000001014af210 atom::NodeBindings::EmbedThreadRunner(void*) + 48
3 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
5 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 26:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff656d122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff656d176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3912513e __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff391246ac __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff3b37aa9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 Electron Framework 0x0000000101605c1e 0x101373000 + 2698270
7 Electron Framework 0x00000001016047cc 0x101373000 + 2693068
8 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
9 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
10 Electron Framework 0x000000010160f847 0x101373000 + 2738247
11 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
13 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 27:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff656d122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff656d176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3912513e __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff391246ac __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
5 com.apple.AppKit 0x00007fff367b2d1a _NSEventThread + 175
6 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
8 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 28:: TaskSchedulerForegroundBlockingWorker2
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d5a1 _pthread_cond_wait + 773
2 Electron Framework 0x00000001015be4eb 0x101373000 + 2405611
3 Electron Framework 0x0000000101664300 0x101373000 + 3085056
4 Electron Framework 0x0000000101664431 0x101373000 + 3085361
5 Electron Framework 0x000000010161e138 0x101373000 + 2797880
6 Electron Framework 0x000000010161e78b 0x101373000 + 2799499
7 Electron Framework 0x000000010160f847 0x101373000 + 2738247
8 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 29:: TaskSchedulerSingleThreadSharedForegroundBlocking5
0 libsystem_kernel.dylib 0x00007fff656d486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6578d56e _pthread_cond_wait + 722
2 Electron Framework 0x00000001016642de 0x101373000 + 3085022
3 Electron Framework 0x000000010166418f 0x101373000 + 3084687
4 Electron Framework 0x000000010161e12a 0x101373000 + 2797866
5 Electron Framework 0x000000010161e57a 0x101373000 + 2798970
6 Electron Framework 0x000000010160f847 0x101373000 + 2738247
7 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 30:: PowerSaveBlocker
0 libsystem_kernel.dylib 0x00007fff656d122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff656d176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3912513e __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff391246ac __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff39123e0e CFRunLoopRunSpecific + 455
5 Electron Framework 0x000000010160590f 0x101373000 + 2697487
6 Electron Framework 0x00000001016047cc 0x101373000 + 2693068
7 Electron Framework 0x000000010161ab83 0x101373000 + 2784131
8 Electron Framework 0x000000010163ec19 0x101373000 + 2931737
9 Electron Framework 0x000000010160f847 0x101373000 + 2738247
10 libsystem_pthread.dylib 0x00007fff6578a2eb _pthread_body + 126
11 libsystem_pthread.dylib 0x00007fff6578d249 _pthread_start + 66
12 libsystem_pthread.dylib 0x00007fff6578940d thread_start + 13
Thread 31:
0 libsystem_pthread.dylib 0x00007fff657893f0 start_wqthread + 0
Thread 32:
0 libsystem_pthread.dylib 0x00007fff657893f0 start_wqthread + 0
Thread 33:
0 libsystem_pthread.dylib 0x00007fff657893f0 start_wqthread + 0
Thread 34:
0 libsystem_pthread.dylib 0x00007fff657893f0 start_wqthread + 0
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007ffeee893140 rcx: 0x0000000000000020 rdx: 0xfffffffffffffff1
rdi: 0x0000000105949ef4 rsi: 0x00006000021681a0 rbp: 0x00007ffeee8930d0 rsp: 0x00007ffeee8930d0
r8: 0x00000000000130a8 r9: 0x00007fff98596048 r10: 0x00000001073a91b0 r11: 0x00001ffeec72b000
r12: 0x00007ffeee893140 r13: 0x00007ffeee8936b0 r14: 0x00007ffeee8936a8 r15: 0x00007ffeee8936a0
rip: 0x00000001015bf3e1 rfl: 0x0000000000000246 cr2: 0x00000001015f2250
Logical CPU: 2
Error Code: 0x00000000
Trap Number: 3
Binary Images:
0x101368000 - 0x101368ff7 +My App (0) <5D51F11B-3CC9-3193-BD67-27427F5B22BA> /Users/USER/Library/Application Support/fake/My App.app/Contents/MacOS/My App
0x101373000 - 0x105640f87 +Electron Framework (0) <AE9E0717-65CA-3899-A81E-07F65762684D> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x105cbc000 - 0x105cd7fff +Squirrel (0) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x105d04000 - 0x105d67ff7 +ReactiveCocoa (0) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x105de7000 - 0x105dfbfff +Mantle (0) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x105e13000 - 0x106c98fff +libnode.dylib (0) <4EC17B2F-B28D-387F-9A4C-65A300900188> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib
0x107335000 - 0x10739f6ef dyld (655.1.1) <F217F7F8-A795-3109-B77F-B1E2277F3E3B> /usr/lib/dyld
0x107400000 - 0x107670ff7 +libffmpeg.dylib (0) <3D844117-8548-3B74-99A7-86D7FE5177C9> /Users/USER/Library/Application Support/fake/My App.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x10c060000 - 0x10c064ffb com.apple.audio.AppleHDAHALPlugIn (282.54 - 282.54) <07890660-6F1C-3230-BB32-39A6B42BC0F4> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10cbd7000 - 0x10cbda047 libobjc-trampolines.dylib (756.2) <E0ADAED0-0649-399B-856E-29BA398C6433> /usr/lib/libobjc-trampolines.dylib
0x10de6f000 - 0x10e004fff com.apple.audio.units.Components (1.14 - 1.14) <37B4FB18-3557-332A-834B-8187B8F6E32A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x10e1a8000 - 0x10e1c5ff7 com.apple.cmio.DAL.AppleCamera (400.6.8 - AppleCameraDeviceAbstractionLayer-6.8.0) <78228D81-474F-39D8-85A0-A0883D8160BC> /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/MacOS/AppleCamera
0x10e1d0000 - 0x10e20afff com.apple.cmio.DAL.VDC-4 (810.0 - 193.200.13) <16E07C32-FC66-358C-BB3E-3E8C9F1BA9B1> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
0x10f579000 - 0x10f6a5fff com.apple.CMIOUnits (900.0 - 5025) <237C23C8-F8D0-3AF6-87B5-7FC598800223> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Contents/MacOS/CMIOUnits
0x10f6c9000 - 0x10f75cfff com.apple.CMIOBaseUnits (900.0 - 5025) <FBF69BFC-9DDF-3864-AF51-DDCC8CEBEEA2> /System/Library/Frameworks/CoreMediaIO.framework/Resources/BaseUnits/CMIOBaseUnits.bundle/Contents/MacOS/CMIOBaseUnits
0x7fff318bb000 - 0x7fff3194cff7 com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (12.8.38 - 12.0.8) <53E6DBFF-C6CC-3A01-BC3D-978D3FF8E154> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
0x7fff3500a000 - 0x7fff351aeff7 com.apple.GeForceMTLDriver (12.0.23 - 12.0.0) <A89BD862-86F1-3C80-B809-6286B2C7FB62> /System/Library/Extensions/GeForceMTLDriver.bundle/Contents/MacOS/GeForceMTLDriver
0x7fff351b4000 - 0x7fff3538eff7 com.apple.avfoundation (2.0 - 1546.25) <744B1F04-5F34-39F4-A594-34518CEA2421> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3538f000 - 0x7fff35454fff com.apple.audio.AVFAudio (1.0 - ???) <7F3AA3FD-9F0B-3714-8F05-7272CEC9E33B> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff3555c000 - 0x7fff3555cfff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff3555d000 - 0x7fff35573ff7 libCGInterfaces.dylib (506.22) <A3CDEEC3-42B0-3C6E-9CCE-465C472609CD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff35574000 - 0x7fff35c0dfef com.apple.vImage (8.1 - ???) <F9C4B95C-7BE9-30A4-98D4-FD9996EE5E81> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff35c0e000 - 0x7fff35e87ff3 libBLAS.dylib (1243.200.4) <F2B8340C-4147-3EE4-9BDF-1C259F9CB76E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff35e88000 - 0x7fff35efaffb libBNNS.dylib (38.250.1) <95A91B57-17B8-389F-B324-3AD42BBEA3E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff35efb000 - 0x7fff362a4ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff362a5000 - 0x7fff362bafeb libLinearAlgebra.dylib (1243.200.4) <BD6B8E28-C982-3002-868C-C96A18175030> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff362bb000 - 0x7fff362c0ff3 libQuadrature.dylib (3.200.2) <354D7970-0570-32E0-ABAE-222DAAF1F7A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff362c1000 - 0x7fff3633dff3 libSparse.dylib (79.200.5) <DCC01AE4-FC16-3C7B-9010-999411448164> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff3633e000 - 0x7fff36351fe3 libSparseBLAS.dylib (1243.200.4) <95B6FFFD-CDD5-3ABB-B862-6A86720DCD77> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff36352000 - 0x7fff36539ff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff3653a000 - 0x7fff365edff7 libvMisc.dylib (671.250.4) <41FB4684-9DC8-3C19-8E2D-3BB7E6F74AAA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff365ee000 - 0x7fff365eefff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff36790000 - 0x7fff37545fff com.apple.AppKit (6.9 - 1671.40.119) <0A857684-99C7-30A9-8E23-D3015C6B24A3> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff37597000 - 0x7fff37597fff com.apple.ApplicationServices (50.1 - 50.1) <E57E6BAC-3CA7-3EFB-9A6B-ACF662E07FAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff37598000 - 0x7fff37603fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <5B30E86D-B3AB-3346-A19F-F2CABF342465> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff3769c000 - 0x7fff377b3fff libFontParser.dylib (228.6.2.3) <BBB2EECE-7C24-3D43-A902-EB473A70EDED> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff377b4000 - 0x7fff377f6fff libFontRegistry.dylib (228.12.2.3) <DEA7AE34-2FA6-336E-BF00-00CA2BDC7584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff37850000 - 0x7fff37882fff libTrueTypeScaler.dylib (228.6.2.3) <8F2DA883-4A0E-389A-AB1D-C66FAA3B8E7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff378e7000 - 0x7fff378ebff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <6EDD928D-BC75-385E-AB04-3CB63EAEBF96> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff37986000 - 0x7fff379d8ff7 com.apple.HIServices (1.22 - 627.15) <1B4C3D08-1DBA-365B-9362-C6708D8844AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff379d9000 - 0x7fff379e8fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <76B698A9-18B9-3089-9570-4FC3F754D56D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff379e9000 - 0x7fff37a32ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) <885645E0-D760-35EC-B506-7FC2763390DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff37a33000 - 0x7fff37a6cff7 com.apple.QD (3.12 - 407.2) <A414332F-72EC-393B-B2BC-7285268A19BD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff37a6d000 - 0x7fff37a79fff com.apple.speech.synthesis.framework (8.1.2 - 8.1.2) <1F910DC7-410A-391B-A03D-17605E50B688> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff37a7a000 - 0x7fff37cf1ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1C76AD80-1106-312E-B2C0-126A8D62F192> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff37cf3000 - 0x7fff37cf3fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <6AFA15D5-1886-3EBF-ADC9-90421375DB30> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff3804b000 - 0x7fff383ecfff com.apple.CFNetwork (978.0.7 - 978.0.7) <EFB91439-6953-3CD4-8A14-3E7DC90DDF7E> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff38401000 - 0x7fff38401fff com.apple.Carbon (158 - 158) <080ECFD9-9C4B-3038-9F4B-BE111473E1DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff38402000 - 0x7fff38405ffb com.apple.CommonPanels (1.2.6 - 98) <D56205C5-F466-3B28-9FE3-5B5E1F1ECEF3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff38406000 - 0x7fff386fcfff com.apple.HIToolbox (2.1.1 - 918.4) <CBD6613A-C5A5-3CF3-866A-B8A8C6FD64B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff386fd000 - 0x7fff38700ff3 com.apple.help (1.3.8 - 66) <80B6EAF2-4745-3C04-AC10-4FC3EB08CB8D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff38701000 - 0x7fff38706ff7 com.apple.ImageCapture (9.0 - 1534.2) <B02BE202-793D-3609-8E60-694A39D75CD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff38707000 - 0x7fff3879cff3 com.apple.ink.framework (10.9 - 225) <091165EE-D540-3978-9B0C-2FAB5CB185A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff3879d000 - 0x7fff387b5ff7 com.apple.openscripting (1.7 - 179.1) <ED25E087-6A14-32E3-9344-3907541ED9A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff387d5000 - 0x7fff387d6ff7 com.apple.print.framework.Print (14.2 - 267.4) <3E310F68-2BC7-365B-B36C-AAC243C7FFC4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff387d7000 - 0x7fff387d9ff7 com.apple.securityhi (9.0 - 55006) <9A3E5426-CAC6-3B28-A3B7-C97A1B5CE9BC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff387da000 - 0x7fff387e0ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <E38A62C5-31EE-3BE7-83E5-CF126ECF4F51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff38902000 - 0x7fff38902fff com.apple.Cocoa (6.11 - 23) <C487E1FC-D79C-32B4-950E-68F3060A125E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff38910000 - 0x7fff389dcff7 com.apple.ColorSync (4.13.0 - 3340.7) <3ABFA780-F46A-3F0A-8504-005ADDA0662E> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff38b68000 - 0x7fff38beefff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <7D8A5C9A-3F58-38C2-A1DC-20765150C742> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff38c52000 - 0x7fff38c7cffb com.apple.CoreBluetooth (1.0 - 1) <D0C72748-F75A-3C27-9620-C7973C4D365D> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff38c7d000 - 0x7fff39001fe3 com.apple.CoreData (120 - 866.5) <7A8DBE88-C7D4-39B4-87E6-508DA68BDAA8> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff39002000 - 0x7fff390e9ff7 com.apple.CoreDisplay (101.3 - 108.11) <373AC375-0178-3721-8FFB-248D96E6AB05> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff390ea000 - 0x7fff3952dfff com.apple.CoreFoundation (6.9 - 1570.16) <F3DFF269-6705-35AD-9F01-66D77DD1B518> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff3952f000 - 0x7fff39bbefe7 com.apple.CoreGraphics (2.0 - 1251.12) <58D98B52-5BEF-3345-B8DD-AAE476234FC1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff39bc0000 - 0x7fff39ee0fff com.apple.CoreImage (14.2.0 - 720.0.130) <D09743D4-3B21-367D-8C4A-3DB0F1C1E36D> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff39f5a000 - 0x7fff39fb0ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <E853491F-E03C-33E0-A8BE-BDF49CA5EC1E> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x7fff39fb3000 - 0x7fff3a1dcfff com.apple.CoreML (1.0 - 1) <D30944E3-D088-3E6F-80BB-D42EA81083F5> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff3a1dd000 - 0x7fff3a2defff com.apple.CoreMedia (1.0 - 2286.48) <A521E22D-60AC-3048-8829-E430F6304B45> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff3a2df000 - 0x7fff3a33aff7 com.apple.CoreMediaIO (900.0 - 5025) <CA95EEF2-4A75-34FA-87D9-4A1A69555CFF> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff3a33b000 - 0x7fff3a33bfff com.apple.CoreServices (944.3 - 944.3) <364A9C3B-6841-3E34-A02A-8227FB5C9030> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff3a33c000 - 0x7fff3a3b8ff7 com.apple.AE (773 - 773) <3E32B3FF-0A2E-39F6-BBE0-F2E9607AB83A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff3a3b9000 - 0x7fff3a690fff com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) <B5B61DE0-93F8-3A9F-8AA6-ACAAD04B3547> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff3a691000 - 0x7fff3a6d9ff7 com.apple.DictionaryServices (1.2 - 284.16.3) <3EE59BD1-FCDD-3DE2-A7D6-6C503564E1AC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff3a6da000 - 0x7fff3a6e2ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <727151AB-D38F-39B8-B7B3-F0039DBD45D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff3a6e3000 - 0x7fff3a895fff com.apple.LaunchServices (944.3 - 944.3) <7BB5AEC5-A509-3188-9884-619E0DF8EED6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff3a896000 - 0x7fff3a934ff7 com.apple.Metadata (10.7.0 - 1191.56) <8DD9AC75-7D3E-3607-BEA0-556E98C30765> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff3a935000 - 0x7fff3a97fff7 com.apple.CoreServices.OSServices (944.3 - 944.3) <B631283D-9B71-3BF0-B0E7-65F8D444179F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff3a980000 - 0x7fff3a9e7ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <FB1A5F99-FB2F-3533-9658-EB0C82BA2705> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff3a9e8000 - 0x7fff3aa09ff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) <B8B5D959-4236-369D-847D-E696A8293420> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff3ad14000 - 0x7fff3ae76ff3 com.apple.CoreText (352.0 - 584.26.2.7) <C7E919A8-5840-39C9-A9E7-0E686F486109> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff3ae77000 - 0x7fff3aeb4ff3 com.apple.CoreVideo (1.8 - 0.0) <0376A7EC-8C71-3F26-9599-4CA7AB7924EA> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff3aeb5000 - 0x7fff3af43ffb com.apple.framework.CoreWLAN (13.0 - 1370.8) <68770CCD-9C7F-31AB-8BBB-0DE4577D5F61> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff3b0c6000 - 0x7fff3b174fff com.apple.DiscRecording (9.0.3 - 9030.4.5) <FE0C27DF-5E03-3C3C-A6C6-73010390E805> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff3b19a000 - 0x7fff3b19fffb com.apple.DiskArbitration (2.7 - 2.7) <F30DF62A-0BE9-371D-8D86-96554FF45811> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff3b35e000 - 0x7fff3b70bff3 com.apple.Foundation (6.9 - 1570.16) <84055403-9921-3EFC-B593-8F0600EBEE80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff3b77a000 - 0x7fff3b7a9ffb com.apple.GSS (4.0 - 2.0) <F5E9FADD-D2DF-3A27-A08B-C74C9F7DB98D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff3b7aa000 - 0x7fff3b7c3ff3 com.apple.GameController (1.0 - 1) <C1D012D8-15C6-377F-9C14-D8DD8883F153> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff3b8a9000 - 0x7fff3b9b1ff7 com.apple.Bluetooth (6.0.11 - 6.0.11f4) <D695F37C-27CE-3231-8136-49124F367418> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff3ba13000 - 0x7fff3baa2fff com.apple.framework.IOKit (2.0.2 - 1483.250.15) <1170EC49-1912-3657-9C71-991653959191> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff3baa4000 - 0x7fff3bab3ff3 com.apple.IOSurface (255.4.2 - 255.4.2) <9025E034-7D75-36E3-B71B-96E91FAE109B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff3bab4000 - 0x7fff3bb06ff3 com.apple.ImageCaptureCore (1.0 - 1534.2) <59655185-CDD6-3F8F-A655-C274BDD1C9E9> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff3bb07000 - 0x7fff3bc92fef com.apple.ImageIO.framework (3.3.0 - 1824.6) <81BA6C12-123A-3FD8-9E88-0698100471A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff3bc93000 - 0x7fff3bc97ffb libGIF.dylib (1824.6) <4B7B283B-84C8-38D1-BED4-B507C3EF6E7E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff3bc98000 - 0x7fff3bd74fef libJP2.dylib (1824.6) <E2161CB0-E1B7-351D-9FF3-4CF68A538976> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff3bd75000 - 0x7fff3bd9afeb libJPEG.dylib (1824.6) <0968BAF1-5E5A-3AA0-A971-3B3FFC4A4B66> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff3c05d000 - 0x7fff3c083feb libPng.dylib (1824.6) <661821A6-4BF5-31C6-AFDB-7874A446756C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff3c084000 - 0x7fff3c086ffb libRadiance.dylib (1824.6) <0154D539-DF89-3F75-A8F1-92EF147422AF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff3c087000 - 0x7fff3c0d4fe7 libTIFF.dylib (1824.6) <D608EAA9-4159-347E-A449-0A8CAB85DC02> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff3c3cf000 - 0x7fff3d232fff com.apple.JavaScriptCore (14607 - 14607.1.40.1.4) <D4D58ED1-1325-3FA0-AD7B-7C944D36D35B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff3d24a000 - 0x7fff3d263fff com.apple.Kerberos (3.0 - 1) <39F3F99E-036E-3406-80D9-8A845D820D4D> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff3d51c000 - 0x7fff3d526fff com.apple.MediaAccessibility (1.0 - 114.4) <FD877F9B-6CAF-3BCD-8D74-5F25D61CB78C> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff3d5d5000 - 0x7fff3dc75fff com.apple.MediaToolbox (1.0 - 2286.48) <D6125E51-598A-3A1E-9C75-4BDC5AC03F55> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff3dc77000 - 0x7fff3dd06ff7 com.apple.Metal (161.7.1 - 161.7.1) <18BEB663-0D31-3255-9710-50BC5C3D2A0F> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff3dd08000 - 0x7fff3dd21ff3 com.apple.MetalKit (1.0 - 113) <6EE8B7C8-A088-3CFF-A570-E0D5C0D5EFAC> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff3dd22000 - 0x7fff3dd41ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <BE0FF8B9-2DBA-3276-A293-C8B0F62BFFC4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff3dd42000 - 0x7fff3ddbefe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <7E94924C-1648-3AE2-A32E-FC0AFCA433C6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff3ddbf000 - 0x7fff3dde6fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E878F04A-43F8-3AA4-B9D8-0401F5F98653> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff3dde7000 - 0x7fff3df12ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <4866922C-9732-3FCE-9419-402E5DD22639> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff3df13000 - 0x7fff3df2dfff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <80CB3AF2-4401-3B3C-8941-7DEB648DD001> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff3df2e000 - 0x7fff3df2fff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <A589BBEA-93C6-325C-A695-6E7371B8477C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff3ed26000 - 0x7fff3ed32ff7 com.apple.NetFS (6.0 - 4.0) <7278E8E5-1583-3964-91DA-FB2127DFD63A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff417d0000 - 0x7fff41827ff7 com.apple.opencl (2.15.3 - 2.15.3) <F558A6A7-3B33-320E-83C0-CF16220A150F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff41828000 - 0x7fff41843ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <386A02AB-0BFA-3847-A56A-2E0EEC5E5D33> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff41844000 - 0x7fff4184fffb com.apple.OpenDirectory (10.14 - 207.200.4) <0BD19D17-7F00-3D56-8734-2EE52992B118> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff4219f000 - 0x7fff421a1fff libCVMSPluginSupport.dylib (17.5.4) <36EB7FAE-4E66-36BF-9B39-623B19486B3B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff421a2000 - 0x7fff421a7ff3 libCoreFSCache.dylib (166.2) <1AD45004-2625-3351-8087-77878B95348F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff421a8000 - 0x7fff421acfff libCoreVMClient.dylib (166.2) <E7FBDAEF-BC56-3662-8D59-71FF88D95F8C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff421ad000 - 0x7fff421b5ff7 libGFXShared.dylib (17.5.4) <E3B4FD28-FF4B-3174-AEB3-9EA12EF88100> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff421b6000 - 0x7fff421c1fff libGL.dylib (17.5.4) <F6D39828-B5D0-3F8D-8DE0-3683A17042E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff421c2000 - 0x7fff421fcfe7 libGLImage.dylib (17.5.4) <7EE3273C-41C2-387F-A4B7-793EFAA67769> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff42370000 - 0x7fff423aefff libGLU.dylib (17.5.4) <B56C2FEC-CB14-3B61-ADEB-FD4A92931F16> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff42d4b000 - 0x7fff42d5affb com.apple.opengl (17.5.4 - 17.5.4) <34FA5E8C-0FAF-3708-836B-E8ACB67EF4F4> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff430d5000 - 0x7fff4321eff7 com.apple.QTKit (7.7.3 - 3039) <64E46C0B-C0B2-3255-9278-7FA90752B474> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff4321f000 - 0x7fff43473fff com.apple.imageKit (3.0 - 1067) <42C1AB59-562B-3966-82A6-8380A6CD03C6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff43474000 - 0x7fff43560ffb com.apple.PDFKit (1.0 - 741.11) <6431D029-59E3-3C2A-90C0-FD1355316F09> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff43561000 - 0x7fff43a30ff7 com.apple.QuartzComposer (5.1 - 370) <1F431ABC-16D3-3C0C-A027-5B83D1EC160D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff43a31000 - 0x7fff43a57ff7 com.apple.quartzfilters (1.10.0 - 83.1) <0A29F81A-20DD-36A1-B61A-93B677220B84> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff43a58000 - 0x7fff43b59ff7 com.apple.QuickLookUIFramework (5.0 - 775.5) <2AF16EB8-E39D-3144-A92B-932894734962> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff43b5a000 - 0x7fff43b5afff com.apple.quartzframework (1.5 - 23) <30D153F2-A275-320E-B3CC-2A47FFEB5920> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff43b5b000 - 0x7fff43db0fff com.apple.QuartzCore (1.11 - 697.24.4.2) <BB1034F0-B791-3AF1-B166-6532B2AB54FE> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff43db1000 - 0x7fff43e08fff com.apple.QuickLookFramework (5.0 - 775.5) <3B6CF250-5DB7-36A0-9E57-33734DD66148> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff43fcf000 - 0x7fff43fe6ff7 com.apple.SafariServices.framework (14607 - 14607.1.40.1.4) <1D4D4939-DC6A-367C-A019-02294E13BA48> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff445e4000 - 0x7fff448e2ff7 com.apple.security (7.0 - 58286.251.4) <2084C515-AD64-3A48-BE3E-811CAA5A0E41> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff448e3000 - 0x7fff4496ffff com.apple.securityfoundation (6.0 - 55185.251.1) <4A36D3BA-02B5-3C52-8B49-08EC290E1924> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff44970000 - 0x7fff449a0ffb com.apple.securityinterface (10.0 - 55109.200.8) <89019DE6-FC90-3947-9298-8D2B06D7C413> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff449a1000 - 0x7fff449a5ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <139D85D7-C356-36FA-B8F4-696FD37FD1EA> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff44bf3000 - 0x7fff44c09ffb com.apple.StoreKit (1.0 - 1) <5F85D7AF-AD00-3179-8642-7562B83D4B61> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x7fff44d3d000 - 0x7fff44daafff com.apple.SystemConfiguration (1.17 - 1.17) <90F4626B-F9F6-377C-AA62-B8C23E857244> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff45000000 - 0x7fff4535cff7 com.apple.VideoToolbox (1.0 - 2286.48) <94A89B19-17C5-3085-8179-E832730B51C6> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff481bf000 - 0x7fff48264fe7 com.apple.APFS (1.0 - 1) <BA5A03A1-09AF-3859-AA38-BD24C4225E23> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff48c64000 - 0x7fff48c65ff7 com.apple.AggregateDictionary (1.0 - 1) <49B5FD7F-A50C-3D67-BFAB-1C25E60F685A> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff4901c000 - 0x7fff4915ffff com.apple.AnnotationKit (1.0 - 232.3.30) <83E8D694-3564-389A-AADB-37AD6C91EC9B> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff4925f000 - 0x7fff4928bff7 com.apple.framework.Apple80211 (13.0 - 1376.3) <9D32EF36-80E0-35DA-9270-2865C91F1020> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff49563000 - 0x7fff49572fc7 com.apple.AppleFSCompression (96.200.3 - 1.0) <5D6A617C-999A-3D51-8350-109D55E9428A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff4966c000 - 0x7fff49677fff com.apple.AppleIDAuthSupport (1.0 - 1) <91975ABC-B2EB-3630-A81E-69A1B95E4D19> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff496b8000 - 0x7fff49701ff3 com.apple.AppleJPEG (1.0 - 1) <EED8C42F-AF5B-355F-BC86-66A6458513C7> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff49955000 - 0x7fff49977fff com.apple.applesauce (1.0 - ???) <48562D0B-1A1D-3D62-8BC2-61C55D0DCECE> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff49a37000 - 0x7fff49a3aff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <38206770-87AF-3969-A393-2741BF0DC958> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff49a3b000 - 0x7fff49a8bff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) <30C1F5C1-0742-3863-95F1-FCE51DF97E2D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff49ad6000 - 0x7fff49aeaffb com.apple.AssertionServices (1.0 - 1) <F64A3177-294E-320C-A0E1-25C4322B98E9> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff49eb5000 - 0x7fff4a152ff7 com.apple.AuthKit (1.0 - 1) <5BC0D7C7-A46A-3B1A-BDC9-7E9150B5A876> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff4a314000 - 0x7fff4a31cfff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <7F48D9BD-17A8-3A76-8828-EC49245735EE> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff4a31d000 - 0x7fff4a3b2fff com.apple.backup.framework (1.10.4 - ???) <8247B1BE-DF97-31DC-BCC2-1A15797352D3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff4a3b3000 - 0x7fff4a420fff com.apple.BaseBoard (360.27 - 360.27) <215A242E-BD57-3A4B-BCA4-FCC9D674CE7B> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff4a429000 - 0x7fff4a42ffff com.apple.BezelServicesFW (317 - 317) <0C78843F-B503-372D-BA43-9A437E88D760> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff4b27e000 - 0x7fff4b2cdff7 com.apple.ChunkingLibrary (201 - 201) <08B75C80-CAA3-3128-BE6C-A1FA3A52A79B> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff4c085000 - 0x7fff4c08effb com.apple.CommonAuth (4.0 - 2.0) <55CEF8E6-A659-3D68-BEE0-1236F36E494C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff4c527000 - 0x7fff4c90afef com.apple.CoreAUC (274.0.0 - 274.0.0) <C78A44FB-53CD-324C-B363-9425B5269F7D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff4c90b000 - 0x7fff4c939ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <C7A64576-B082-323A-AC02-E890C6DDF181> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff4c9cf000 - 0x7fff4ca2aff3 com.apple.corebrightness (1.0 - 1) <BB3CA5C7-75AB-3B22-BB78-6F10935688AB> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff4cd64000 - 0x7fff4cd75ff7 com.apple.CoreEmoji (1.0 - 69.19.9) <90ACD3F0-1542-3094-A1F6-FF2F508A8561> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff4cf1d000 - 0x7fff4d00cfff com.apple.CoreHandwriting (161 - 1.2) <7E01C62F-F8C2-3F21-B1E2-A048CF6FFC16> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff4d1de000 - 0x7fff4d1f4ffb com.apple.CoreMediaAuthoring (2.2 - 958) <4C69C07C-73D1-3E5A-A8E1-3C5856A65D9A> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff4d31e000 - 0x7fff4d384ff7 com.apple.CoreNLP (1.0 - 130.15.22) <5191A681-5DF3-359A-B401-C29109EA420A> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff4d4f0000 - 0x7fff4d57cfff com.apple.CorePDF (4.0 - 414) <D87D2FD6-871F-3EC6-BB19-9719A37E3B27> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff4d631000 - 0x7fff4d639ff7 com.apple.CorePhoneNumbers (1.0 - 1) <01CAC5E2-B6B1-3444-8939-595A9301399C> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff4d7b5000 - 0x7fff4d7e6ff3 com.apple.CoreServicesInternal (358 - 358) <7DD35528-033B-3B59-AAF2-5BFAF449D915> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff4dbac000 - 0x7fff4dc30fff com.apple.CoreSymbolication (10.2 - 64490.25.1) <CBA82F08-26CC-3FB4-9539-B0B55B35C5E1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff4dcbf000 - 0x7fff4ddeaff7 com.apple.coreui (2.1 - 499.10) <50A90628-5400-3EBC-A1FE-87D68BC59377> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff4ddeb000 - 0x7fff4df87ffb com.apple.CoreUtils (5.7.6 - 576.49) <60FF6102-EEBB-302E-8DE4-6DCBB689ACC8> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff4dfdb000 - 0x7fff4e03eff7 com.apple.framework.CoreWiFi (13.0 - 1370.8) <F8634D22-1AD4-36B0-848C-BA60CC88BDAE> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff4e03f000 - 0x7fff4e050ff7 com.apple.CrashReporterSupport (10.13 - 938.25) <AB842AE0-8594-3530-ABB7-30E583F82FC5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff4e0df000 - 0x7fff4e0eefff com.apple.framework.DFRFoundation (1.0 - 211.1) <201CCA68-44E4-3E09-8604-7D8833AC803B> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff4e0ef000 - 0x7fff4e0f3fff com.apple.DSExternalDisplay (3.1 - 380) <6AC4F805-7AAF-31D3-B614-C78B61907EE3> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff4e174000 - 0x7fff4e1e9ff3 com.apple.datadetectorscore (7.0 - 590.24) <2A591F27-0FEE-3CE1-B6C3-7A3B56C9D18D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff4e235000 - 0x7fff4e272ff7 com.apple.DebugSymbols (190 - 190) <F2269F7B-5FCC-3187-8F13-A15F2C9D21E5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff4e273000 - 0x7fff4e3aefff com.apple.desktopservices (1.13.1 - ???) <420CC09F-7C18-3644-A024-DA8997FECA02> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff4e5ba000 - 0x7fff4e680fff com.apple.DiskManagement (12.1 - 1555) <14459C59-D53A-3C24-94CC-D60CD1749FDB> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff4e681000 - 0x7fff4e685ffb com.apple.DisplayServicesFW (3.1 - 380) <B1F53D09-C299-31AA-962E-9A132ABB03B3> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff4e72a000 - 0x7fff4e72dff3 com.apple.EFILogin (2.0 - 2) <B25F3D52-70FC-3F71-8B77-E23D7514D8FF> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff4ee63000 - 0x7fff4f145ff7 com.apple.vision.EspressoFramework (1.0 - 120) <606AFD0D-D2DF-335C-915D-87A862C46765> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff4f2c0000 - 0x7fff4f2e8fff com.apple.FWAVC (501.47 - 47) <AAAA2B06-B615-3B68-A170-DA03169B82B6> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
0x7fff4f2e9000 - 0x7fff4f704fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <D642D5E1-C7C5-3EBF-9D0A-397BDE2A5723> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff52fb8000 - 0x7fff52fb9fff libmetal_timestamp.dylib (902.3.2) <E4C0B5C2-AFAE-3DAD-8638-9D972E13F27C> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff54659000 - 0x7fff5465efff com.apple.GPUWrangler (3.30.14 - 3.30.14) <5D15F5B8-9D7B-356D-A224-A86CF809BFBF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff549eb000 - 0x7fff54a0fff3 com.apple.GenerationalStorage (2.0 - 285.101) <E4F747EB-7D8B-39ED-B72E-C323C201B6E1> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff55463000 - 0x7fff55472fff com.apple.GraphVisualizer (1.0 - 5) <C261C18C-C66F-39BA-A640-727434ADBEB7> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff555bf000 - 0x7fff55633ffb com.apple.Heimdal (4.0 - 2.0) <05B753FE-8F65-3764-8E18-F31902064BA1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff55634000 - 0x7fff55662fff com.apple.HelpData (2.3 - 184.4) <37EC79E3-5D56-3733-856C-5DB46CC9453B> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff5691d000 - 0x7fff56924ffb com.apple.IOAccelerator (404.8 - 404.8) <FB11472D-74D7-31D4-8DF6-9A668BB08D4F> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff56928000 - 0x7fff56940fff com.apple.IOPresentment (1.0 - 42.6) <B3365E07-6FC3-3AAA-884D-D6EE7ACDAE16> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff56ce8000 - 0x7fff56d15ff7 com.apple.IconServices (379 - 379) <189807AC-4BB1-3C37-B6EC-D4F0B645902D> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff56e3e000 - 0x7fff56e42ffb com.apple.InternationalSupport (1.0 - 10.15.6) <ADB2A56E-5E99-312A-B3B0-E96B519E46B1> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff56fa7000 - 0x7fff56fb9ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <731EEEC5-1613-3725-B33C-B38BBD55FA96> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff56fd4000 - 0x7fff570afff7 com.apple.LanguageModeling (1.0 - 159.15.15) <229A8E92-CCB6-3BC7-BCD3-B2309FA744B3> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff570b0000 - 0x7fff570ecff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <30D3EEF3-31E5-3DE8-8158-40627C358AF6> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff570f3000 - 0x7fff570f8fff com.apple.LinguisticData (1.0 - 238.24.1) <E155D8DF-8AC1-34B2-B143-BBD3408C8D19> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff57915000 - 0x7fff57918fff com.apple.Mangrove (1.0 - 25) <FF682E43-73CE-3E36-B4A9-8E69B546C7A4> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff5799f000 - 0x7fff579c5ff3 com.apple.MarkupUI (1.0 - 232.3.30) <BC364ADF-8725-37AE-B946-D8BB6260C044> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff57a2d000 - 0x7fff57a60ff7 com.apple.MediaKit (16 - 906) <D9B33C2A-706E-3A7C-90D1-D78EA4EFF871> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff57de7000 - 0x7fff57e0fff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.56) <550876F2-D905-3D65-8FA6-3366D857437B> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff57e10000 - 0x7fff57e9afff com.apple.gpusw.MetalTools (1.0 - 1) <09394594-A80D-3D8B-99E8-E71693909FA1> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff58045000 - 0x7fff5805ffff com.apple.MobileKeyBag (2.0 - 1.0) <A38DB402-7EB2-3D81-A9FA-4C95748FFC2D> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff58071000 - 0x7fff580e6fff com.apple.Montreal (1.0 - 42.15.9) <84278E37-0BA4-32D2-BAA4-49D84831588D> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff580e7000 - 0x7fff58111ffb com.apple.MultitouchSupport.framework (2440.7 - 2440.7) <FAE48832-BB56-35C9-B433-F0D03EF50FCD> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff5834d000 - 0x7fff58357fff com.apple.NetAuth (6.2 - 6.2) <216DF366-7A3E-39E7-896C-7CDFD2A9BD3D> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff58bb8000 - 0x7fff58c09ff3 com.apple.OTSVG (1.0 - ???) <AF7D1285-08EE-3EEB-B8B7-6C358768473D> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff59bc9000 - 0x7fff59cbcfff com.apple.PencilKit (1.0 - 1) <EB69AD79-DB9B-30D8-9207-BDDBB34900D7> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff59cbd000 - 0x7fff59cccff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) <DAF9D379-F0E9-3929-829E-7B2FAFC7DC64> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff5bb07000 - 0x7fff5bb5bff7 com.apple.ProtectedCloudStorage (1.0 - 1) <7EEE25C8-2680-32E1-9B4F-F76684E92BE1> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff5bb5c000 - 0x7fff5bb7aff7 com.apple.ProtocolBuffer (1 - 263) <DBBA73C9-E9AE-3CF5-88A4-7E4262BDE34E> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff5bcf8000 - 0x7fff5bcfbff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <8C160EB3-161F-3F35-9D10-C06403BC31F1> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff5bcfc000 - 0x7fff5bd11ff3 com.apple.QuickLookThumbnailing (1.0 - 1) <2A637CF5-E50A-3016-88CB-F03F32662886> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff5bd12000 - 0x7fff5bd62fff com.apple.ROCKit (27.6 - 27.6) <A8116AFC-F78F-32BF-A66C-ED3B5E9FF1D9> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff5be91000 - 0x7fff5be9cfff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.251.2) <937941A3-23E9-3DB4-B934-C8002EF1179D> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff5beaf000 - 0x7fff5bed1fff com.apple.RemoteViewServices (2.0 - 128) <E22D4E74-7B87-31ED-86D2-D63258D1B792> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff5bed2000 - 0x7fff5bee5ff3 com.apple.xpc.RemoteXPC (1.0 - 1336.251.2) <45A2C9B1-787E-3BF8-AFB8-375822FC6AF4> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff5d6d0000 - 0x7fff5d7eafff com.apple.Sharing (1288.25 - 1288.25) <E4C2CE6D-757D-322F-AA8D-52A0993E02D6> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff5d7eb000 - 0x7fff5d80affb com.apple.shortcut (2.16 - 101) <087A0F80-1818-3D93-A9D5-942F94C26D8E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff5e592000 - 0x7fff5e83bfff com.apple.SkyLight (1.600.0 - 340.9) <A962D996-6561-3993-B470-EFD6EE4BFA9C> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff5efdd000 - 0x7fff5efe9fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <08222836-F14B-3B9D-BCB9-3167505438E4> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff5f73a000 - 0x7fff5f7c5fc7 com.apple.Symbolication (10.2 - 64490.38.1) <15A1DF22-3EE2-359A-8F94-B27F89F35ECE> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff5fc9c000 - 0x7fff5fca7ff7 com.apple.private.SystemPolicy (1.0 - 1) <7E43EFF3-41AC-3AF2-A2FD-1AE013FF32E6> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff5fcac000 - 0x7fff5fcb8ffb com.apple.TCC (1.0 - 1) <95D4B7DF-78F3-3948-AA63-6425AF2C00CD> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff5ff1e000 - 0x7fff5ffe6ff3 com.apple.TextureIO (3.8.4 - 3.8.1) <29383676-6133-3EB4-8CAC-5A6F25FE2F4D> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff600a3000 - 0x7fff60259ff7 com.apple.UIFoundation (1.0 - 551) <5359E30D-AF76-3013-8B50-0A93DB97BB8F> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff60ed5000 - 0x7fff60faefff com.apple.ViewBridge (401.1 - 401.1) <4DAA256D-F443-3484-AB8B-BFD939790E1D> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff61785000 - 0x7fff61788fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.46.2) <7763C799-CE25-302D-96D7-2A4DD9BEEE9A> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff61b89000 - 0x7fff61b8bffb com.apple.loginsupport (1.0 - 1) <F9C63D6B-5191-3D95-B5C7-B998FA148AA6> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff61e52000 - 0x7fff61e86fff libCRFSuite.dylib (41.15.4) <43D02A64-2A7B-3825-8097-A6747AF914EE> /usr/lib/libCRFSuite.dylib
0x7fff61e89000 - 0x7fff61e93ff7 libChineseTokenizer.dylib (28.15.3) <BE41A678-907E-3031-B2BA-ECDB81282499> /usr/lib/libChineseTokenizer.dylib
0x7fff61e94000 - 0x7fff61f1dfff libCoreStorage.dylib (546.50.1) <1950AEDB-8782-39C9-9477-CB43ECB0EB38> /usr/lib/libCoreStorage.dylib
0x7fff61f21000 - 0x7fff61f22ffb libDiagnosticMessagesClient.dylib (107) <B5675E8C-2F34-3E0A-B7E8-6F2373589038> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff61f59000 - 0x7fff621b0ffb libFosl_dynamic.dylib (18.3.2) <C46C13F6-2799-39A0-BB32-126C2259194A> /usr/lib/libFosl_dynamic.dylib
0x7fff621d0000 - 0x7fff621d7fff libMatch.1.dylib (31.200.1) <895AE4DA-69EF-30E8-82B3-1229B90C3E3D> /usr/lib/libMatch.1.dylib
0x7fff62201000 - 0x7fff6221ffff libMobileGestalt.dylib (645.250.13) <6B4E26AD-D712-360B-904C-877C24D89393> /usr/lib/libMobileGestalt.dylib
0x7fff62220000 - 0x7fff62220fff libOpenScriptingUtil.dylib (179.1) <5C6CFA80-CBCD-35EB-A69C-72C3B2E8FF50> /usr/lib/libOpenScriptingUtil.dylib
0x7fff62360000 - 0x7fff62361ffb libSystem.B.dylib (1252.250.1) <72841192-B0C9-36A0-8E55-ED651EADEF08> /usr/lib/libSystem.B.dylib
0x7fff623dd000 - 0x7fff623defff libThaiTokenizer.dylib (2.15.1) <3D80A800-D49A-305E-9DF0-E6FB11D4FD65> /usr/lib/libThaiTokenizer.dylib
0x7fff623f0000 - 0x7fff62406ffb libapple_nghttp2.dylib (1.24.1) <96F6DF29-D31C-3097-9C3E-63B1D62D756C> /usr/lib/libapple_nghttp2.dylib
0x7fff62407000 - 0x7fff62430ffb libarchive.2.dylib (54.250.1) <D6370CDB-920D-37A3-A9C0-6C1FC95F2F99> /usr/lib/libarchive.2.dylib
0x7fff62431000 - 0x7fff624b0fff libate.dylib (1.13.8) <D4150381-557F-3E9D-9119-ED4F2A8878A1> /usr/lib/libate.dylib
0x7fff624b4000 - 0x7fff624b4ff3 libauto.dylib (187) <4E260A46-13BB-3A8F-A037-D89748837B2A> /usr/lib/libauto.dylib
0x7fff62584000 - 0x7fff62594ffb libbsm.0.dylib (39.200.18) <CF0C09D6-FCED-3B48-A617-768A0B5B9DEB> /usr/lib/libbsm.0.dylib
0x7fff62595000 - 0x7fff625a2fff libbz2.1.0.dylib (38.200.3) <62019AC3-20C9-3DDC-9C83-189C1F258073> /usr/lib/libbz2.1.0.dylib
0x7fff625a3000 - 0x7fff625f6ff7 libc++.1.dylib (400.9.4) <446DAE5E-4E97-3E4B-B2A3-AC0A74C0E453> /usr/lib/libc++.1.dylib
0x7fff625f7000 - 0x7fff6260cff7 libc++abi.dylib (400.17) <A2D1FDAD-E10F-3E53-958F-CB6BC8485767> /usr/lib/libc++abi.dylib
0x7fff6260d000 - 0x7fff6260dff3 libcharset.1.dylib (51.200.6) <0D3A5F4C-8800-33E3-AFE5-307E8BEE462C> /usr/lib/libcharset.1.dylib
0x7fff6260e000 - 0x7fff6261effb libcmph.dylib (6.15.1) <740A788E-FD92-36F3-B678-E7D510B1E2A1> /usr/lib/libcmph.dylib
0x7fff6261f000 - 0x7fff62637ffb libcompression.dylib (52.250.2) <9E125D43-CE4E-34F8-ACBA-C0835E5F8062> /usr/lib/libcompression.dylib
0x7fff628ac000 - 0x7fff628c2fff libcoretls.dylib (155.220.1) <FF7EA01E-9A26-36F9-A6FF-9665B501B536> /usr/lib/libcoretls.dylib
0x7fff628c3000 - 0x7fff628c4ff3 libcoretls_cfhelpers.dylib (155.220.1) <51572EB9-D154-348B-9934-3CA9444FAE5E> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff62f23000 - 0x7fff62f2eff7 libcsfde.dylib (546.50.1) <D8EFD854-C2D1-3FF8-A910-A9E602A5BB79> /usr/lib/libcsfde.dylib
0x7fff62f36000 - 0x7fff62f8cff7 libcups.2.dylib (462.10) <83EF6851-07F6-35B4-AA80-690EF026C706> /usr/lib/libcups.2.dylib
0x7fff630c0000 - 0x7fff630c0fff libenergytrace.dylib (17.200.1) <F0A35E72-B772-359B-81AC-0C94B8A621CA> /usr/lib/libenergytrace.dylib
0x7fff630c1000 - 0x7fff630daffb libexpat.1.dylib (16.1.1) <E614130E-8794-31EC-9434-837434962616> /usr/lib/libexpat.1.dylib
0x7fff630f2000 - 0x7fff630f7ff7 libgermantok.dylib (17.15.2) <A78E0BF5-0038-35C7-A8E7-05AEDF86D6D5> /usr/lib/libgermantok.dylib
0x7fff630f8000 - 0x7fff630fdff7 libheimdal-asn1.dylib (520.250.1) <DE1C4650-FDFE-3A31-98AD-597B57C947E5> /usr/lib/libheimdal-asn1.dylib
0x7fff63128000 - 0x7fff63218fff libiconv.2.dylib (51.200.6) <E767B418-3531-3BB0-B58D-9ECB203407B7> /usr/lib/libiconv.2.dylib
0x7fff63219000 - 0x7fff63479ff3 libicucore.A.dylib (62123.0.1) <3936C798-1978-3C6C-9050-3BBD57CDA53E> /usr/lib/libicucore.A.dylib
0x7fff634c6000 - 0x7fff634c7fff liblangid.dylib (128.15.1) <1ED2EB78-3891-3DBA-8CB7-BA1A100CFC8F> /usr/lib/liblangid.dylib
0x7fff634c8000 - 0x7fff634e0ff3 liblzma.5.dylib (10.200.3) <E6CA9433-904B-3804-82FF-B328E2047368> /usr/lib/liblzma.5.dylib
0x7fff634f8000 - 0x7fff6359cff7 libmecab.1.0.0.dylib (779.24.1) <0C57BF6E-A713-3AE8-8AD3-80F65D4CCC15> /usr/lib/libmecab.1.0.0.dylib
0x7fff6359d000 - 0x7fff637a1fff libmecabra.dylib (779.24.1) <A658B79D-4071-3EC1-9344-ADA438E43FB4> /usr/lib/libmecabra.dylib
0x7fff63979000 - 0x7fff63ccaff7 libnetwork.dylib (1229.250.15) <D8F52B1D-1AD9-3D33-8D59-2D631A3CBFEC> /usr/lib/libnetwork.dylib
0x7fff63d5a000 - 0x7fff644dffdf libobjc.A.dylib (756.2) <4F86FC7C-496B-3E68-8A74-1EA2BA22FBCC> /usr/lib/libobjc.A.dylib
0x7fff644f1000 - 0x7fff644f5ffb libpam.2.dylib (22.200.1) <3AEB13DB-8DE2-3FD9-97D5-D9DB206E0693> /usr/lib/libpam.2.dylib
0x7fff644f8000 - 0x7fff6452dfff libpcap.A.dylib (79.250.1) <FA490ABF-6C15-336A-818F-0C14A8C090DB> /usr/lib/libpcap.A.dylib
0x7fff64646000 - 0x7fff6465effb libresolv.9.dylib (65.200.2) <DB6CA331-BB44-306D-8528-023EADE54BF7> /usr/lib/libresolv.9.dylib
0x7fff64660000 - 0x7fff6469bff3 libsandbox.1.dylib (851.250.12) <0A18B79B-4551-3D97-AC49-04E5373DC587> /usr/lib/libsandbox.1.dylib
0x7fff646af000 - 0x7fff646b0ff7 libspindump.dylib (267.3) <47B91C83-6BE6-3B0B-8B42-83AE41160F3F> /usr/lib/libspindump.dylib
0x7fff646b1000 - 0x7fff6488efe7 libsqlite3.dylib (274.22) <378D7B48-4661-3BA6-AC55-0B3A64F8C7E3> /usr/lib/libsqlite3.dylib
0x7fff64b0e000 - 0x7fff64b11ff7 libutil.dylib (51.200.4) <336F9184-A739-3770-ACFA-4659DFEEACC4> /usr/lib/libutil.dylib
0x7fff64b12000 - 0x7fff64b1ffff libxar.1.dylib (417.1) <D7AC80EE-D974-33E6-ACA7-87B398ACEDD7> /usr/lib/libxar.1.dylib
0x7fff64b24000 - 0x7fff64c06ff3 libxml2.2.dylib (32.8) <064C2F49-C054-38F9-A6B2-032C4AC9738B> /usr/lib/libxml2.2.dylib
0x7fff64c07000 - 0x7fff64c2fff3 libxslt.1.dylib (16.1) <FB93A727-731D-313F-AF6B-4518FE830FFB> /usr/lib/libxslt.1.dylib
0x7fff64c30000 - 0x7fff64c42ff7 libz.1.dylib (70.200.4) <FDF169F3-F992-3E8E-B3F7-D4134FEBAE41> /usr/lib/libz.1.dylib
0x7fff6541f000 - 0x7fff65423ff3 libcache.dylib (81) <9A8C27B0-49C9-337F-8BE2-37171ED2D8EE> /usr/lib/system/libcache.dylib
0x7fff65424000 - 0x7fff6542eff3 libcommonCrypto.dylib (60118.250.2) <17C4F395-9FF0-331F-8167-5E85AA3588E9> /usr/lib/system/libcommonCrypto.dylib
0x7fff6542f000 - 0x7fff65436ff7 libcompiler_rt.dylib (63.4) <8CB2B2B6-2C55-3733-9842-0E037AE3F46A> /usr/lib/system/libcompiler_rt.dylib
0x7fff65437000 - 0x7fff65440ff7 libcopyfile.dylib (146.250.1) <24905E41-9E2F-3DD1-A255-5A17F9FCDAD7> /usr/lib/system/libcopyfile.dylib
0x7fff65441000 - 0x7fff654c5fc7 libcorecrypto.dylib (602.250.23) <3A6CBD41-AFFE-3E06-B1EC-3E95BC79BAC5> /usr/lib/system/libcorecrypto.dylib
0x7fff6554c000 - 0x7fff65585ff7 libdispatch.dylib (1008.250.7) <50235FCE-B399-3319-90DC-88F530D4FC5C> /usr/lib/system/libdispatch.dylib
0x7fff65586000 - 0x7fff655b2ff7 libdyld.dylib (655.1.1) <54C6B494-4A3D-3EEC-B083-636A76AAD649> /usr/lib/system/libdyld.dylib
0x7fff655b3000 - 0x7fff655b3ffb libkeymgr.dylib (30) <BEA04E04-FCF1-3A70-810F-08D0FF54CA36> /usr/lib/system/libkeymgr.dylib
0x7fff655b4000 - 0x7fff655c0ff3 libkxld.dylib (4903.251.3) <649F5829-6AA8-32EE-9A33-B1244378C319> /usr/lib/system/libkxld.dylib
0x7fff655c1000 - 0x7fff655c1ff7 liblaunch.dylib (1336.251.2) <30E6424E-4640-3DBA-9B64-D5F725263C6E> /usr/lib/system/liblaunch.dylib
0x7fff655c2000 - 0x7fff655c7fff libmacho.dylib (927.0.2) <D8515A20-ED7B-3B13-9ADA-4BD7E19E38C4> /usr/lib/system/libmacho.dylib
0x7fff655c8000 - 0x7fff655caffb libquarantine.dylib (86.220.1) <8A9BF971-DB7D-311A-B131-6C5025E82F8F> /usr/lib/system/libquarantine.dylib
0x7fff655cb000 - 0x7fff655ccff7 libremovefile.dylib (45.200.2) <950036B7-B91E-3B5D-853C-8C551E5B6A32> /usr/lib/system/libremovefile.dylib
0x7fff655cd000 - 0x7fff655e4ff3 libsystem_asl.dylib (356.200.4) <16F632AD-FADA-3DE9-85E8-EBC7D619A1DA> /usr/lib/system/libsystem_asl.dylib
0x7fff655e5000 - 0x7fff655e5ff7 libsystem_blocks.dylib (73) <0CD6861B-EC5F-3345-9C24-B21EEB85E44F> /usr/lib/system/libsystem_blocks.dylib
0x7fff655e6000 - 0x7fff6566dfff libsystem_c.dylib (1272.250.1) <F3AA9047-EEDD-3D80-8CC1-023FB312EC8B> /usr/lib/system/libsystem_c.dylib
0x7fff6566e000 - 0x7fff65671ffb libsystem_configuration.dylib (963.250.1) <02C7A973-014A-31D7-B7D2-247D384CB0D2> /usr/lib/system/libsystem_configuration.dylib
0x7fff65672000 - 0x7fff65675ff7 libsystem_coreservices.dylib (66) <4CF1C89B-FA6C-3DF3-B1F8-79F549849534> /usr/lib/system/libsystem_coreservices.dylib
0x7fff65676000 - 0x7fff6567cfff libsystem_darwin.dylib (1272.250.1) <6983A268-20F4-3F98-A3F5-D63848933B02> /usr/lib/system/libsystem_darwin.dylib
0x7fff6567d000 - 0x7fff65683ff7 libsystem_dnssd.dylib (878.250.4) <9FC5724C-DD03-3E14-A6E1-2DD009D79E0A> /usr/lib/system/libsystem_dnssd.dylib
0x7fff65684000 - 0x7fff656cfffb libsystem_info.dylib (517.200.9) <F617D3CF-5A4A-36D0-8CBB-4A7C7CDB67AF> /usr/lib/system/libsystem_info.dylib
0x7fff656d0000 - 0x7fff656f8ff7 libsystem_kernel.dylib (4903.251.3) <84EF0290-6CB5-36E5-A273-692A7E437B36> /usr/lib/system/libsystem_kernel.dylib
0x7fff656f9000 - 0x7fff65744ff7 libsystem_m.dylib (3158.200.7) <33105665-CCC3-36D5-82C9-9B21730CB3DF> /usr/lib/system/libsystem_m.dylib
0x7fff65745000 - 0x7fff65769fff libsystem_malloc.dylib (166.251.2) <90DA09E3-1276-3FCF-8F5F-C9AA61AB9B6D> /usr/lib/system/libsystem_malloc.dylib
0x7fff6576a000 - 0x7fff65774ff7 libsystem_networkextension.dylib (767.250.2) <4575D797-B793-3D18-9E93-8696CF0B133B> /usr/lib/system/libsystem_networkextension.dylib
0x7fff65775000 - 0x7fff6577cfff libsystem_notify.dylib (172.200.21) <679E9132-1A46-326E-9A11-D3FF9C86041C> /usr/lib/system/libsystem_notify.dylib
0x7fff6577d000 - 0x7fff65786fef libsystem_platform.dylib (177.250.1) <3CC59141-5365-3848-94C3-D65E6FCA1E74> /usr/lib/system/libsystem_platform.dylib
0x7fff65787000 - 0x7fff65791ff7 libsystem_pthread.dylib (330.250.2) <4344198A-A1A3-3C52-97B4-F168D56E9789> /usr/lib/system/libsystem_pthread.dylib
0x7fff65792000 - 0x7fff65795ff7 libsystem_sandbox.dylib (851.250.12) <66E91015-F62A-3365-BB81-AA88707E8F12> /usr/lib/system/libsystem_sandbox.dylib
0x7fff65796000 - 0x7fff65798ff3 libsystem_secinit.dylib (30.220.1) <F054DCB0-68CE-35E7-8B8C-D648C42124EC> /usr/lib/system/libsystem_secinit.dylib
0x7fff65799000 - 0x7fff657a0ff3 libsystem_symptoms.dylib (820.257.1) <C8517F35-E9DA-3649-B07D-2B38349C6730> /usr/lib/system/libsystem_symptoms.dylib
0x7fff657a1000 - 0x7fff657b6fff libsystem_trace.dylib (906.250.5) <AE77ACC7-488F-3AE1-BB0C-1ACFC7E1CE77> /usr/lib/system/libsystem_trace.dylib
0x7fff657b8000 - 0x7fff657bdffb libunwind.dylib (35.4) <8F0BC197-B97C-3DDC-92B0-6A7D3CB72FD8> /usr/lib/system/libunwind.dylib
0x7fff657be000 - 0x7fff657edff7 libxpc.dylib (1336.251.2) <49138829-09C8-355C-B558-97E070B84EC5> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 11012
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=525.0M resident=0K(0%) swapped_out_or_unallocated=525.0M(100%)
Writable regions: Total=859.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=859.1M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 384K 3
Activity Tracing 256K 1
CG backing stores 1664K 6
CG image 52K 7
CoreAnimation 64K 10
CoreGraphics 8K 1
CoreImage 32K 4
CoreUI image data 592K 11
CoreUI image file 324K 4
Foundation 4K 1
IOKit 7940K 1
Kernel Alloc Once 12K 2
MALLOC 218.8M 58
MALLOC guard page 32K 7
MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)
Memory Tag 242 12K 1
Memory Tag 251 12K 1
Memory Tag 255 540.5M 90
STACK GUARD 56.1M 35
Stack 220.8M 35
VM_ALLOCATE 14.2M 24
__DATA 37.8M 314
__FONT_DATA 4K 1
__LINKEDIT 228.5M 16
__TEXT 296.4M 312
__UNICODE 564K 1
mapped file 70.3M 38
shared memory 696K 16
=========== ======= =======
TOTAL 2.0G 1001
TOTAL, minus reserved VM space 1.7G 1001
```
</details>
|
https://github.com/electron/electron/issues/17758
|
https://github.com/electron/electron/pull/17796
|
b7b9efa875f5e63dd182247909629c37c68d8788
|
9c3315c416af405cc5fd195398f4778375b51844
| 2019-04-11T12:09:32Z |
c++
| 2019-04-16T18:38:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,754 |
["atom/browser/atom_download_manager_delegate.cc"]
|
File name not shown in save dialog in Electron 5
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:** 5.0.0-beta.8
* **Operating System:** macOS 10.13.6
* **Last Known Working Electron version:**: 4.1.4
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
The file name should be shown in the save dialog, as it is in Electron 4:
<img width="798" src="https://user-images.githubusercontent.com/10314059/55932619-0f63fb00-5bf0-11e9-852e-7c9ecf22ed70.png">
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
No file name is shown:
<img width="797" src="https://user-images.githubusercontent.com/10314059/55932632-1985f980-5bf0-11e9-99f7-bb058a0a0134.png">
(Also, the dialog is attached to the window in Electron 5 but not 4, I'm not sure whether that's expected or not).
### To Reproduce
Create a link to a download in `index.html`:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<a href="https://github.com/electron/electron/releases/download/v5.0.0-beta.8/electron-v5.0.0-beta.8-win32-x64.zip">download link</a>
</body>
</html>
```
|
https://github.com/electron/electron/issues/17754
|
https://github.com/electron/electron/pull/17773
|
258d337cf8a5ec3e2a5fbe0e391513f8e4a7d42e
|
82a076855b73a63cf1ba10d7a91a949d8b4d7f45
| 2019-04-11T05:26:02Z |
c++
| 2019-04-15T18:11:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,746 |
["docs/api/crash-reporter.md"]
|
Documentation on the crash reporter seems wrong for extra parameter lenght
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 4.1.4
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> macOS and Windows 10
* **Last Known Working Electron version:**:
* <!-- (if applicable) e.g. 3.1.0 -->
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. --> According to documentation, I was expecting to have extra parameters limited to 63 characters.
### Actual Behavior
<!-- A clear and concise description of what actually happened. --> When adding extra parameters to crash reporter, the corresponding values are limited to 63 characters only on windows and seem to have no limit on MAC
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
On Mac extra parameters are stored like this:
```
extra_history_1:
'{"eventType":"CRASH_REPORTER","eventData":"started","date":"2019-04-10T16:45:35.963Z"}',
extra_history_2:
'{"eventType":"WINDOW_WEB_CONTENTS","eventData":"unresponsive","date":"2019-04-10T16:48:13.267Z"}'
```
On Window they are stored like this:
```
extra_history_1:
'{"eventType":"CRASH_REPORTER","eventData":"started","date":"201',
extra_history_2:
'{"eventType":"WINDOW_WEB_CONTENTS","eventData":"unresponsive","d'
```
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/17746
|
https://github.com/electron/electron/pull/18386
|
43f8a7ef00d2c80f7a9f4899552453d944d3bf99
|
01cd6e7a066ce46ab8ade06548c224797da4f79b
| 2019-04-10T17:04:16Z |
c++
| 2019-05-28T17:17:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,732 |
["atom/browser/api/atom_api_app.cc", "atom/browser/api/atom_api_app.h", "atom/browser/api/atom_api_app_mac.mm", "atom/browser/atom_browser_main_parts.cc", "atom/browser/atom_browser_main_parts.h", "atom/browser/atom_browser_main_parts_mac.mm", "docs/api/app.md", "filenames.gni"]
|
Ability to disable creation of logs directory
|
Hey guys. We are keeping our logs in a different path (not using the electron's one) and we are wondering if there is some flag to disable creation of this folder.
Thanks in advance :)
|
https://github.com/electron/electron/issues/17732
|
https://github.com/electron/electron/pull/17841
|
841e31b7e63c9eddabc5f2cf0b89a46dbf545b02
|
0749dc4cc1bc4bfd4b9aa27ec51d72007d67d699
| 2019-04-09T08:36:08Z |
c++
| 2019-04-19T05:04:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,697 |
["atom/browser/api/atom_api_app.cc", "atom/browser/browser.h", "atom/browser/browser_win.cc", "atom/browser/ui/win/jump_list.cc", "atom/browser/ui/win/jump_list.h", "docs/api/structures/jump-list-item.md", "docs/api/structures/task.md", "spec/ts-smoke/electron/main.ts"]
|
Can't set working directory in setUserTasks/setJumpList
|
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* all (according to docs), tested in 2.0.18 & 4.1.3
* **Operating System:**
* Windows
### Expected Behavior
To be able to set the working directory for applications started from the windows jump list
### Actual Behavior
It defaults to c:\windows\system32
### To Reproduce
Not really anything to do to reproduce, just look at the documentation, the parameter isn't there:
https://electronjs.org/docs/api/structures/task
https://electronjs.org/docs/api/structures/jump-list-item
### Additional Information
I'm not entirely sure you will agree that this is a bug but afaict the api seems to replicate what the underlying windows api provides so I assume it's an oversight that this parameter in particular is missing - especially considering how problematic it can be for applications to have c:\windows\system32 as their cwd.
|
https://github.com/electron/electron/issues/17697
|
https://github.com/electron/electron/pull/18148
|
326215e1f199b7ca282e3aeee48769d99c706a67
|
3a5e6f25512e434cb53b081599fe13c5590e23a1
| 2019-04-04T14:53:37Z |
c++
| 2019-05-13T16:17:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,652 |
["atom/browser/ui/views/root_view.cc"]
|
(Crash) Electron crashes if setMenuBarVisibility to false and pressing Alt key
|
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->v5.0.0-beta.7
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> Windows 10
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Electron app should not crash when toggling `Alt` key when `setMenuBarVisibility(false)`
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
Electron app crashes when `Alt` key is pressed
### To Reproduce
```sh
$ git clone https://github.com/KiranNiranjan/electron-quick-start.git -b crash
$ npm install
$ npm start || electron .
```
When the app finishes loading press the `Alt` and the app crashes
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->

### Additional Information
<!-- Add any other context about the problem here. -->
Looks similary to the following issue -> https://github.com/electron/electron/pull/17474
|
https://github.com/electron/electron/issues/17652
|
https://github.com/electron/electron/pull/17766
|
748632d655cf793478b2ebcac2ecad64b077daa6
|
258d337cf8a5ec3e2a5fbe0e391513f8e4a7d42e
| 2019-04-02T07:24:11Z |
c++
| 2019-04-15T17:54:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,648 |
["spec-main/index.js", "spec/static/index.html"]
|
Spec runner fails with confusing exception if 0 tests are run
|
Spec runner throws a confusing exception if no tests are selected by `--grep` (as at 75442b7, current master at time of writing).
To repro:
```
$ npm test -- -g "atseouhnaeohtsduidhtaieuthdeuain"
1..0
# tests 0
# pass 0
# fail 0
Unhandled exception in main spec runner: ReferenceError: Cannot access 'runner' before initialization
at /Users/nornagon/work/electron-bootstrap/src/electron/spec-main/index.js:87:20
```
cc @MarshallOfSound
|
https://github.com/electron/electron/issues/17648
|
https://github.com/electron/electron/pull/17664
|
dc4fe537ee173dbcef089135aed0e8b67828675f
|
59e31642060896e5649f1aeb9c70802e35908cae
| 2019-04-02T01:01:10Z |
c++
| 2019-04-03T01:25:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,622 |
["atom/browser/api/atom_api_tray.cc", "spec/api-tray-spec.js"]
|
API tray.destroy is not working
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 4.0.4
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> Ubuntu 18.10 x64
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Observed in Zulip desktop app
1. ```tray.destroy()``` api should destroy tray icon in panel
2. ```show app tray icon``` option in general setting, it should destroy and create tray icon on toggle
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
Previous tray icon are not destroy on toggle and new icon created i.e ```tray.destroy``` API is not working

### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.--->
```
$ git clone https://github.com/zulip/zulip-electron
$ cd zulip-electron
$ npm install
$ npm start
```
you can find code in ``` zulip-electron/app/renderer/js/tray.js ```
```
function toggleTray() {
let state;
if (window.tray) {
state = false;
window.tray.destroy();
if (window.tray.isDestroyed()) {
window.tray = null;
}
ConfigUtil.setConfigItem('trayIcon', false);
} else {
state = true;
createTray();
if (process.platform === 'linux' || process.platform === 'win32') {
renderNativeImage(unread).then(image => {
window.tray.setImage(image);
window.tray.setToolTip(unread + ' unread messages');
});
}
ConfigUtil.setConfigItem('trayIcon', true);
}
const selector = 'webview:not([class*=disabled])';
const webview = document.querySelector(selector);
const webContents = webview.getWebContents();
webContents.send('toggletray', state);
}
```
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->

|
https://github.com/electron/electron/issues/17622
|
https://github.com/electron/electron/pull/18196
|
8759e30f049edf18b9a18e29dd7b5d80fa3a6410
|
b3fcc080d5b6ab55630b930076f6a3690b7f2090
| 2019-03-30T13:38:50Z |
c++
| 2019-05-08T22:40:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,586 |
["atom/browser/api/atom_api_web_contents.cc", "atom/renderer/atom_render_frame_observer.cc", "lib/browser/chrome-extension.js", "lib/renderer/chrome-api.ts"]
|
React Devtools can't connect in v5.0.0
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version: 5.0.0-beta.6**
* **Operating System: macOS Mojave**
* **Last Known Working Electron version: 4.0.0**
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
React Devtools 3.6.0 work well in Electron v5.0.0
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
Open BrowserWindow with url point to a react page ( in my case, react page has been created by create-react-app)
<!--
You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
<img width="804" alt="Screen Shot 2019-03-28 at 6 43 35 AM" src="https://user-images.githubusercontent.com/26106557/55119942-6a90ea80-5126-11e9-9ace-6859bbb64c02.png">
### Additional Information
Terminal output
```
Attempted to load extension "React Developer Tools" that has already been loaded.
2019-03-28 06:39:19.922 electron[26697:1164642] *** WARNING: Textured window <EventDispatchingWindow: 0x7fe65dca97d0> is getting an implicitly transparent titlebar. This will break when linking against newer SDKs. Use NSWindow's -titlebarAppearsTransparent=YES instead.
[26697:0328/063944.495011:ERROR:CONSOLE(19)] "Uncaught TypeError: chrome.tabs.create is not a function", source: chrome-extension://react-developer-tools/build/panel.js (19)
[26697:0328/064024.449538:ERROR:CONSOLE(28)] "failed to connect", source: chrome-extension://react-developer-tools/build/panel.js (28)
```
<!-- Add any other context about the problem here. -->
```
Uncaught TypeError: chrome.tabs.create is not a function
```
I guest have bug when support chrome api
Thanks.
|
https://github.com/electron/electron/issues/17586
|
https://github.com/electron/electron/pull/17614
|
d597a0e8b0121b54375412af3d8a4a9db60ba21a
|
75442b794fba206b2e693a0e0587d4f8f8ce8e86
| 2019-03-28T00:01:18Z |
c++
| 2019-03-31T00:36:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,576 |
["patches/chromium/frame_host_manager.patch", "shell/browser/atom_browser_client.cc", "shell/browser/atom_browser_client.h"]
|
Preload scripts can run twice in the same process in different node environments
|
### Issue Details
* **Electron Version:**
* 3.x, 4.x, 5.x, 6.x
* **Operating System:**
* All
* **Last Known Working Electron version:**:
* 2.x
### Expected Behavior
When navigations occur, a new process should be created for the navigation.
### Actual Behavior
When a navigation occurs _during_ a preloads scripts execution the same process is re-used as Chromium does not think the navigation has been committed yet. This causes a memory leak and all native node modules to break.
### To Reproduce
Fiddle: https://gist.github.com/MarshallOfSound/c89aa0037c3da114d44aa3a2d1a0fc24
### Screenshots

As you can see here there are three navigation loads, the second and the third one actually have the same process ID (and are running in the same process)
|
https://github.com/electron/electron/issues/17576
|
https://github.com/electron/electron/pull/18860
|
7a9e6659f080a948e0b70a1090647b85f461e24f
|
da29ce355f9a018ed7c528e5daaf0470fedaf965
| 2019-03-27T17:21:01Z |
c++
| 2019-08-08T18:48:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,564 |
["docs/api/cookies.md", "docs/api/structures/cookie.md"]
|
Cookie hostOnly property is not set to true when domain doesn't start with a leading '.'
|
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
v4.1.1 , v2.0.8
* **Operating System:**
MacOS Mojave 10.14.4
### Expected Behavior
hostOnly property should be set to true when the domain doesn't start with a leading '.'
### Actual Behavior
hostOnly property is set to false even when the domain doesn't start with a leading '.'
### To Reproduce
Case 1 : Set cookie with domain starting without a leading '.'
Case 2 : Set cookie with domain starting with a leading '.'
Cooke hostOnly property should be set to true in case of Case 1.
let electronSession = require('electron').remote.session.fromPartition("test");
let cookiesStore = electronSession.cookies;
cookiesStore.get({}, (err, cookie) => { console.log(cookie) });
let cookie1 = {
url: 'http://www.godofwar.com',
name: 'testCookie1',
value: '\'cookie1\'',
domain: 'godofwar.com',
secure: false,
httpOnly: false,
expirationDate: 2147483647,
path: '/'
}
let cookie2 = {
url: 'http://godofwar.com',
name: 'testCookie2',
domain: '.godofwar.com',
value: '\'cookie2\'',
secure: false,
httpOnly: false,
expirationDate: 2147483647,
path: '/'
}
let cookie3 = {
url: 'http://godofwar.com',
name: 'testCookie3',
value: '\'cookie3\'',
secure: false,
httpOnly: false,
expirationDate: 2147483647,
path: '/'
}
cookiesStore.set(cookie1, (err) => {
cookiesStore.set(cookie2, (err) => {
cookiesStore.set(cookie3, (err) => {
cookiesStore.get({}, (err, cookie) => { console.log(cookie) });
});
});
});
Console log
[
{
"name": "testCookie1",
"value": "'cookie1'",
"domain": ".godofwar.com",
"hostOnly": false,
"path": "/",
"secure": false,
"httpOnly": false,
"session": false,
"expirationDate": 2147483647
},
{
"name": "testCookie2",
"value": "'cookie2'",
"domain": ".godofwar.com",
"hostOnly": false,
"path": "/",
"secure": false,
"httpOnly": false,
"session": false,
"expirationDate": 2147483647
},
{
"name": "testCookie3",
"value": "'cookie3'",
"domain": "godofwar.com",
"hostOnly": true,
"path": "/",
"secure": false,
"httpOnly": false,
"session": false,
"expirationDate": 2147483647
}
]
### Screenshots

<img width="1440" alt="Screenshot 2019-03-27 at 3 23 38 PM" src="https://user-images.githubusercontent.com/3520897/55066914-c4e96700-50a4-11e9-90e7-a2e83f8b955a.png">
|
https://github.com/electron/electron/issues/17564
|
https://github.com/electron/electron/pull/17590
|
d50e8a5c4cc9d93eee7946c68bd987cafb5b8603
|
d412582f72b288d3b7580e6bd11bb6a854ed3dd1
| 2019-03-27T10:11:26Z |
c++
| 2019-04-02T20:04:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,558 |
["shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
macOS: BrowserWindow.destroy() can cause segfaults
|
### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
* 4.1.1
* **Operating System:**
* macOS 10.14.3
* **Last Known Working Electron version:**
* Unknown
### Expected Behavior
Creating a **modal** `BrowserWindow` and closing it via `destroy()` on macOS, followed by creating a second **modal** `BrowserWindow` and closing it via `close()` should not produce any visual artifcats, nor leave the application in a inoperable state, nor lead to segmentation faults.
### Actual Behavior
Creating a **modal** `BrowserWindow` and closing it via `destroy()`, followed by creating a second **modal** `BrowserWindow` and closing it via `close()` summons parts (visual artifacts) of the previously destroyed first BrowserWindow (see our test-case and attached screenshot).
Afterwards the application does not react to any input anymore and must be terminated forcefully.
On MacBookPros with a touchbar, in many cases, the application crashes with a segmentation fault or illegal hardware instruction:
```
Application Specific Information:
Crashing on exception: -[__NSTaggedDate makeTouchBar]: unrecognized selector sent to instance 0x800007fc55bf8e7d
Application Specific Backtrace 1:
0 CoreFoundation 0x00007fff2bc3aded __exceptionPreprocess + 256
1 libobjc.A.dylib 0x00007fff57d02720 objc_exception_throw + 48
2 CoreFoundation 0x00007fff2bcb8195 -[NSObject(NSObject) __retain_OA] + 0
3 CoreFoundation 0x00007fff2bbdca60 ___forwarding___ + 1486
4 CoreFoundation 0x00007fff2bbdc408 _CF_forwarding_prep_0 + 120
5 Electron Framework 0x000000010d421c38 _ZN4atom19AtomNativeWidgetMac14CreateNSWindowERKN5views6Widget10InitParamsE + 568
6 AppKit 0x00007fff291d4ba8 -[NSResponder(NSTouchBarProvider) touchBar] + 56
7 AppKit 0x00007fff297fed5e NSTouchBarFinderTouchBarsForProviders + 279
8 AppKit 0x00007fff2980011f _NSTouchBarFinderUpdate + 2214
9 AppKit 0x00007fff297ff857 ___NSTouchBarFinderSetNeedsUpdateOnMain_block_invoke + 48
10 CoreFoundation 0x00007fff2bbe18ed __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
11 CoreFoundation 0x00007fff2bbe1822 __CFRunLoopDoObservers + 452
12 CoreFoundation 0x00007fff2bb82ca0 CFRunLoopRunSpecific + 523
13 HIToolbox 0x00007fff2ae19ab5 RunCurrentEventLoopInMode + 293
14 HIToolbox 0x00007fff2ae197eb ReceiveNextEventCommon + 618
15 HIToolbox 0x00007fff2ae19568 _BlockUntilNextEventMatchingListInModeWithFilter + 64
16 AppKit 0x00007fff290d4363 _DPSNextEvent + 997
17 AppKit 0x00007fff290d3102 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1362
18 AppKit 0x00007fff290cd165 -[NSApplication run] + 699
19 Electron Framework 0x000000010d61d78c _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 1306348
20 Electron Framework 0x000000010d61c46e _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 1301454
21 Electron Framework 0x000000010d5ab3a5 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 838405
22 Electron Framework 0x000000010da72cf0 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 5850192
23 Electron Framework 0x000000010da72b20 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 5849728
24 Electron Framework 0x000000010da9dfd2 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 6027058
25 Electron Framework 0x000000010da6ee29 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 5834121
26 Electron Framework 0x000000010d7647b9 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 2645785
27 Electron Framework 0x000000010f40dff2 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 32700242
28 Electron Framework 0x000000010d7633d4 _ZN8crashpad8internal20ScopedDIRCloseTraits4FreeEP3DIR + 2640692
29 Electron Framework 0x000000010d349f04 AtomMain + 68
30 Electron 0x000000010a4ddf16 main + 38
31 libdyld.dylib 0x00007fff58dd0ed9 start + 1
32 ??? 0x0000000000000002 0x0 + 2
```
### To Reproduce
To reproduce run our [test-case](https://github.com/secadm/electron-bugs/blob/mac-window-destroy/main.js) as follows:
```sh
$ git clone https://github.com/secadm/electron-bugs.git -b mac-window-destroy
$ npm install
$ npm start
```
### Screenshots
The first modal BrowserWindow:
<img width="912" alt="Bildschirmfoto 2019-03-26 um 16 29 13" src="https://user-images.githubusercontent.com/48955423/55010410-6b216800-4fe4-11e9-8969-a6ab370b4dbe.png">
The second modal BrowserWindow (the first on has been destroyed):
<img width="868" alt="Bildschirmfoto 2019-03-26 um 16 29 25" src="https://user-images.githubusercontent.com/48955423/55010432-72e10c80-4fe4-11e9-8d21-3f1b2c21ce30.png">
The second modal BrowserWindow has been closed and the silhouette of the first one has reappeared:
<img width="912" alt="Bildschirmfoto 2019-03-26 um 16 02 23" src="https://user-images.githubusercontent.com/48955423/55008151-e3862a00-4fe0-11e9-9ba1-b86bbed86dc0.png">
### Additional Information
- The issue seems to be present at least since Electron 3.0.0.
- The issue is only present on macOS and **not** on Windows.
- The issue only appears if the first `BrowserWindow` gets closed via `destroy()` and the second one via `close()`. If the second modal `BrowserWindow` also gets closed via `destroy()` the issue does not appear. Also if both `BrowserWindows` get closed via `close()` everything seems to be okay.
|
https://github.com/electron/electron/issues/17558
|
https://github.com/electron/electron/pull/22410
|
ed33a72c23253aebcb20da83dcabca6cc9531cd7
|
2c974915a3a9df5a620e2c9157901aac2f99c5be
| 2019-03-26T15:33:22Z |
c++
| 2020-02-28T23:10:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,551 |
["atom/browser/api/atom_api_desktop_capturer.cc", "lib/browser/desktop-capturer.js"]
|
crash in atom_api_desktop_capturer.cc
|
electron code head commit: 2fb9085e5b9b28b7adf0ab7de720c87461b6689d
os: win10 64bit
visual studio 2019 preview
after build electron , I run
```
electron.exe electron/spec
```
and the program crash, i use vs2019 debug it, see the picture,

device_names is empty, and the code does not check it
|
https://github.com/electron/electron/issues/17551
|
https://github.com/electron/electron/pull/17557
|
2ad942323ceb275dd3f6b8930f5c2fee92d59ca0
|
c2c3a046288d03fd0621c8012c9293baeef36182
| 2019-03-26T09:40:21Z |
c++
| 2019-04-25T22:12:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,526 |
["lib/browser/navigation-controller.js", "spec/api-browser-window-spec.js"]
|
loadURL / loadFile calls throw "ERR_ABORTED (-3) error" if location.hash or history.pushState called on the page before page loaded
|
Electron v5.0.0-beta.6 will likely break every single page application / SPA that uses routing as it's uncommon to trigger the routing only after the page loading event has been fired. See workaround in additional Information section below.
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Issue Details
* **Electron Version:**
* <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 5.0.0-beta.6 +
* **Operating System:**
* <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> any (tested on linux)
* **Last Known Working Electron version:**
* <!-- (if applicable) e.g. 3.1.0 --> 4.1.1
### Expected Behavior
Page loading completes without errors even if that's a SPA.
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
- `window.location.hash = '123'` called on page:
```
{ Error: ERR_ABORTED (-3) loading 'file:////dev/temp/electron-loadurl-issue/page.html#123'
at rejectAndCleanup (//dev/temp/electron-loadurl-issue/node_modules/electron/dist/resources/electron.asar/browser/navigation-controller.js:72:21)
at WebContents.navigationListener (//dev/temp/electron-loadurl-issue/node_modules/electron/dist/resources/electron.asar/browser/navigation-controller.js:93:20)
at WebContents.emit (events.js:193:15)
errno: -3,
code: 'ERR_ABORTED',
url:
'file:////dev/temp/electron-loadurl-issue/page.html#123' }
```
- `history.pushState({}, "title", "url")` called on page:
```
{ Error: ERR_ABORTED (-3) loading 'file:////dev/temp/electron-loadurl-issue/url'
at rejectAndCleanup (//dev/temp/electron-loadurl-issue/node_modules/electron/dist/resources/electron.asar/browser/navigation-controller.js:72:21)
at WebContents.navigationListener (//dev/temp/electron-loadurl-issue/node_modules/electron/dist/resources/electron.asar/browser/navigation-controller.js:93:20)
at WebContents.emit (events.js:193:15)
errno: -3,
code: 'ERR_ABORTED',
url: 'file:////dev/temp/electron-loadurl-issue/url' }
```
### To Reproduce
- main.js:
```javascript
const path = require("path");
const url = require("url");
const {app, BrowserWindow} = require("electron");
app.on("ready", async () => {
const browserWindow = new BrowserWindow();
browserWindow.webContents.on("did-start-navigation", (event, url) => {
console.log("did-start-navigation", {url});
});
try {
await browserWindow.loadURL(
url.format({
protocol: "file",
slashes: true,
pathname: path.join(__dirname, "page.html")
})
);
} catch (e) {
console.error(e);
}
// "loadFile" gives the same result
// try {
// await browserWindow.loadFile(
// path.join(__dirname, "page.html"),
// );
// } catch (e) {
// console.error(e);
// }
});
```
- page.html:
```html
<!DOCTYPE html>
<html>
<body>
<script>
window.location.hash = '123';
// history.pushState({}, "title", "url"); // second case
</script>
</body>
</html>
```
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
N/A
### Additional Information
The workaround is changing the hash / history state afte page got loaded:
```html
<!DOCTYPE html>
<html>
<script>
function onload() {
window.location.hash = '123';
// history.pushState({}, "title", "url"); // second case
}
</script>
<body onload="onload">
</body>
</html>
```
See relater PR https://github.com/electron/electron/pull/15855 and code line https://github.com/electron/electron/pull/15855/files#diff-fc5b6704bed639bfab5927de1eccbcc3R85
CC @nornagon
|
https://github.com/electron/electron/issues/17526
|
https://github.com/electron/electron/pull/18109
|
99d4537075c191fe69d044106cae05c76a8f4fbe
|
636273b6cb26283cbad16bf9613412635cca6bb5
| 2019-03-24T12:35:26Z |
c++
| 2019-05-03T23:19:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,519 |
["lib/browser/api/net-log.js"]
|
netlog properties are not properties
|
The properties `currentlyLogging` and `currentlyLoggingPath` do not return values when the netlog module is referenced via `electron.remote.netlog` or `electron.netlog`. Meanwhile `electron.session.currentSession.netlog` works as expected.
* **Electron Version:**
3.1.0 and later
* **Operating System:**
Observed on Windows 10, likely all platforms are affected
* **Last Known Working Electron version:**:
3.0.16
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
`currentlyLogging` should return a boolean
`currentlyLoggingPath` should return a string
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
`currentlyLogging` returns `(...args) => netLog[property](...args)`
`currentlyLoggingPath` returns `(...args) => netLog[property](...args)`
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
<!--
You can fork [electron-quick-start](https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone https://github.com/bitdisaster/electron-quick-start.git -b bug_netlog_properties
$ npm install
$ npm run start
```
See console.log
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/17519
|
https://github.com/electron/electron/pull/17525
|
336db33d180b6028240f76675167a6c7ef831d52
|
34eb5d0815b93fdd5272c6a52b1f11837f614903
| 2019-03-22T22:13:39Z |
c++
| 2019-03-26T02:40:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,502 |
["atom/browser/atom_javascript_dialog_manager.cc"]
|
Pressing escape confirms `window.confirm` dialog
|
* **Electron Version:**
* v4.0.1
* **Operating System:**
* macOS 10.13.6
### Expected Behavior
When you press the escape key on a confirm dialog, it should be the same as pressing cancel.
### Actual Behavior
When you press escape, it presses "OK". This has the potential to be pretty dangerous, as it may continue with a destructive action the user had not intended.
### To Reproduce
Open a window.confirm, then press escape.
### Additional Information
This seems to be due to [this line](https://github.com/electron/electron/blob/master/atom/browser/atom_javascript_dialog_manager.cc#L79), where `cancelId`([5th argument](https://github.com/electron/electron/blob/master/atom/browser/ui/message_box_mac.mm#L97)) is hardcoded to `0`.
For a confirm dialog, we [`push_back`](https://github.com/electron/electron/blob/master/atom/browser/atom_javascript_dialog_manager.cc#L57) the `Cancel` button, so this should be `1`.
|
https://github.com/electron/electron/issues/17502
|
https://github.com/electron/electron/pull/17547
|
4e57a732a8821a9637df50e8d593bfab46dec9ea
|
2188a6ea99b384dd5828f854df8f67a675be4903
| 2019-03-21T14:26:58Z |
c++
| 2019-03-27T18:15:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,399 |
["docs/api/crash-reporter.md"]
|
getLastCrashReport doesn't return if uploadToServer false
|
* **Electron Version:**
* 4.0.0
* **Operating System:**
* MacOS
* **Last Known Working Electron version:**:
* n/a
### Expected Behavior
I would expect `getLastCrashReport` to return the latest crashReport, even if un-uploaded
### Actual Behavior
`getLastCrashReport` returns `null`, even though a crash was triggered with `process.crash()` and crash reports are present in the `crashDirectory`
### To Reproduce
The following can be loaded in electron fiddle to demonstrate the issue
https://gist.github.com/4f69a92b0d061a65eae07774fba73d68
### Additional Information
There is a possibility this is by design, if so we may want to rename the api method to make it clear, ie: `getLastUploadedCrashReport`
|
https://github.com/electron/electron/issues/17399
|
https://github.com/electron/electron/pull/17458
|
b140a82fe88489910279f363d69358bf202070e1
|
b25279df891d9e5753dcac21e9360f37faf237c4
| 2019-03-15T18:08:05Z |
c++
| 2019-03-20T22:34:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,387 |
["docs/tutorial/windows-taskbar.md"]
|
Electron Tutorial: Broken Image on Windows Taskbar Chapter
|
Hi guys, I was reading the electron tutorial and on the [**Windows Taskbar** chapter](https://electronjs.org/docs/tutorial/windows-taskbar#windows-taskbar), and it appears that there is a **missing/broken** image:

This is the broken link to the image that you use: http://i.msdn.microsoft.com/dynimg/IC420539.png
It does not load. The other 2 images in the tutorial load normally. It is annoying because the website will not stop loading, because of the broken image URL.
This is what the broken image URL shows if you click it:

It is a weird error. It happens on all my browsers Chrome, Firefox and Edge.
Maybe you are use wrong URL link? because other 2 image URLs work.
Thanks for the tutorial!
Chieers, Mikael
|
https://github.com/electron/electron/issues/17387
|
https://github.com/electron/electron/pull/17467
|
45d90e77b7c34f4ec5b7e9658abb8ccce806aa9e
|
1c7b3026a65b6b90033a0b4f1e73a698b6acdc3d
| 2019-03-14T20:05:34Z |
c++
| 2019-03-20T17:01:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,358 |
["atom/browser/api/atom_api_app.cc", "atom/browser/api/atom_api_app.h", "atom/browser/browser.h", "atom/browser/browser_linux.cc", "atom/browser/browser_mac.mm", "atom/browser/browser_win.cc", "docs/api/app.md"]
|
Provide API to open native OS emoji picker in ElectronJS
|
### Problem Description
<!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. -->
Windows 10 and Mac both now offer native emoji picker
Windows 10 short cut is "Win key + ;"
Mac short cut is "Ctrl+Opt+space"
Most of web app uses own emoji implementation and can't keep up with latest emoji support and each implementation look non native.
But Electron is committed to bring native OS user experience so it will be nice if we provide API to bring native emoji picker on Mac and Windows 10.
### Proposed Solution
<!-- Describe the solution you'd like in a a clear and concise manner -->
Provide API to bring native Mac and Windows 10 emoji picker.
Just for reference, adding following link of Chrome code. Chrome allows to right click and click "emoji" to open this keyboard. Electron does not offer right click menu and each developer may have diff requirement so this is not a proposal to add right click menu like Chrome but provide API and developer will use their own way. For example, I am working on chat application so I can put button(emoji) next to chat input text box and clicking on emoji button , I can put focus back to text box and ask Electron to open native emoji picker by calling API
Ref code:
https://cs.chromium.org/chromium/src/ui/base/emoji/emoji_panel_helper_win.cc?dr=CSs&sq=package:chromium&g=0&l=20
https://cs.chromium.org/chromium/src/ui/base/emoji/emoji_panel_helper_mac.mm?dr=CSs&sq=package:chromium&g=0&l=17
### Alternatives Considered
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
### Additional Information
<!-- Add any other context about the problem here. -->
|
https://github.com/electron/electron/issues/17358
|
https://github.com/electron/electron/pull/17359
|
2e8934854148d48e70e6c27c5a492d195c9f7c20
|
12b6a0f5b258142ab307c5d470586773ecf48355
| 2019-03-12T20:48:09Z |
c++
| 2019-03-14T20:39:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,354 |
["atom/browser/ui/devtools_manager_delegate.cc", "default_app/main.ts", "lib/browser/api/app.ts", "lib/browser/init.ts", "typings/internal-electron.d.ts"]
|
Chromedriver for electron 5.0.0-beta.5 not connecting
|
* **Electron Version:**
* 5.0.0.beta-5
* **Electron Chromedriver-Version:**
* 5.0.0.beta-5 ("2.45 (00a4da87a0fd24ec00619a53266498ff75ea033d)")
* **Operating System:**
* macOS 10.12.6, same issues on win64 and linux64
### Expected Behavior
The electron-app should start and the the chromedriverdriver should connect
### Actual Behavior
The electron-app starts and the driver does not connect but fails with the general error "DevToolsActivePort file doesn't exist"
### To Reproduce
Using Java and current Selenium bindings:
```java
System.setProperty("webdriver.chrome.driver","/Users/pascal/Downloads/chromedriver-v5.0.0-beta.5-darwin-x64/chromedriver");
ChromeOptions options = new ChromeOptions();
options.setBinary("/data/common/electron/CarConfig 5.0.0-beta.5.app/Contents/MacOS/CarConfig");
WebDriver driver = new ChromeDriver(options);
System.out.println("I'm fine"); // Never reaches that point
driver.quit();
```
### Additional Information
Verbose Chromedriver log:
```
[1552406650.692][INFO]: [d79dce940eda52287dc2c3688c4f1556] COMMAND InitSession {
"capabilities": {
"firstMatch": [ {
"browserName": "chrome",
"goog:chromeOptions": {
"args": [ ],
"binary": "/data/common/electron/CarConfig 5.0.0-beta.5.app/Contents/MacOS/CarConfig",
"extensions": [ ]
}
} ]
},
"desiredCapabilities": {
"browserName": "chrome",
"goog:chromeOptions": {
"args": [ ],
"binary": "/data/common/electron/CarConfig 5.0.0-beta.5.app/Contents/MacOS/CarConfig",
"extensions": [ ]
}
}
}
[1552406650.693][INFO]: Populating Preferences file: {
"alternate_error_pages": {
"enabled": false
},
"autofill": {
"enabled": false
},
"browser": {
"check_default_browser": false
},
"distribution": {
"import_bookmarks": false,
"import_history": false,
"import_search_engine": false,
"make_chrome_default_for_user": false,
"skip_first_run_ui": true
},
"dns_prefetching": {
"enabled": false
},
"profile": {
"content_settings": {
"pattern_pairs": {
"https://*,*": {
"media-stream": {
"audio": "Default",
"video": "Default"
}
}
}
},
"default_content_setting_values": {
"geolocation": 1
},
"default_content_settings": {
"geolocation": 1,
"mouselock": 1,
"notifications": 1,
"popups": 1,
"ppapi-broker": 1
},
"password_manager_enabled": false
},
"safebrowsing": {
"enabled": false
},
"search": {
"suggest_enabled": false
},
"translate": {
"enabled": false
}
}
[1552406650.693][INFO]: Populating Local State file: {
"background_mode": {
"enabled": false
},
"ssl": {
"rev_checking": {
"enabled": false
}
}
}
[1552406650.695][INFO]: Launching chrome: /data/common/electron/CarConfig 5.0.0-beta.5.app/Contents/MacOS/CarConfig --disable-background-networking --disable-client-side-phishing-detection --disable-default-apps --disable-hang-monitor --disable-popup-blocking --disable-prompt-on-repost --disable-sync --disable-web-resources --enable-automation --enable-blink-features=ShadowDOMV0 --enable-logging --force-fieldtrials=SiteIsolationExtensions/Control --ignore-certificate-errors --load-extension=/var/folders/j3/glwdgbj17jl3l1k1ps2tb34m000172/T/.org.chromium.Chromium.hDJyng/internal --log-level=0 --metrics-recording-only --no-first-run --password-store=basic --remote-debugging-port=0 --test-type=webdriver --use-mock-keychain --user-data-dir=/var/folders/j3/glwdgbj17jl3l1k1ps2tb34m000172/T/.org.chromium.Chromium.Xxy1Ub data:,
DevTools listening on ws://127.0.0.1:52569/devtools/browser/bc197ed7-3033-40fb-8a28-67cb2107dd58
[1552406710.734][INFO]: Failed to connect to Chrome. Attempting to kill it.
[1552406710.903][INFO]: [d79dce940eda52287dc2c3688c4f1556] RESPONSE InitSession ERROR unknown error: DevToolsActivePort file doesn't exist
[1552406710.903][DEBUG]: Log type 'driver' lost 0 entries on destruction
[1552406710.903][DEBUG]: Log type 'browser' lost 0 entries on destruction
```
|
https://github.com/electron/electron/issues/17354
|
https://github.com/electron/electron/pull/17800
|
be6fb7cb12687b26730b9b2672f01c30889e6ced
|
b7b9efa875f5e63dd182247909629c37c68d8788
| 2019-03-12T16:07:20Z |
c++
| 2019-04-16T18:22:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,353 |
["atom/browser/ui/win/notify_icon.cc", "spec/api-tray-spec.js"]
|
App crashes when tray.popUpContextMenu() is called again with context menu open (Windows 10)
|
* **Electron Version:**
* 5.0.0 beta 5
* **Operating System:**
* Windows 10
* **Last Known Working Electron version:**:
* ?
### Expected Behavior
`tray.popUpContextMenu()` should do nothing (and no harm) if the context menu is already showing.
### Actual Behavior
App crashes.
### To Reproduce
Example that calls popUpContextMenu twice:
main.js:
const {app, Menu, Tray, nativeImage} = require('electron')
function main () {
tray = new Tray(nativeImage.createEmpty())
tray.setContextMenu(Menu.buildFromTemplate([{ label: "Test" }]));
setTimeout(() => tray.popUpContextMenu(), 3000)
tray.popUpContextMenu()
}
|
https://github.com/electron/electron/issues/17353
|
https://github.com/electron/electron/pull/17474
|
d2ad8efef432bfc24719dc557f47e4164da58da0
|
49f13e38f9111d7375ef9cf209473eba129bff09
| 2019-03-12T15:54:21Z |
c++
| 2019-03-22T04:56:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,348 |
["atom/browser/node_debugger.cc", "spec/node-spec.js"]
|
[5.0.0-beta5] Inspect port argument ignored
|
* **Electron Version:**
* 5.0.0-beta5
* **Operating System:**
* Windows 10 (1803) x64, Raspberry Pi Debian Stretch
* **Last Known Working Electron version:**:
* 3.0.3
### Expected Behavior
Starting electron with --inspect=XXXX or --inspect-brk=XXXX should open the port XXXX for connecting with a debugger that supports the inspect protocol (e.g. VS Code).
### Actual Behavior
If --inspect=XXXX or --inspect-brk=XXXX is supplied the opened port is always 9229 regardless of the supplied port XXXX. Depending on --inspect or inspect-brk the application starts or waits. Without supplying either no port is opened
### To Reproduce
Start electron with the arguments stated above.
|
https://github.com/electron/electron/issues/17348
|
https://github.com/electron/electron/pull/17380
|
db29978fe089d7dd4c90cd92e9846ee1bbb19a76
|
5025c991ee37fd096e84cedf55a110e3231b7212
| 2019-03-12T08:31:27Z |
c++
| 2019-03-18T16:19:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,322 |
["atom/browser/ui/cocoa/atom_touch_bar.mm"]
|
TouchBarSegmentedControl - mutating segments leaves previous icon or label
|
* **Electron Version:**
* 4.0.9
* **Operating System:**
* macOS 10.13.6
* **Last Known Working Electron version:**:
* N/A
### Expected Behavior
When replacing the `segments` array of a `TouchBarSegmentedControl` I expect the control to be completely replaced with the new values specified.
### Actual Behavior
When a `TouchBarSegmentedControl` is created with a control that just has an icon and the segments are replaced with one that just has a label both the initial icon and the new label are show. The same happens when going from label to icon.
### To Reproduce
Repo example: https://github.com/MarcusNoble/electron-TouchBarSegmentedControl-bug/blob/42a5b8f0226b80a4900f21bc69d21cf25dcd4df7/main.js#L49-L67
```sh
$ git clone https://github.com/MarcusNoble/electron-TouchBarSegmentedControl-bug.git
$ npm install
$ npm start
```
### Screenshots
1. Start with a control that just has an icon:

2. Replace the control with one that just has a label. The icon remains (even if set to undefined or null):

3. Replace again with one that has a different icon. The label remains.

|
https://github.com/electron/electron/issues/17322
|
https://github.com/electron/electron/pull/17323
|
b43e4b8e0e93eedd466a2794e02e0452f27407d9
|
c7a453226dd1a09b63c65da4c3277836eccacecc
| 2019-03-10T17:17:00Z |
c++
| 2019-03-11T18:13:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,246 |
["patches/common/chromium/command-ismediakey.patch"]
|
Registering global shortcuts not working from v5.0.0-beta.3
|
* **Electron Version:**
* v5.0.0-beta.3 - v5.0.0-beta.5
* **Operating System:**
* Windows 10
* **Last Known Working Electron version:**:
* v5.0.0-beta.2
### Expected Behavior
This should work, and registered must be assigned true:
registered = globalShortcut.register("Super+Alt+Up", function () { console.log("hotkey!!")})
### Actual Behavior
Shortcut is not registered, for no key combinations as far as I can tell. Return value is always false.
### To Reproduce
Just run the code line above.
|
https://github.com/electron/electron/issues/17246
|
https://github.com/electron/electron/pull/17565
|
3475cd168eb090ec2944e682fedabab8e8cb22c1
|
7a47e64e6590dd0806c022b04b2962aca63aad04
| 2019-03-06T15:13:04Z |
c++
| 2019-03-28T18:15:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,236 |
["package-lock.json", "package.json"]
|
Electron Windows build Error, electonr.d.ts parsing error
|
* **Electron Version:**
* 6.0.0-nightly.20190227
* **Operating System:**
* Windows 10
### Expected Behavior
ninja build success
### Actual Behavior
error electron.d.ts parsing
FAILED: gen/electron/tsc/typings/electron.d.ts
C:/Python27/python.exe ../../electron/build/npm-run.py --silent gn-typescript-definitions -- E:/Personal/electron-gn/electron-gn/src/out/Release/gen/electron/tsc/typings/electron.d.ts
NPM script 'gn-typescript-definitions' failed with code '1':
- Parsing electron documentation
### To Reproduce
master branch(Commit: 793623767782f14beddf3da6d5a1fbe1bcd26953 [7936237])
follow electron build instrunctions in widows 10
### Screenshots

|
https://github.com/electron/electron/issues/17236
|
https://github.com/electron/electron/pull/17299
|
2769e75b49bd9f5ff7fd34774f66df6058d036b0
|
890f38e8fa46edb16a42e02d0f219d274a6a01ea
| 2019-03-06T03:08:37Z |
c++
| 2019-03-08T20:52:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,225 |
["lib/browser/api/menu.js", "spec/api-menu-spec.js"]
|
Calling menu.insert with invalid position causes crash
|
* **Electron Version:** `3.0.15`, `4.0.6`
* **Operating System:** Windows 10
### Expected Behavior
Calling `menu.insert(pos, item)` should not cause electron to crash, even if the passed values are invalid.
### Actual Behavior
Calling `menu.insert(pos, item)` with an integer outside the range `[0, menu.items.length]` (for `insert*` methods) or `[0, menu.items.length)` (for `get*At` and `is*At` methods) causes electron to crash. Non-integer values throw as expected. Large integers `>= 2**31` also throw, rather than crashing.
### To Reproduce
```javascript
const electron = require('electron')
const { Menu, MenuItem } = electron.remote || electron
const menu = new Menu()
const item = new MenuItem({})
const pos = -1 // or any pos != 0
menu.insert(pos, item)
// The following undocumented methods also cause a crash:
menu.insertCheckItem(pos, item.commandId, item.label)
menu.insertItem(pos, item.commandId, item.label)
menu.insertRadioItem(pos, item.commandId, item.label, item.groupId)
menu.insertSeparator(pos)
menu.insertSubMenu(pos, item.commandId, item.label, item.submenu)
menu.getAcceleratorTextAt(pos)
menu.getCommandIdAt(pos)
menu.getLabelAt(pos)
menu.getSublabelAt(pos)
menu.isEnabledAt(pos)
menu.isItemCheckedAt(pos)
menu.isVisibleAt(pos)
```
|
https://github.com/electron/electron/issues/17225
|
https://github.com/electron/electron/pull/17401
|
f09f43a4a9608fbe6ac7c0ae3e42532b92d21a48
|
db29978fe089d7dd4c90cd92e9846ee1bbb19a76
| 2019-03-05T00:02:14Z |
c++
| 2019-03-18T14:58:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,207 |
["shell/browser/ui/cocoa/electron_ns_window.mm"]
|
Accessibility: VoiceOver Can't Find Web Content If you Stop Interact
|
* **Electron Version:** 4.0.6
* **Operating System:** macOS 10.14.3
### Expected Behavior
If you stop interact with everything and go to the top level, VoiceOver should be able to find the main web content area and be able to interact with it again.
### Actual Behavior
VoiceOver only sees close, minimize, full screen buttons.
### To Reproduce
Just run the electron-quick-start example.
$ git clone https://github.com/electron/electron-quick-start
$ npm start
### Additional Information
Upon launching the app, VoiceOver will say Hello World Web Content.
From that point, you can immediately interact with the web content with vo(control+option)+shift+down, and then review the content with vo+left/right.
However, if you stop interact with the web content with vo+shift+up, you cannot get back into the web content area. VoiceOver only sees close, minimize, full screen buttons.
Only way is to restart the app.
|
https://github.com/electron/electron/issues/17207
|
https://github.com/electron/electron/pull/22399
|
4c6150ea3d6411823c5f056d0794cec5b8258f8e
|
cad7054e4f101ea5a5edada4e201c5539e0c8bae
| 2019-03-03T16:39:13Z |
c++
| 2020-03-02T02:25:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,197 |
["patches/common/chromium/.patches", "patches/common/chromium/fix_disable_usage_of_abort_report_np_in_mas_builds.patch", "patches/common/chromium/fix_disable_usage_of_pthread_fchdir_np_and_pthread_chdir_np_in_mas.patch", "patches/common/chromium/fix_disable_usage_of_setapplicationisdaemon_and.patch"]
|
Mac App Store rejects the build with 5.0.0-beta*
|
* **Electron Version:**
* 5.0.0-beta.4
### Rejection Email
Guideline 2.5.1 - Performance - Software Requirements
Your app uses or references the following non-public APIs:
Found private symbol usage.
Symbol: __LSSetApplicationLaunchServicesServerConnectionStatus
From framework: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
Symbol: _SetApplicationIsDaemon
From framework: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
Symbols: _pthread_chdir_np, _pthread_fchdir_np, _abort_report_np
From framework: /usr/lib/libSystem.B.dylib
In binary: Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
The use of non-public APIs is not permitted on the App Store, because it can lead to a poor user experience should these APIs change.
We are constantly reevaluating and identifying non-public APIs that you may have been using for an extended period of time. You should always use public APIs and frameworks and ensure they are up-to-date to prevent this issue in the future
### Additional Information
Version 4 has no problems.
|
https://github.com/electron/electron/issues/17197
|
https://github.com/electron/electron/pull/17224
|
bbfa63fd9da242f8d081eef3c4e051cd1a42ffa8
|
9d8619f305579e8aa22fb313adc5ef1abededa6e
| 2019-03-02T09:41:00Z |
c++
| 2019-03-08T18:08:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,193 |
["atom/browser/api/atom_api_top_level_window.cc", "atom/browser/api/atom_api_top_level_window.h", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "atom/browser/native_window_views.cc", "atom/browser/native_window_views.h", "docs/api/browser-window.md"]
|
[Mac] Top level windows are not excluded from the dock menu by default
|
* **Electron Version:**
4.0.2
* **Operating System:**
macOS 10.14.3
* **Last Known Working Electron version:**:
1.7
### Expected Behavior
When creating a BrowserWindow it should not appear in the dock menu by defaults.
### Actual Behavior
It appears in the dock menu (example: `raven` in https://electronjs.org/docs/tutorial/macos-dock)
### To Reproduce
Just create new BrowserWindow, then right click on the app icon in the dock. (see https://electronjs.org/docs/tutorial/macos-dock)
At least it should be a way to control that, this can be achieve for top level window with:
`[window_ setExcludedFromWindowsMenu:YES];`, indeed [window isExcludedFromWindowsMenu] returns false by default, see
https://developer.apple.com/documentation/appkit/nsapplication/1428625-removewindowsitem
`Use the isExcludedFromWindowsMenu method of NSWindow if you want the item to remain excluded from the Window menu.`
https://developer.apple.com/documentation/appkit/nswindow/1419175-isexcludedfromwindowsmenu
|
https://github.com/electron/electron/issues/17193
|
https://github.com/electron/electron/pull/17404
|
ec5e0ef06e4ebdea99eefafb68ebff4b273124f2
|
4e57a732a8821a9637df50e8d593bfab46dec9ea
| 2019-03-01T19:31:43Z |
c++
| 2019-03-27T12:10:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,190 |
["lib/common/asar.js", "spec/asar-spec.js"]
|
Support fs.promises in asar files.
|
The standard `fs` methods [are patched](https://github.com/electron/electron/blob/master/lib/common/asar.js) to work with asar files, but the new [`fs.promises`](https://nodejs.org/api/fs.html#fs_fs_promises_api) methods are not. Using `require('util').promisify(require('fs')[method])` works, but it would be nice to have the new API supported as well.
|
https://github.com/electron/electron/issues/17190
|
https://github.com/electron/electron/pull/18092
|
9585818a90654167f01a87d3783e722bfa4a03e1
|
2dd108e9c904f0a07be9a4b138ca34127df9a2d9
| 2019-03-01T18:04:14Z |
c++
| 2019-05-02T12:06:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,154 |
["docs/development/chromium-development.md"]
|
Link chromiumdev-slack refers to some king of strange site
|
Did you see that link to chromiumdev-slack on https://electronjs.org/docs/development/chromium-development page refers to this site https://chromiumdev-slack.herokuapp.com/index.html which is not the slack related page?
|
https://github.com/electron/electron/issues/17154
|
https://github.com/electron/electron/pull/17161
|
544d8a423c70e7c3dec67662ee2fbb600506105c
|
67f04c0370779b98d9febdb09d281d643c1649f0
| 2019-02-27T11:10:08Z |
c++
| 2019-02-28T21:43:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,132 |
["atom/browser/atom_browser_client.cc", "atom/browser/web_contents_preferences.cc", "atom/browser/web_contents_preferences.h", "lib/browser/guest-view-manager.js", "lib/browser/guest-window-manager.js", "spec/webview-spec.js"]
|
Clicking link with target=_blank does not fire 'new-window' event with Sandbox Enabled
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 3.0.6
* **Operating System** (Platform and Version):
* macOS 10.14
### Expected Behavior
a `new-window` event fires
### Actual behavior
a `did-fail-load` fires with errorCode -3
### To Reproduce
```sh
$ git clone [email protected]:chrismohr/no-new-window.git -b master
$ cd no-new-window/
$ npm i && npm start
```
|
https://github.com/electron/electron/issues/17132
|
https://github.com/electron/electron/pull/18273
|
4ed989587b0cbd47bc3488c12f371635c425dea2
|
ac002b3c3c838bfc2c034581694379bec0766860
| 2019-02-26T02:06:35Z |
c++
| 2019-05-27T00:44:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,101 |
["lib/browser/api/dialog.js"]
|
Dialog's defaultId Ineffective
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.5
* **Operating System** (Platform and Version):
* macOS 10.12.6
* **Last known working Electron version** (if applicable):
* 1.8.8
### Expected Behavior
A call to `dialog.showMessageBox` with the options
```js
{
defaultId: 0,
buttons: ['Wait', 'Discard'],
message: 'You have unsaved changes. Discard them?',
}
```
will display a dialog whose Wait button is highlighted as the default.
### Actual behavior
The Wait button is not selected as the default. However, if I add a third button labeled No, or rename Discard to Cancel, then Wait is selected as the default.
### To Reproduce
I've placed a minimal working example at https://github.com/twodee/electron_defaultid_issue. All the code is in `main.js`:
```js
const { app, BrowserWindow, dialog } = require('electron');
function createWindow () {
let win = new BrowserWindow({ width: 800, height: 600 });
win.loadFile('index.html');
win.on('close', e => {
let options = {
defaultId: 0,
buttons: ['Wait', 'Discard'],
message: 'You have unsaved changes. Discard them?',
};
let choice = dialog.showMessageBox(win, options);
if (choice == 1) {
win.destroy();
}
});
}
app.on('ready', createWindow);
```
```sh
$ git clone https://github.com/twodee/electron_defaultid_issue
$ npm install
$ npm start || electron .
```
### Screenshots
The Wait button is not selected as the default when the labels are Wait and Discard:
<img width="912" alt="screen shot 2019-02-24 at 6 18 27 am" src="https://user-images.githubusercontent.com/1939462/53289549-3b701c00-37fc-11e9-97b9-2fbcebbe85c4.png">
The Wait button is selected as the default when the labels are Wait and Cancel:
<img width="912" alt="screen shot 2019-02-24 at 6 17 56 am" src="https://user-images.githubusercontent.com/1939462/53289552-43c85700-37fc-11e9-8297-8391f7aa3cc5.png">
|
https://github.com/electron/electron/issues/17101
|
https://github.com/electron/electron/pull/17123
|
42aa375497543bf606fc20879c150489bbabf5c9
|
08066581b0f71fb06d66f9270503ee81a8fda22e
| 2019-02-23T17:25:57Z |
c++
| 2019-02-27T08:24:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,077 |
["patches/chromium/printing.patch", "shell/browser/api/atom_api_web_contents.cc"]
|
webContents.print() not print as per the default printer settings when putting device name
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* v4.0.5
* **Operating System** (Platform and Version):
* Windows 10
### Expected Behavior
using webContents api to print an html file oriention set to landscape in default printer settings and page size set to A5,
mainWindow.webContents.print({ silent: true, printBackground: false, deviceName: 'HP LaserJet 1020' })
My issue is : it is not printing as defined in the default printer settings
but it currently printing is deviceName not set
and need to send mainWindow.webContents.print() api to silently and printer name
### To Reproduce
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone [email protected]:shabeer-mdy/electron-quick-start.git
$ npm install
$ npm start || electron .
```
and set any printer name to mainWindow.webContents.print({ silent: true, printBackground: false, deviceName: 'HP LaserJet 1020' })
set any installed printer name
|
https://github.com/electron/electron/issues/17077
|
https://github.com/electron/electron/pull/19598
|
a8861e6a66127dcde5ef2db17ba280124b40dc0c
|
9c7a216814c3ec26dd7d9bbf2aedfbdb9373234b
| 2019-02-21T07:34:38Z |
c++
| 2019-08-07T14:47:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,039 |
["atom/common/api/atom_api_v8_util.cc", "atom/common/api/remote_object_freer.cc", "atom/common/api/remote_object_freer.h", "lib/browser/objects-registry.js", "lib/browser/rpc-server.js", "lib/renderer/api/remote.js", "spec-main/window-helpers.ts", "spec/window-helpers.js"]
|
remote API is flaking on 5.0.x
|
The current `5-0-x` branch and `master` are experiencing random `remote` API failures again. We should look into this and fix before 5.0 stable.
Example: https://circleci.com/gh/electron/electron/138325
|
https://github.com/electron/electron/issues/17039
|
https://github.com/electron/electron/pull/17464
|
9c3315c416af405cc5fd195398f4778375b51844
|
78411db4b5c796570ee0e5eec1ef00f586e0a01d
| 2019-02-19T02:22:27Z |
c++
| 2019-04-16T20:08:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,034 |
["patches/common/chromium/.patches", "patches/common/chromium/unsandboxed_ppapi_processes_skip_zygote.patch"]
|
[Bug] Linux Flash Plugin not loading
|
* **Electron Version**:
* v5.0.x
* **Operating System**
* Linux (Ubuntu 18.10 x64)
* **Last known working Electron version**:
* v4.0.x
### Expected Behavior
Flash Plugin should load.
### Actual behavior
Flash Plugin does not load.
### Additional info
The Flash Player under Linux never worked in a mixed-sandbox or (full-)sandbox environment. As of v5.0.x, mixed-sandbox is forced. This prevents the plugin from loading.
### To Reproduce
[app.zip](https://github.com/electron/electron/files/2877526/app.zip)
|
https://github.com/electron/electron/issues/17034
|
https://github.com/electron/electron/pull/17823
|
78411db4b5c796570ee0e5eec1ef00f586e0a01d
|
33fd20047c025e206c8d1ee61897d43b91556388
| 2019-02-18T22:03:35Z |
c++
| 2019-04-16T22:32:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,016 |
["docs/api/menu-item.md", "lib/browser/api/menu-item.js", "lib/browser/api/menu.js", "shell/browser/api/atom_api_menu.cc", "shell/browser/api/atom_api_menu.h", "shell/browser/ui/atom_menu_model.cc", "shell/browser/ui/atom_menu_model.h", "shell/browser/ui/cocoa/atom_menu_controller.mm"]
|
Support `tooltip` option for MenuItem (macOS)
|
**Is your feature request related to a problem? Please describe.**
MenuItem labels are meant to be short. There's currently no place to elaborate/clarify them.
**Describe the solution you'd like**
`NSMenuItem` supports a [`toolTip`](https://developer.apple.com/documentation/appkit/nsmenuitem/1514848-tooltip?language=objc) property. Would be nice if Electron could expose this.
From what I could find, [GTK (Linux) does not have any way to set tooltip on menu items](https://developer.gnome.org/gtk3/stable/GtkMenuItem.html).
No idea about Windows.
**Describe alternatives you've considered**
None.
**Additional context**
No.
|
https://github.com/electron/electron/issues/17016
|
https://github.com/electron/electron/pull/19099
|
692df804cf8201158e164903bba429a7274509bf
|
06d48514c650177c447d817404dc476b2e5870b7
| 2019-02-18T04:57:25Z |
c++
| 2019-07-11T08:56:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 17,005 |
["docs/api/web-request.md"]
|
[typescript] Unable to unsubscribe from WebRequest events
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 3.10.0
* **Operating System** (Platform and Version):
* macOS 10.12.6
* **Last known working Electron version** (if applicable):
* None
### Expected Behavior
When using Electron with TypeScript, I can pass `null` to the `WebRequest.onBeforeSendHeaders()` function in order to remove the listener as described here:
https://electronjs.org/docs/api/web-request
### Actual behavior
The defined TypeScript types do not allow passing null to this function nor the others in this class.
### To Reproduce
Try compiling TypeScript such as:
```typescript
session.webRequest.onBeforeSendHeaders(null);
```
tsc throws an error:
```bash
error TS2345: Argument of type 'null' is not assignable to parameter of type 'Function'.
```
I was unable to see how types are generated, so a PR isn't forthcoming.
|
https://github.com/electron/electron/issues/17005
|
https://github.com/electron/electron/pull/17006
|
391f6dd663bf162614c74dcbd5bd2f508305f857
|
30213089aeaea3199b1824a76e173af6ec22c314
| 2019-02-16T15:50:43Z |
c++
| 2019-02-26T02:13:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,997 |
["lib/renderer/chrome-api.ts"]
|
`chrome.runtime.connect` ignores extensionId argument
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.4
* **Operating System** (Platform and Version):
* macOS 10.13.6
* **Last known working Electron version** (if applicable):
* n/a
### Expected Behavior
`chrome.runtime.connect` should honor the `extensionId` argument when only one argument is given.
### Actual behavior
The `extensionId` argument is ignored when it is the only argument. It is only used when `connectInfo` is given as the second argument.
### To Reproduce
In your content script:
```
chrome.runtime.connect('invalid extension id')
```
In your background script:
```
chrome.runtime.onConnect.addListener(port => {
console.log('this should not be called')
})
```
### Additional Information
PR to follow
|
https://github.com/electron/electron/issues/16997
|
https://github.com/electron/electron/pull/16998
|
d4f5ebefe6bc7d99d7b1ebea99eb66167a7e3786
|
d507ba68a7797c29e78fb8dc4257f9161cf7bad4
| 2019-02-16T00:32:35Z |
c++
| 2019-05-02T02:42:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,985 |
["patches/common/v8/build-torque-with-x64-toolchain-on-arm.patch", "vsts-arm-test-steps.yml", "vsts-arm64v8.yml"]
|
Fix v8 crashes in arm32 startup
|
```
# Fatal error in ./../../v8/src/compiler/code-assembler.cc, line 1940
# Type cast failed in CAST(LoadSlowProperties(CAST(receiver))) at ./../../v8/src/ic/keyed-store-generic.cc:836
Expected NameDictionary but found 0x5c10066d <FixedArray[0]>
#
#
#
#FailureMessage Object: 0xff9f9154Received signal 4 <unknown> 000004dc7a6c
#0 0x000003c02514 base::debug::CollectStackTrace()
#1 0x000003b64ac8 base::debug::StackTrace::StackTrace()
#2 0x000003c0249a base::debug::(anonymous namespace)::StackDumpSignalHandler()
#3 0x0000f6624760 <unknown>
#4 0x000004dc7a6c v8::base::OS::Abort()
#5 0x000002c1abde v8::internal::CheckObjectType()
#6 0x0000032777b8 <unknown>
```
and executing a simple `console.log('hello')` statement with d8 results in
```
root@788c83cbe8df:/home/builduser/dist# ./d8
V8 version 7.3.492.10-electron.0
d8> console.log("hello")
hello
abort: CSA_ASSERT failed: Torque assert 'Is<A>(o)' failed [../../v8/src/builtins/base.tq:1066]
==== JS stack trace =========================================
0: ExitFrame [pc: 0x157a810]
1: StubFrame [pc: 0x15c4108]
Security context: 0x36490005 <JSObject>#0#
2: join [0x364887b5](this=0x3d206b5d <JSArray[1]>#1#)
3: toString [0x36482391](this=0x3d206b5d <JSArray[1]>#1#)
4: InternalFrame [pc: 0x1271f8c]
5: EntryFrame [pc: 0x1271ce4]
6: builtin exit frame: Function(aka Function)(this=0x5fd00289 <undefined>,0x364927a9 <String[#25]: return %IsJSProxy(object)>,0x3d206b5d <JSArray[1]>#1#,0x5fd00289 <undefined>)
7: /* anonymous */(aka /* anonymous */) [0x3d206a6d] [d8-stringify:15] [bytecode=0x36492c4d offset=70](this=0x5fd00289 <undefined>)
8: /* anonymous */ [0x36492d25] [d8-stringify:93] [bytecode=0x36492a5d offset=10](this=0x3d200bbd <JSGlobal Object>#2#)
9: InternalFrame [pc: 0x1271f8c]
10: EntryFrame [pc: 0x1271ce4]
==== Details ================================================
[0]: ExitFrame [pc: 0x157a810]
[1]: StubFrame [pc: 0x15c4108]
[2]: join [0x364887b5](this=0x3d206b5d <JSArray[1]>#1#) {
// optimized frame
--------- s o u r c e c o d e ---------
<No Source>
-----------------------------------------
}
[3]: toString [0x36482391](this=0x3d206b5d <JSArray[1]>#1#) {
// optimized frame
--------- s o u r c e c o d e ---------
<No Source>
-----------------------------------------
}
[4]: InternalFrame [pc: 0x1271f8c]
[5]: EntryFrame [pc: 0x1271ce4]
[6]: builtin exit frame: Function(aka Function)(this=0x5fd00289 <undefined>,0x364927a9 <String[#25]: return %IsJSProxy(object)>,0x3d206b5d <JSArray[1]>#1#,0x5fd00289 <undefined>)
[7]: /* anonymous */(aka /* anonymous */) [0x3d206a6d] [d8-stringify:15] [bytecode=0x36492c4d offset=70](this=0x5fd00289 <undefined>) {
// heap-allocated locals
var stringifyDepthLimit = 4
var isProxy = 0x3d206abd <JSFunction isProxy (sfi = 0x36492aa1)>#3#
var JSProxyGetTarget = 0x3d206add <JSFunction JSProxyGetTarget (sfi = 0x36492ad5)>#4#
var JSProxyGetHandler = 0x3d206afd <JSFunction JSProxyGetHandler (sfi = 0x36492b09)>#5#
var Stringify = 0x3d206b1d <JSFunction Stringify (sfi = 0x36492b3d)>#6#
var StringifyProxy = 0x3d206b3d <JSFunction StringifyProxy (sfi = 0x36492b71)>#7#
// expression stack (top to bottom)
[14] : 0x5fd00289 <undefined>
[13] : 0x36481111 <JSFunction Function (sfi = 0x4370bb29)>#8#
[12] : 7
[11] : 0x5fd00305 <the_hole>
[10] : 0x364927a9 <String[#25]: return %IsJSProxy(object)>
[09] : 0x3d206b5d <JSArray[1]>#1#
[08] : 0x5fd00289 <undefined>
[07] : 37
[06] : 0x36492ba5 <ArrayBoilerplateDescription 2, 0x3d206a31 <FixedArray[1]>>#9#
[05] : 0x364927a9 <String[#25]: return %IsJSProxy(object)>
[04] : 0x3d206b5d <JSArray[1]>#1#
[03] : 0x5fd00289 <undefined>
[02] : 0x36481111 <JSFunction Function (sfi = 0x4370bb29)>#8#
[01] : 0x3d206a8d <FunctionContext[10]>#10#
[00] : 0x36480bad <NativeContext[247]>#11#
--------- s o u r c e c o d e ---------
function () {\x0a"use strict";\x0a\x0a// A more universal stringify that supports more types than JSON.\x0a// Used by the d8 shell to output results.\x0avar stringifyDepthLimit = 4; // To avoid crashing on cyclic objects\x0a\x0a// Hacky solution to circumvent forcing --allow-natives-syntax for d8\x0afunction isProxy(o) { return fa...
-----------------------------------------
}
[8]: /* anonymous */ [0x36492d25] [d8-stringify:93] [bytecode=0x36492a5d offset=10](this=0x3d200bbd <JSGlobal Object>#2#) {
// expression stack (top to bottom)
[03] : 0x5fd00289 <undefined>
[02] : 0x5fd00289 <undefined>
[01] : 0x3d206a6d <JSFunction (sfi = 0x36492a15)>#12#
[00] : 0x5fd00289 <undefined>
--------- s o u r c e c o d e ---------
\x0a(function() {\x0a"use strict";\x0a\x0a// A more universal stringify that supports more types than JSON.\x0a// Used by the d8 shell to output results.\x0avar stringifyDepthLimit = 4; // To avoid crashing on cyclic objects\x0a\x0a// Hacky solution to circumvent forcing --allow-natives-syntax for d8\x0afunction isProxy(o) {...
-----------------------------------------
}
[9]: InternalFrame [pc: 0x1271f8c]
[10]: EntryFrame [pc: 0x1271ce4]
==== Key ============================================
#0# 0x36490005: 0x36490005 <JSObject>
#1# 0x3d206b5d: 0x3d206b5d <JSArray[1]>
0: 0x5fd027e5 <String[#6]: object>
#2# 0x3d200bbd: 0x3d200bbd <JSGlobal Object>
#3# 0x3d206abd: 0x3d206abd <JSFunction isProxy (sfi = 0x36492aa1)>
#4# 0x3d206add: 0x3d206add <JSFunction JSProxyGetTarget (sfi = 0x36492ad5)>
#5# 0x3d206afd: 0x3d206afd <JSFunction JSProxyGetHandler (sfi = 0x36492b09)>
#6# 0x3d206b1d: 0x3d206b1d <JSFunction Stringify (sfi = 0x36492b3d)>
#7# 0x3d206b3d: 0x3d206b3d <JSFunction StringifyProxy (sfi = 0x36492b71)>
#8# 0x36481111: 0x36481111 <JSFunction Function (sfi = 0x4370bb29)>
#9# 0x36492ba5: 0x36492ba5 <ArrayBoilerplateDescription 2, 0x3d206a31 <FixedArray[1]>>
#10# 0x3d206a8d: 0x3d206a8d <FunctionContext[10]>
#11# 0x36480bad: 0x36480bad <NativeContext[247]>
#12# 0x3d206a6d: 0x3d206a6d <JSFunction (sfi = 0x36492a15)>
=====================
Received signal 4 <unknown> 0000017fdc54
Received signal 11 SEGV_MAPERR 0000ffffffe4
==== C stack trace ===============================
[0x0000017ffc0c]
[0x0000f7aa3760]
[0x0000f7b8cdba]
[0x0000f7b8d20e]
[0x0000f7b8cc58]
[0x0000f7b8c96a]
[end of stack trace]
Segmentation fault (core dumped)
```
/cc @zcbenz @jkleinsc @nornagon
|
https://github.com/electron/electron/issues/16985
|
https://github.com/electron/electron/pull/16992
|
596acdcb918b583e09a691b22b2e56217e017359
|
35c3a7e1307a792f4dbee2f21f7e66e9d17a7978
| 2019-02-15T14:24:17Z |
c++
| 2019-02-18T10:02:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,984 |
["atom/browser/ui/message_box_mac.mm", "docs/api/dialog.md"]
|
Replace deprecated beginSheetModalForWindow api
|
Remove clang pragma workaround https://github.com/electron/electron/commit/7743d51dbf4e66cd34a789ba2af9a35ff9dc2a2b
Replace `beginSheetModalForWindow:modalDelegate:didEndSelector:contextInfo:` for `beginSheetModalForWindow:completionHandler:`
|
https://github.com/electron/electron/issues/16984
|
https://github.com/electron/electron/pull/16994
|
1bbb47be5b0dc40af769c06b98c297a57b6ad4bb
|
e01c3615c49bd1b02f550f71332313a667b4b352
| 2019-02-15T14:15:49Z |
c++
| 2019-02-27T18:23:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,960 |
["docs/api/dialog.md"]
|
showOpenDialog wrong Documentation and Typescript typings
|
The callback of [showOpenDialog](https://electronjs.org/docs/api/dialog#dialogshowopendialogbrowserwindow-options-callback) is defined to be called with the first argument being a `String[]`. When clicked 'Cancel' it is not called with an empty array - that was what I was expecting reading the docs - but was called with `undefined`.
Thus the docs are wrong. The first argument of the callback should be of type `String[] | undefined`.
|
https://github.com/electron/electron/issues/16960
|
https://github.com/electron/electron/pull/16970
|
590454423599b5be7c6afd5076b0340d886808d2
|
28638b0a6bb9c131da4905ce26c4bc62f75c202e
| 2019-02-14T09:11:23Z |
c++
| 2019-02-14T22:28:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,947 |
["atom/browser/api/event_emitter.cc", "docs/api/structures/keyboard-event.md", "lib/browser/api/menu.js"]
|
Differentiating a mouse click vs. keyboard shortcut hit in MenuItem click?
|
Thanks for the great work you do on Electron. 🙏We love using Electron.
I'm setting up a MenuItem with an "accelerators" (keyboard shortcuts). I'm specifying the [`click` option](https://electronjs.org/docs/api/menu-item#new-menuitemoptions) to provide custom handling. In my analytics, I'd like to report the method the user used to trigger the MenuItem—mouse click or keyboard shortcut.
The `click` function I provide is called with these arguments: `(menuItem, browserWindow, event)`. The value of `event` is `{ shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }`. For accelerators that happen to include one of the keys in `event`, I'm able to derive that the user hit the keyboard shortcut (i.e. if the user hits the keyboard shortcut for `Command-C`, `event` will contain `metaKey: true`.
But some of my keyboard shortcuts are: `Up`, `Down`, `Enter`. If the user hits these keyboard shortcuts, I have no way to differentiate whether the user clicked the menu item with the mouse or hit the keyboard shortcut.
Is there a reliable way to differentiate mouse clicks vs. keyboard shortcut hits in a MenuItem?
|
https://github.com/electron/electron/issues/16947
|
https://github.com/electron/electron/pull/16954
|
cc5ed24e23c08fbebb704bc2720a390b1131cdfa
|
3edc497d3dd4f8acbe5decf58c7d1cd68aaa87bb
| 2019-02-13T23:58:12Z |
c++
| 2019-02-20T12:20:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,940 |
["lib/renderer/chrome-api.js"]
|
chrome.tabs.executeScript callback doesn't provide return value
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.4
* **Operating System** (Platform and Version):
* macOS 10.13.6
* **Last known working Electron version** (if applicable):
* n/a
### Expected Behavior
`chrome.tabs.executeScript` callback should receive an array of return values from executed scripts.
### Actual behavior
Callback receives `[undefined]`
### To Reproduce
In your extension's background script:
```
chrome.tabs.executeScript(1, {code: `return true`},
results => alert(JSON.stringify(results))
)
```
### Additional Information
PR to follow
|
https://github.com/electron/electron/issues/16940
|
https://github.com/electron/electron/pull/16941
|
319c2853dfdd3fcec42e763ef820a28028fae6bb
|
228805353f04c7c36f077b15117b52ab76fb61f0
| 2019-02-13T21:57:29Z |
c++
| 2019-02-14T01:00:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,919 |
["BUILD.gn", "atom/app/atom_main.cc"]
|
MAS build crashes with "unable to get application ASN from launchservicesd ..."
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 5.0.0-beta.2
* **Operating System** (Platform and Version):
* macOS 10.13.6
* **Last known working Electron version** (if applicable):
* 4.0.4
### Expected Behavior
Adding `<input type="checkbox" />` to the DOM in a sandboxed renderer process should work.
**Note:** `app.enableMixedSandboxed()` needs to be called in Electron 4.0 and older.
### Actual behavior
The renderer process crashes.
### To Reproduce
- configure Fiddle to run [electron-v5.0.0-beta.2-mas-x64.zip](https://github.com/electron/electron/releases/download/v5.0.0-beta.2/electron-v5.0.0-beta.2-mas-x64.zip)
- add `app.enableMixedSandbox()` to Main Process code
- add `<input type="checkbox" />` to HTML code
- run the app
<!--
You can fork [electron-quick-start](https://github.com/electron/electron-quick-start) and include a link to the branch with your changes.
-->
<!--
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
```
-->
### Screenshots
Electron 5.0
<img width="912" alt="screen shot 2019-02-13 at 1 03 08 am" src="https://user-images.githubusercontent.com/1281234/52676703-52289000-2f2b-11e9-8bd7-41cf502a6ce5.png">
Electron 4.0
<img width="912" alt="screen shot 2019-02-13 at 1 03 47 am" src="https://user-images.githubusercontent.com/1281234/52676710-5654ad80-2f2b-11e9-931f-f592ff1e1dcb.png">
### Additional Information
```
Application Specific Information:
abort() called
rdar://problem/28724618 Couldn't create connection object
_RegisterApplication(), unable to get application ASN from launchservicesd, and this application requires an ASN, so aborting. error=#-1.
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff5efb4b66 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff5f17f080 pthread_kill + 333
2 libsystem_c.dylib 0x00007fff5ef1024d __abort + 144
3 libsystem_c.dylib 0x00007fff5ef101bd abort + 142
4 com.apple.HIServices 0x00007fff3578f60a _RegisterApplication + 7911
5 com.apple.HIServices 0x00007fff3578d64c GetCurrentProcess + 24
6 com.apple.HIToolbox 0x00007fff361ed4ab MenuBarInstance::GetAggregateUIMode(unsigned int*, unsigned int*) + 63
7 com.apple.AppKit 0x00007fff34eb5627 _NSScreenConfigurationUpdateSharedInfoForReason + 1546
8 com.apple.AppKit 0x00007fff34eb4fc9 ___NSScreenConfigurationEnsureInitialUpdateOccurred_block_invoke + 137
9 libdispatch.dylib 0x00007fff5ee2adb8 _dispatch_client_callout + 8
10 libdispatch.dylib 0x00007fff5ee2ad6b dispatch_once_f + 41
11 com.apple.AppKit 0x00007fff34eb4f3e +[_NSScreenConfiguration latestGreatestBackingScaleFactor] + 128
12 com.apple.AppKit 0x00007fff3450fd83 -[NSView _transformToBackingUsingIntegralizationSpace:] + 242
13 com.apple.AppKit 0x00007fff3454a063 -[NSView _primitiveConvertSizeToBacking:useIntegralizationSpace:] + 63
14 com.apple.AppKit 0x00007fff3455535b NSCellImageRectWithSize_centeredInRect_scaling_flipped + 56
15 com.apple.AppKit 0x00007fff34568ec4 -[NSButtonCell(NSButtonCellPrivate) _imageRectWithRect:] + 244
16 com.apple.AppKit 0x00007fff34940407 -[NSButtonCell _imageRect:titleRect:forBounds:] + 275
17 com.apple.AppKit 0x00007fff3458fa4f -[NSButtonCell imageRectForBounds:] + 114
18 com.apple.AppKit 0x00007fff34619436 -[NSButtonCell drawInteriorWithFrame:inView:] + 1627
19 com.apple.AppKit 0x00007fff346184fc -[NSButtonCell drawWithFrame:inView:] + 481
20 libblink_core.dylib 0x00000001544e56f7 blink::ThemePainterMac::PaintCheckbox(blink::Node const*, blink::Document const&, blink::ComputedStyle const&, blink::PaintInfo const&, blink::IntRect const&) + 1399 (theme_painter_mac.mm:652)
...
```
|
https://github.com/electron/electron/issues/16919
|
https://github.com/electron/electron/pull/16920
|
de2791166171599d47200658b82f66ce96103b2d
|
e769b867f08ce1393c13c3e6563eb45cd96ad896
| 2019-02-13T00:08:04Z |
c++
| 2019-02-14T17:48:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,900 |
["shell/browser/native_window_views.cc", "shell/browser/native_window_views.h", "shell/browser/native_window_views_win.cc"]
|
Window height shrinking after being restored
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.4 (multiple versions have been tested, going back to 3.0.0)
* **Operating System** (Platform and Version):
* Windows 10
* **Last known working Electron version** (if applicable):
* n/a
### Expected Behavior
If a window is minimised then restored, it retains its original size.
### Actual behavior
The BrowserWindow is set to a precise width and height, if it is minimised using the button in the top right then restored, it will resize its height. This new height will be the original height - 20 (approximately the height of the menu bar). If the height is set again using window.setSize, then it will again be 20 off, as if the window height now takes into account the menu when it didn't before.
This can occur multiple times. Repeatedly minimising and restoring the window will reduce the window by the menu height each time.
This resize triggers the "resize" event, but not "will-resize", so it can't be blocked with e.preventDefault.
No other code interacts with the window height.
I've "fixed" this issue with the following hack:
`
mainWindow.on('restore', function () {
if (process.platform === 'win32') {
mainWindow.setSize(windowWidth, windowHeight + 20);
}
});`
### To Reproduce
Create a BrowserWindow with a fixed height and log the height before and after minimising/restoring on a Windows machine.
### Additional Information
This issue has cropped up multiple times on different projects, on any Windows machine. I've tested it on other platforms and it doesn't happen.
|
https://github.com/electron/electron/issues/16900
|
https://github.com/electron/electron/pull/19886
|
cddbddc5439351eaf4d0c45165ea47c7f6f84dc5
|
d04072d1eba8085acae4b58c0fed26e3088262f2
| 2019-02-12T13:21:22Z |
c++
| 2019-08-26T21:04:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,883 |
["atom/browser/ui/views/menu_bar.cc"]
|
[win] Crash 3221225477 when try to open devtools
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 5.0.0-beta.2
* **Operating System** (Platform and Version):
* Windows 7 Professional (SP1)
### Expected Behavior
Not crash
### Actual behavior
Crash 3221225477
### To Reproduce
https://github.com/Gvozd/electron-quick-start/tree/issue-16883
based on electron-quick-start. only updated electron to 5.0.0-beta.2
try to open devtools from menu - crash
|
https://github.com/electron/electron/issues/16883
|
https://github.com/electron/electron/pull/17164
|
8dcb5662e3b1cff27f6e1dd8d156ccff4d9be57b
|
ed31cfebc9ccdc713290d46ed62a752ddfb361eb
| 2019-02-11T21:14:11Z |
c++
| 2019-03-04T15:47:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,881 |
["atom/browser/api/stream_subscriber.cc", "atom/browser/api/stream_subscriber.h", "atom/browser/net/url_request_stream_job.cc", "atom/browser/net/url_request_stream_job.h"]
|
Electron 4.x freezing issue (possible webview/custom-stream-protocol connection)
|
* **Electron Version**: 4.0.4
* **Operating System** (Platform and Version): MacOS 10.14.3, but it's been reported by my users on Windows and Linux
* **Last known working Electron version** (if applicable): 3.x
Related issue: https://github.com/beakerbrowser/beaker/issues/1333
We started to experience renderer-process freeze-crashes once Beaker was upgraded to v4. When the freeze occurs, the program becomes unresponsive and has to be force-quit.
The freeze only seems to occur when visiting custom stream-protocol resources, and has some randomness to it. The best way I've found to reproduce the issue is to repeatedly refresh a webview which is pointed at a custom stream-protocol resource, which is what I've provided below.
### To Reproduce
https://github.com/pfrazee/electron-bug-webview-freeze
```bash
# Clone this repository
git clone https://github.com/pfrazee/electron-bug-webview-freeze
# Go into the repository
cd electron-bug-webview-freeze
# Install dependencies
npm install
# Run the app
npm start
```
The renderer has a webview embedded with a red border. It is viewing a custom stream-protocol resource (`custom://foo/index.html`).
Once a second, the webview is refreshed. A text-line will inform you of the last refresh time.
Eventually, the renderer process will freeze. It's not always consistent in the amount of time, so you may need to leave it running for a while.
|
https://github.com/electron/electron/issues/16881
|
https://github.com/electron/electron/pull/17221
|
b575631bb03b455c9addbdb2cac5d392075d441e
|
d4d6b9862f1a1cbc4199178cf80132956071fb8e
| 2019-02-11T20:23:30Z |
c++
| 2019-03-07T15:20:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,855 |
["atom/browser/atom_browser_main_parts_mac.mm"]
|
Crash on macOS when run from SMB network share
|
* **Electron Version**
* v2.0.17, v3.1.3, v4.0.x, and v5.0.0-beta-2
* **Operating System**
* macOS 10.13.6 and 10.14.3
### Expected behavior
App runs normally when run from a SMB share on macOS.
### Actual behavior
Crashes. This issue is does not occur on Windows.
### To Reproduce
Run any electron app from a SMB (Windows or Samba) network share on macOS.
### Additional Information
Crash from electron v5.0.0-beta-2 test app:
```Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [11815]
Application Specific Information:
dyld2 mode
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.github.Electron.framework 0x00000001094ed025 0x1076a3000 + 31760421
1 com.github.Electron.framework 0x00000001094ee8d3 0x1076a3000 + 31766739
2 com.github.Electron.framework 0x000000010b043e5c 0x1076a3000 + 60427868
3 com.github.Electron.framework 0x00000001094ee014 0x1076a3000 + 31764500
4 com.github.Electron.framework 0x00000001076a5214 AtomMain + 84
5 com.electron.test-app 0x000000010769cf10 0x10769c000 + 3856
6 libdyld.dylib 0x00007fff5eaebed9 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff5ecde3f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 2:
0 libsystem_pthread.dylib 0x00007fff5ecde3f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000000010d710eb0 rbx: 0x0000600002149d80 rcx: 0x0000000000000017 rdx: 0x0000000000000000
rdi: 0x00007ffee8563a60 rsi: 0x00007fff2f9353cb rbp: 0x00007ffee8563600 rsp: 0x00007ffee8563600
r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x000000010f8554d0 r11: 0x00007fff317d46b2
r12: 0x00007ffee8563620 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x00006000006458c0
rip: 0x00000001094ed025 rfl: 0x0000000000000246 cr2: 0x000000010da5b9d0
Logical CPU: 1
Error Code: 0x00000000
Trap Number: 3
```
Crash from Visual Studio Code (I believe it is using electron v3.1.2):
```Crashed Thread: Unknown
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_MEMORY_ERROR at 0x00000001040b6010
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Bus error: 10
Termination Reason: Namespace SIGNAL, Code 0xa
Terminating Process: exc handler [11845]
Backtrace not available
Unknown thread crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007ffeebb49c20 rcx: 0x0000000000000009 rdx: 0xca86f176c9840019
rdi: 0x00000001040b6000 rsi: 0x00007ffeebb49ee3 rbp: 0x00007ffeebb49b10 rsp: 0x00007ffeebb49b10
r8: 0x000000000000003d r9: 0x000000010611d248 r10: 0x000000000000000c r11: 0x0000000000000213
r12: 0x0000000000000001 r13: 0x00000001040b6000 r14: 0x00007ffeebb49bc0 r15: 0x00007ffeebb49bb0
rip: 0x000000010611e630 rfl: 0x0000000000010202 cr2: 0x00000001040b6010
Logical CPU: 3
Error Code: 0x00000004
Trap Number: 14
```
|
https://github.com/electron/electron/issues/16855
|
https://github.com/electron/electron/pull/17886
|
e9114b3c00b7b50cab96d18b9dd187f37ba603e3
|
316abe21f9882f93a2c37ea7dad181fba80be3d8
| 2019-02-09T01:00:41Z |
c++
| 2019-04-23T02:28:48Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,852 |
["docs/api/app.md"]
|
Need to document how app.setAsDefaultProtocolClient works in "windowsStore" environment
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* v4.0.4
* **Operating System** (Platform and Version):
* Windows 10 1809
* **Last known working Electron version** (if applicable):
* Not applicable
### Expected Behavior
`app.setAsDefaultProtocolClient("practically-anything")` should register a protocol handler, or fail and return `false`.
### Actual behavior
`app.setAsDefaultProtocolClient("practically-anything")` returns `true` but no protocol handler is registered.
### To Reproduce
This is a tricky one to reproduce, the bare minimum would be:
```typescript
import {app} from "electron";
app.on("ready", () => {
app.setAsDefaultProtocolClient("practically-anything");
});
```
and packaged as an `appx` with `electron-builder` or [with this guide](https://electronjs.org/docs/tutorial/windows-store-guide).
### Additional Information
Not sure if this is an Electron "bug" or just a specific case for appx distribution. Either way I'd love to hear from someone who knows more about this than me.
|
https://github.com/electron/electron/issues/16852
|
https://github.com/electron/electron/pull/16874
|
c77e1877420db0810fde09059ad14d68627f03ef
|
90ebd8eb12fd64cae2ca71a6d16aa2f4046fc098
| 2019-02-08T22:34:32Z |
c++
| 2019-02-11T18:51:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,821 |
["atom/browser/ui/cocoa/atom_menu_controller.mm"]
|
`enabled` property can not disable MenuItem(type: submenu)
|
**Is your feature request related to a problem? Please describe.**
`MenuItem`'s `enabled` property can not disable `submenu`

```javascript
...
label: "XXX",
type: "submenu",
enabled: false,
submenu: [
{
label: "HTML",
enabled: false
},
{
label: "Markdown",
enabled: false
},
{
label: "PDF",
enabled: false
}
]
},
...
```
|
https://github.com/electron/electron/issues/16821
|
https://github.com/electron/electron/pull/16835
|
d16b5811409445724c1db9d5f95b5aa9ad236be8
|
1898f9162073910c05958295c612deec6121a892
| 2019-02-07T19:55:52Z |
c++
| 2019-02-09T02:07:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,812 |
["patches/common/boringssl/.patches", "patches/common/boringssl/sync_sorted_ciphers.patch", "spec/node-spec.js"]
|
Expose cipher DES-EDE-CBC in Electron 4 crypto module
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* v4.0.0
* **Operating System** (Platform and Version):
* archlinux
* **Last known working Electron version** (if applicable):
* v3.1.3
Hi !
I just upgraded Electron from version 3 to version 4 and I noticed that the cipher DES-EDE-CBC is no longer exposed in the crypto module, which is breaking my app.
Is it possible to expose it again, as mentioned by @nornagon in #16195 ?
Thank you !
|
https://github.com/electron/electron/issues/16812
|
https://github.com/electron/electron/pull/16822
|
5478cc7e8e1530b075fc2988fe0de30e063536a9
|
cfba59929a2e669eccd9e013384f6e22ff72df0c
| 2019-02-07T13:41:19Z |
c++
| 2019-02-12T19:57:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,804 |
["atom/renderer/atom_render_frame_observer.cc", "spec/api-subframe-spec.js", "spec/fixtures/sub-frames/preload.js"]
|
Sub frames should get an isolated context when node is enabled in sub frames
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 5.x.x
### Expected Behavior
Context isolation should be enabled in subframes when the `nodeIntegrationInSubFrames` option is provided.
### Actual behavior
Context isolation is not enabled for node environments in subframes.
### To Reproduce
Enable `nodeIntegrationInSubFrames` and load any content in a subframe.
### Additional Information
See #16425 and https://github.com/electron/electron/blob/master/atom/renderer/atom_render_frame_observer.cc#L92-L104
I started working on a fix, but wasn't sure if the `preload_bundle` was actually being run in the correct context.
```diff
diff --git a/atom/renderer/atom_render_frame_observer.cc b/atom/renderer/atom_render_frame_observer.cc
index f8a54a199..b878954cc 100644
--- a/atom/renderer/atom_render_frame_observer.cc
+++ b/atom/renderer/atom_render_frame_observer.cc
@@ -12,6 +12,8 @@
#include "atom/common/heap_snapshot.h"
#include "atom/common/native_mate_converters/value_converter.h"
#include "atom/common/node_includes.h"
+#include "atom/common/options_switches.h"
+#include "base/command_line.h"
#include "base/strings/string_number_conversions.h"
#include "base/threading/thread_restrictions.h"
#include "base/trace_event/trace_event.h"
@@ -95,9 +97,17 @@ void AtomRenderFrameObserver::DidCreateScriptContext(
if (ShouldNotifyClient(world_id))
renderer_client_->DidCreateScriptContext(context, render_frame_);
- if (renderer_client_->isolated_world() && IsMainWorld(world_id) &&
- // Only the top window's main frame has isolated world.
- render_frame_->IsMainFrame() && !render_frame_->GetWebFrame()->Opener()) {
+ bool use_context_isolation = renderer_client_->isolated_world();
+ bool is_main_world = IsMainWorld(world_id);
+ bool is_main_frame = render_frame_->IsMainFrame();
+ bool is_not_opened = !render_frame_->GetWebFrame()->Opener();
+ bool allow_node_in_sub_frames =
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kNodeIntegrationInSubFrames);
+ bool should_create_isolated_context =
+ use_context_isolation && (is_main_frame || allow_node_in_sub_frames) && is_main_world && is_not_opened;
+
+ if (should_create_isolated_context) {
CreateIsolatedWorldContext();
renderer_client_->SetupMainWorldOverrides(context, render_frame_);
}
```
|
https://github.com/electron/electron/issues/16804
|
https://github.com/electron/electron/pull/17165
|
5581990d78e3601c00775dcbdcc48ca94d898015
|
8ec304f32f9d22997074cb7c8240bfa7d66e6a88
| 2019-02-07T03:44:08Z |
c++
| 2019-03-07T22:46:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,792 |
["atom/browser/api/atom_api_web_contents.cc", "lib/browser/api/web-contents.js"]
|
webContents.print() doesn't work under Windows
|
* **Electron Version** 4.0.4
* **Operating System** Windows 10 32 bit
* **Last known working Electron version** 3.1.3
### Expected Behavior
`webContents.print()` shold send print job to a printer
### Actual behavior
Nothing happens. Callback doesn't gets called.
`printToPDF` works though.
### To Reproduce
```
let deviceName = 'HP LaserJet 1020'
let options = {deviceName, silent: true}
win.webContents.print({}, (err) => {
if (!err)
console.error('printing failed')
})
```
|
https://github.com/electron/electron/issues/16792
|
https://github.com/electron/electron/pull/17052
|
944cdb4430a8b93187c4751bd0ba084d148158fd
|
1674388028da8196e5980db8adc90cca85234214
| 2019-02-06T20:51:38Z |
c++
| 2019-02-25T13:30:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,776 |
["atom/browser/native_window_mac.mm"]
|
BrowserWindow isVisible not returning accurate state
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.4
* **Operating System** (Platform and Version):
* macOS 10.14.2
* **Last known working Electron version** (if applicable):
* N/A also tested on 2.*.*
### Expected Behavior
According to the documentation, the isVisible method on a BrowserWindow instance should return, "Whether the window is visible to the user.". If the window is not visible to the user due to other application windows being in the foreground, the expected behavior is that `isVisible` will return false.
### Actual behavior
If the window is minimized, it correctly returns true.
If the window is not minimized, but occluded by other application windows, the value returns true. Based on the definition in the documentation, and a requirement for my application, this is not accurate.
### To Reproduce
Create any BrowserWindow instance, and execute a console log of the return value of `isVisible`, move the window behind other application windows, so that it is no longer visible on the user screen. The values returned will always return `true`, unless the window is minimized.
|
https://github.com/electron/electron/issues/16776
|
https://github.com/electron/electron/pull/17463
|
a82bbd010e5ef53edd758007f631e8a183da3cd3
|
b140a82fe88489910279f363d69358bf202070e1
| 2019-02-06T10:18:49Z |
c++
| 2019-03-20T22:33:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,774 |
["docs/tutorial/security.md"]
|
Security doc contains a weak URL check
|
The security doc (https://github.com/electron/electron/blob/master/docs/tutorial/security.md#4-handle-session-permission-requests-from-remote-content) contains a weak check of URL:
```js
const { session } = require('electron')
session
.fromPartition('some-partition')
.setPermissionRequestHandler((webContents, permission, callback) => {
const url = webContents.getURL()
if (permission === 'notifications') {
// Approves the permissions request
callback(true)
}
if (!url.startsWith('https://my-website.com')) { // can be bypassed with 'https://my-website.com.attacker.com'
// Denies the permissions request
return callback(false)
}
})
```
As noted in point 11 (https://github.com/electron/electron/blob/master/docs/tutorial/security.md#how-9) and point 12 (https://github.com/electron/electron/blob/master/docs/tutorial/security.md#how-10) such check can be bypassed.
Like any other security documentation this should be avoided in order to provide only solid code. I will provide a pull-request in a few minutes to add a '/' at the end of the url.
|
https://github.com/electron/electron/issues/16774
|
https://github.com/electron/electron/pull/16775
|
76d919fff52dc5ad1fb9dd8766652ed23d815591
|
c76459738e720867a1b70e00c94a79081d4c8c49
| 2019-02-06T10:07:51Z |
c++
| 2019-02-06T18:43:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,773 |
["docs/api/webview-tag.md"]
|
WebView docs should reference the "webviewTag" webPreferences option
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* <!-- e.g. 4.0.3 --> 5.0.0-beta.2
* **Operating System** (Platform and Version):
* <!-- e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> macOS 10.13.6 / Windows 10
* **Last known working Electron version** (if applicable):
* <!-- e.g. 3.1.0 --> 4.0.4
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
Webview shows something.
### Actual behavior
<!-- A clear and concise description of what actually happened. -->
Webview shows nothing and no error is thrown.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
-->
`<webview
src="https://github.com/electron/electron"
style="display:inline-flex; width:640px; height:480px"
></webview>`
|
https://github.com/electron/electron/issues/16773
|
https://github.com/electron/electron/pull/16879
|
ccc60a1f337ca033c80f7352d1dc8e36102833ed
|
5301808926e1933c25121163c51bdda20266efbf
| 2019-02-06T09:47:56Z |
c++
| 2019-02-11T20:38:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,747 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "atom/browser/mac/atom_application.h", "atom/browser/ui/atom_menu_model.cc", "atom/browser/ui/atom_menu_model.h", "atom/browser/ui/cocoa/atom_menu_controller.mm", "docs/api/menu-item.md", "lib/browser/api/menu-item.js", "lib/browser/api/menu.js"]
|
Setting a MenuItem to visible: false also disables it
|
* **Electron Version** (output of `node_modules/.bin/electron --version`):
* 4.0.4
* **Operating System** (Platform and Version):
* macOS 10.14.3
* **Last known working Electron version** (if applicable):
* unknown
### Expected Behavior
Setting a MenuItem to `visible: false` will hide it from the menu but **not** disable it.
See documentation https://electronjs.org/docs/api/menu-item
### Actual behavior
MenuItem is hidden AND disabled
### To Reproduce
https://github.com/aaronraimist/electron-quick-start/tree/visible-false
There should be one menu item visible (zoomin) and zoom out should also work but it doesn't.
(my issue is with zoomin but since that is kind of broken I did the demo with zoomout)
Menu code looks like
```
const template = [
{
label: 'View',
submenu: [
{ role: 'zoomin' },
{ role: 'zoomout', visible: false },
],
}
]
```
```sh
# Clone this repository
git clone https://github.com/electron/electron-quick-start
# Go into the repository
cd electron-quick-start
# Checkout branch
git checkout visible-false
# Install dependencies
npm install
# Run the app
npm start
```
### Additional Information
I'm trying to work around https://github.com/electron/electron/issues/15496 by creating two menu items, one visible and one invisible but it doesn't work. See https://github.com/vector-im/riot-web/pull/8381
|
https://github.com/electron/electron/issues/16747
|
https://github.com/electron/electron/pull/16853
|
6d55498cc7a61c17d02cdfafc1623dc3c09ba209
|
544d8a423c70e7c3dec67662ee2fbb600506105c
| 2019-02-05T19:15:31Z |
c++
| 2019-02-28T17:00:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,714 |
["atom/common/keyboard_util.cc", "docs/api/accelerator.md"]
|
Add 2 more keys for globalshortcuts: capslock & fn
|
**Is your feature request related to a problem? Please describe.**
The Caps Lock and Fn keys are useful to some, and not others. I would greatly enjoy being able to use these keys as modifiers for something more useful to me.
**Describe the solution you'd like**
Add global shortcuts support for the cap locks and fn keys. While these keys are not useless and are not proper modifier keys, I feel that the design choice should be left to the app developer.
**Describe alternatives you've considered**
The only alternative would be to use a keypress listener/sender to 'remap' the key to something Electron supports; or substitute electron's shortcut functionality completely.
**Additional context**
Using a 3rd party keypress listener does not feel safe.
|
https://github.com/electron/electron/issues/16714
|
https://github.com/electron/electron/pull/16719
|
f142aae9eb23ca13ab70314d01be2f68ef68374d
|
698d348168e727b238969cd7201ac61efbadda0e
| 2019-02-04T16:22:15Z |
c++
| 2019-02-04T23:54:59Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.