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
| 30,026 |
["shell/browser/native_window_mac.mm"]
|
[Bug]: Traffic lights re-appear in fullscreen on macOS
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.5
### What operating system are you using?
macOS
### Operating System Version
macOS Catalina version 10.15.7
### What arch are you using?
x64
### Last Known Working Electron version
11.2.0
### Expected Behavior
Creating a `browserWindow` with `titleBarStyle: "hidden"` , then going into full screen mode, then setting a browserView on the window, should not change the way traffic lights are displayed.
### Actual Behavior
When using a `browserWindow` with `titleBarStyle: "hidden"` , going into full screen, and then setting a `browserView` on that window, the traffic lights will re-appear.
### Testcase Gist URL
https://gist.github.com/45f0a58d69bec2834535e57768363572
### Additional Information
It also is problematic because after leaving the full screen, we end up with 2 sets of traffic lights, but that is just a consequence of the initial bug I think:

|
https://github.com/electron/electron/issues/30026
|
https://github.com/electron/electron/pull/30114
|
05ba6359d016a6c80f24d4e1573eafcaf796cd42
|
3f38681c55640fd64f056b6ebac57e2700eb37ea
| 2021-07-06T09:42:12Z |
c++
| 2021-07-14T23:45:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 30,024 |
["patches/chromium/.patches", "patches/chromium/feat_add_set_can_resize_mutator.patch", "patches/chromium/fix_remove_caption-removing_style_call.patch", "shell/browser/native_window_views.cc"]
|
[Bug]: Windows 7 frame is shown on load with frame: false and resizable: false
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.6
### What operating system are you using?
Windows
### Operating System Version
Windows 11 build 22000.51
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Show just a white (or a custom background color) window. Like this initial screen:

The screenshot was taken without **frame: false** and **resizable: false**:
```
const { app, BrowserWindow } = require('electron');
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
});
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow();
})
app.on('window-all-closed', function () {
app.quit()
})
```
### Actual Behavior
Windows 7 style frame is shown for a second when I create a BrowserWindow with **frame: false** and **resizable: false**

### Testcase Gist URL
https://gist.github.com/facuparedes/97e6238ce8d5e132a0f03b4de3eb84a0
### Additional Information
Maybe related to #30022
I found on Google a post made on 2019/04/11 about the issue: https://discuss.atom.io/t/windows-7-frame-is-shown-on-load-win-10/64339
However, that forum was deleted, so we can't see the full page. We can only see this: https://webcache.googleusercontent.com/search?q=cache:wB91NYnTYAIJ:https://discuss.atom.io/t/windows-7-frame-is-shown-on-load-win-10/64339+&cd=1&hl=en&ct=clnk&gl=ca
_(Extracted from that URL)_
> When frame is set to false, an old windows native frame is shown just before app is loaded.
>
> 
A workaround: set **resizable: true** _(or remove it)_ and then change that with **setResizable()**. Like this:
```
const { app, BrowserWindow } = require('electron');
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
frame: false,
});
win.setResizable(false);
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow();
})
app.on('window-all-closed', function () {
app.quit()
})
```
_Note at the **win.setResizable(false);** line._
Although this workaround fixes this issue, #30022 persists.
|
https://github.com/electron/electron/issues/30024
|
https://github.com/electron/electron/pull/35365
|
79454dc50dfaff7ea2872f3f0724251f4b4bc901
|
ce138fe96954b23c76583b5c1af3abbff0b2f661
| 2021-07-06T05:50:21Z |
c++
| 2022-10-13T15:39:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,969 |
["shell/browser/api/electron_api_browser_window.cc", "spec-main/fixtures/crash-cases/native-window-open-exit/index.html", "spec-main/fixtures/crash-cases/native-window-open-exit/index.js", "spec-main/fixtures/crash-cases/native-window-open-exit/preload.js"]
|
Segfault when calling `BrowserWindow::DidFirstVisuallyNonEmptyPaint`
|
Test case: https://gist.github.com/c45a3d632e1740fad6d3d8bb351af654. Reproduces on macOS 100% of the time.
```
2:03:30 PM Received signal 11 SEGV_MAPERR 000000000018
2:03:30 PM 0 Electron Framework 0x0000000115292649 base::debug::CollectStackTrace(void**, unsigned long) + 9
2:03:30 PM 1 Electron Framework 0x00000001151ab783 base::debug::StackTrace::StackTrace() + 19
2:03:30 PM 2 Electron Framework 0x00000001152925a1 base::debug::(anonymous namespace)::StackDumpSignalHandler(int, __siginfo*, void*) + 1329
2:03:30 PM 3 libsystem_platform.dylib 0x00007fff696df5fd _sigtramp + 29
2:03:30 PM 4 ??? 0x00000000000005d5 0x0 + 1493
2:03:30 PM 5 Electron Framework 0x00000001109cf2d8 non-virtual thunk to electron::api::BrowserWindow::DidFirstVisuallyNonEmptyPaint() + 24
2:03:30 PM 6 Electron Framework 0x00000001144d9f9b void content::WebContentsImpl::WebContentsObserverList::NotifyObservers<void (content::WebContentsObserver::*)()>(void (content::WebContentsObserver::*)()) + 475
2:03:30 PM 7 Electron Framework 0x0000000114500156 content::WebContentsImpl::DidFirstVisuallyNonEmptyPaint(content::RenderViewHostImpl*) + 102
2:03:30 PM 8 Electron Framework 0x0000000112037738 blink::mojom::FrameWidgetHostStubDispatch::Accept(blink::mojom::FrameWidgetHost*, mojo::Message*) + 1928
2:03:30 PM 9 Electron Framework 0x000000011569a5ef mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message*) + 623
2:03:30 PM 10 Electron Framework 0x00000001156a0a6f mojo::MessageDispatcher::Accept(mojo::Message*) + 271
2:03:30 PM 11 Electron Framework 0x000000011569c15d mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message*) + 61
2:03:30 PM 12 Electron Framework 0x0000000115a2ce96 IPC::(anonymous namespace)::ChannelAssociatedGroupController::AcceptOnEndpointThread(mojo::Message) + 710
2:03:30 PM 13 Electron Framework 0x0000000115a29b0c base::internal::Invoker<base::internal::BindState<void (IPC::(anonymous namespace)::ChannelAssociatedGroupController::*)(mojo::Message), scoped_refptr<IPC::(anonymous namespace)::ChannelAssociatedGroupController>, mojo::Message>, void ()>::RunOnce(base::internal::BindStateBase*) + 140
2:03:30 PM 14 Electron Framework 0x0000000115229c6b base::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 411
2:03:30 PM 15 Electron Framework 0x000000011524e35e base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*) + 974
2:03:30 PM 16 Electron Framework 0x000000011524dacb base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWork() + 107
2:03:30 PM 17 Electron Framework 0x000000011524e982 non-virtual thunk to base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWork() + 18
2:03:30 PM 18 Electron Framework 0x00000001152a9703 base::MessagePumpCFRunLoopBase::RunWork() + 83
2:03:30 PM 19 Electron Framework 0x00000001152a24c2 base::mac::CallWithEHFrame(void () block_pointer) + 10
2:03:30 PM 20 Electron Framework 0x00000001152a911f base::MessagePumpCFRunLoopBase::RunWorkSource(void*) + 63
2:03:30 PM 21 CoreFoundation 0x00007fff2f446832 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
2:03:30 PM 22 CoreFoundation 0x00007fff2f4467d1 __CFRunLoopDoSource0 + 103
2:03:30 PM 23 CoreFoundation 0x00007fff2f4465eb __CFRunLoopDoSources0 + 209
2:03:30 PM 24 CoreFoundation 0x00007fff2f44531a __CFRunLoopRun + 927
2:03:30 PM 25 CoreFoundation 0x00007fff2f44491e CFRunLoopRunSpecific + 462
2:03:30 PM 26 HIToolbox 0x00007fff2e070abd RunCurrentEventLoopInMode + 292
2:03:30 PM 27 HIToolbox 0x00007fff2e0707d5 ReceiveNextEventCommon + 584
2:03:30 PM 28 HIToolbox 0x00007fff2e070579 _BlockUntilNextEventMatchingListInModeWithFilter + 64
2:03:30 PM 29 AppKit 0x00007fff2c6b7039 _DPSNextEvent + 883
2:03:30 PM 30 AppKit 0x00007fff2c6b5880 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352
2:03:30 PM 31 AppKit 0x00007fff2c6a758e -[NSApplication run] + 658
2:03:30 PM 32 Electron Framework 0x00000001152aa2ec base::MessagePumpNSApplication::DoRun(base::MessagePump::Delegate*) + 348
2:03:30 PM 33 Electron Framework 0x00000001152a8ab3 base::MessagePumpCFRunLoopBase::Run(base::MessagePump::Delegate*) + 131
2:03:30 PM 34 Electron Framework 0x000000011524eeeb base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) + 651
2:03:30 PM 35 Electron Framework 0x00000001152027c0 base::RunLoop::Run(base::Location const&) + 880
2:03:30 PM 36 Electron Framework 0x0000000113ddb396 content::BrowserMainLoop::RunMainMessageLoop() + 246
2:03:30 PM 37 Electron Framework 0x0000000113ddd112 content::BrowserMainRunnerImpl::Run() + 82
2:03:30 PM 38 Electron Framework 0x0000000113dd860b content::BrowserMain(content::MainFunctionParams const&) + 251
2:03:30 PM 39 Electron Framework 0x00000001123587bb content::ContentMainRunnerImpl::RunBrowser(content::MainFunctionParams&, bool) + 1419
2:03:30 PM 40 Electron Framework 0x00000001123581c0 content::ContentMainRunnerImpl::Run(bool) + 528
2:03:30 PM 41 Electron Framework 0x00000001123570bd content::RunContentProcess(content::ContentMainParams const&, content::ContentMainRunner*) + 2653
2:03:30 PM 42 Electron Framework 0x00000001123571ac content::ContentMain(content::ContentMainParams const&) + 44
2:03:30 PM 43 Electron Framework 0x0000000110993ef7 ElectronMain + 135
2:03:30 PM 44 Electron 0x0000000109933cea main + 298
2:03:30 PM 45 libdyld.dylib 0x00007fff694e6cc9 start + 1
2:03:30 PM 46 ??? 0x0000000000000004 0x0 + 4
```
|
https://github.com/electron/electron/issues/29969
|
https://github.com/electron/electron/pull/30218
|
eca1098b55a96578352a7ab95d25ed99082769a8
|
b24cfe17bc14961c982e0e6eb594b33733e0cd2e
| 2021-06-30T21:04:42Z |
c++
| 2021-07-22T13:38:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,942 |
["shell/browser/api/electron_api_web_contents.cc", "spec-main/api-web-contents-spec.ts"]
|
[Bug]: window created with empty url and native window open updates to empty title
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.2
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.4
### What arch are you using?
x64
### Last Known Working Electron version
unknown
### Expected Behavior
With `nativeWindowOpen` option enabled:
When opening a child window with an empty url, e.g. `newWin = window.open('', '_blank')`, this should open `about:blank`. Setting the title on the document for this child window should then update the title in the titlebar for the window, e.g. `newWin.document.title = 'New Title'` should show `'New Title'` in the titlebar
### Actual Behavior
When opening a child window with an empty url with `nativeWindowOpen` and then using the window handle to set the child window's document title, the title goes blank and on Mac is removed from the window list on the dock icon.
Steps to reproduce below.
### Testcase Gist URL
https://gist.github.com/aluo-lmi/afd7cd7887b2d00409cb10d4d7e0103d
### Additional Information
Steps to reproduce with gist above:
1. Run sample -> it will open two child windows: `Child 1` is opened with `'about:blank'` explicitly provided as url and `Child 2` with an empty string. Both open to `'about:blank'`
2. Press the `Set child 1 title` button -> observe that updating the document title updates the title in the window's titlebar
3. Press the `Set child 2 title` button -> the window's titlebar becomes blank and right clicking the dock icon no longer shows the window in the list
|
https://github.com/electron/electron/issues/29942
|
https://github.com/electron/electron/pull/29946
|
675bbfe0925ec0c1f1d920ed9006167d5606fda9
|
a8b3c22518ae6f55ce398d9c7604f1fa9eb30dc5
| 2021-06-29T16:56:39Z |
c++
| 2021-06-30T17:53:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,937 |
["docs/api/browser-window.md", "docs/api/structures/browser-window-options.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_views.cc", "shell/browser/native_window_views.h", "shell/common/options_switches.cc", "shell/common/options_switches.h"]
|
[Feature Request]: Use new 'Mica' material for BrowserWindow vibrancy in Windows 11
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Problem Description
At the moment, [`setVibrancy()`](https://www.electronjs.org/docs/api/browser-window#winsetvibrancytype-macos) for `BrowserWindow` only supports macOS. Windows 10 has had a similar material called Acrylic, but Electron is yet to add support for it.
### Proposed Solution
With Windows 11, Microsoft is introducing a more performant material dubbed Mica.
From [Microsoft:](https://docs.microsoft.com/en-us/windows/apps/design/style/mica)
> Mica is an opaque, dynamic material that incorporates theme and desktop wallpaper to paint the background of long-lived windows such as apps and settings. You can apply Mica to your application backdrop to delight users and create visual hierarchy, aiding productivity, by increasing clarity about which window is in focus. Mica is specifically designed for app performance as it only samples the desktop wallpaper once to create its visualization.
The new Mica material is a prominent part of the Windows 11 visual design. Adding support for Mica to `setVibrancy()` in Electron would greatly elevate the design of many apps, and enable the visual look of Electron apps to be in line with modern Windows experiences.
### Alternatives Considered
The following libraries currently allow apps to use Acrylic as an alternative to `vibrancy` in Windows 10:
* https://github.com/Seo-Rii/electron-acrylic-window
* https://github.com/AryToNeX/Glasstron
### Additional Information
N/A
|
https://github.com/electron/electron/issues/29937
|
https://github.com/electron/electron/pull/38163
|
c2d7164021011df7c31bbc09f824311535323793
|
e19500fa03bf08af1466dac5dbca39f1b4281d9c
| 2021-06-29T09:02:10Z |
c++
| 2023-05-15T20:31:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,926 |
["docs/api/app.md", "shell/browser/api/electron_api_app.cc", "shell/browser/api/electron_api_app.h", "shell/browser/browser.h", "shell/browser/browser_mac.mm", "shell/browser/browser_observer.h", "shell/browser/mac/electron_application_delegate.mm"]
|
[Feature Request]: macOS: Support webpageURL parameter in handoff API
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Problem Description
Hi,
My team is trying to support universal linking in our application. Currently, in order to receive a handoff event from the browser, the application needs to listen to `continue-activity` event which provides `type` and `userInfo`. As per the Apple documentation [here](https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/Handoff/AdoptingHandoff/AdoptingHandoff.html#//apple_ref/doc/uid/TP40014338-CH2-SW10), the browser sends the app an `NSUserActivity` object with an `activityType` value of `NSUserActivityTypeBrowsingWeb`. The `webpageURL` property contains the URL the user was visiting, while the `userInfo` dictionary is empty.
To provide a smooth handoff our application needs to know the URL the user is navigating from. Therefore, it would be great if the `webpageURL` parameter is exposed in `continue-activity` event.
### Proposed Solution
The `NSUserActivity` object contains the `webpageURL` property which is set during the handoff process.
I don't have any experience with Objective C but I believe the `webpageURL` property on the `userActivity` object can be allowed to pass [here](https://github.com/electron/electron/blob/da2baabb96161ea08a15820451f9374d63b4d678/shell/browser/mac/electron_application_delegate.mm#L161) to make it accessible.
https://github.com/electron/electron/blob/da2baabb96161ea08a15820451f9374d63b4d678/shell/browser/mac/electron_application_delegate.mm#L161
### Alternatives Considered
-
### Additional Information
The application needs to know the URL from where the user is navigating to provide a customized handoff experience.
|
https://github.com/electron/electron/issues/29926
|
https://github.com/electron/electron/pull/30042
|
3582a513ca795e41db8158fb9f4d0c6b1a21c097
|
d267f979b75f98c0f1a8ec5c4cad819babd6643e
| 2021-06-28T20:34:30Z |
c++
| 2021-07-13T20:21:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,911 |
["docs/api/ipc-main.md"]
|
[Doc] Update ipcMain page with nodeIntegration and contextIsolation
|
Sorry if this ends up at the wrong place but here is a bit of feedback on the documentation.
**Background**
I ran into issues with ipcMain and could resolve it within a reasonable time but only because I could remember hearing about it from several discussions online. I noticed that the relevant documentation doesn't mention and/or reference these settings in a clear and obvious way. So here is my improvement suggestion:
**Improvement**
Update the ipcMain page with information regarding the following settings:
- nodeIntegration
- contextIsolation
One or both settings are a precondition for that feature (_I am not completely sure on the details_).
I would personally expect the following information:
- Something attention grabbing (_blinking rainbow text?_)
- Introduction to the settings
- When to use them
- Potential issues
- Example on how to change them
Parts of this information could be located on a different "settings" page but I would at least expect some basic information that grabs your attention and introduces you to these preconditions.
document: https://www.electronjs.org/docs/api/ipc-main
|
https://github.com/electron/electron/issues/29911
|
https://github.com/electron/electron/pull/29918
|
257b796856ba40dd12ac862def11deb8f63b8932
|
550d3c11a857c209524b2f835880e7a555d114fa
| 2021-06-27T20:08:05Z |
c++
| 2021-07-06T17:27:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,909 |
["shell/browser/electron_browser_client.cc"]
|
[Bug]: GetDefaultDownloadDirectory doesn't honour the user-defined Downloads directory
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
main
### What operating system are you using?
All OSes.
### What arch are you using?
All archs.
### Last Known Working Electron version
N/A
### Expected Behavior
[`ElectronBrowserClient::GetDefaultDownloadDirectory()`](https://github.com/electron/electron/blob/main/shell/browser/electron_browser_client.cc#L1013-L1019) is hardcoded to return `~/Downloads`. However, this might not be the actual downloads directory path (eg: if the user has changed it or on OSes which translate user directory names).
The proper way to get the current user's downloads directory is OS-dependent:
- On Linux it is set in the env var `$XDG_DOWNLOAD_DIR`
- On Windows it is returned by [`SHGetKnownFolderPath`](https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shgetknownfolderpath) passing in `FOLDERID_Downloads`
- On MacOS it is returned by [`URLForDirectory`](https://developer.apple.com/documentation/foundation/nsfilemanager/1407693-urlfordirectory) passing in `NSDownloadsDirectory`
### Current Behavior
`~/Downloads` is [hardcoded](https://github.com/electron/electron/blob/main/shell/browser/electron_browser_client.cc#L1013-L1019).
|
https://github.com/electron/electron/issues/29909
|
https://github.com/electron/electron/pull/29938
|
372ecf32e6c5ec4a549657f76dc71b3a423b8278
|
98809d8d64a9eddcd9f170ae830dceb0e7e27b13
| 2021-06-27T17:06:49Z |
c++
| 2021-06-30T20:54:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,859 |
["shell/browser/native_browser_view_views.cc", "shell/browser/native_browser_view_views.h", "shell/browser/ui/views/inspectable_web_contents_view_views.h"]
|
[Bug]: BrowserViews do not load their webContents
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
v14.0.0-nightly.20210426
### What operating system are you using?
Windows
### Operating System Version
Windows 10
### What arch are you using?
x64
### Last Known Working Electron version
v14.0.0-nightly.20210413
### Expected Behavior
`BrowserViews` load their `webContents`
### Actual Behavior
BrowserViews will not load `webContents` properly.
### Testcase Gist URL
https://gist.github.com/712a2fde2757736c9dbf6c3e7e0aa18b
### Additional Information
Bisected range: https://github.com/electron/electron/compare/v14.0.0-nightly.20210413...v14.0.0-nightly.20210426
|
https://github.com/electron/electron/issues/29859
|
https://github.com/electron/electron/pull/29919
|
9cc1b556632b4840dcb8787cdb29e0ad285b5c94
|
639f03977f97d53913f294231cd1ea973449ccf7
| 2021-06-23T08:19:29Z |
c++
| 2021-07-29T23:59:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,845 |
["docs/api/web-contents.md", "shell/common/gin_converters/blink_converter.cc", "shell/common/gin_converters/blink_converter.h", "shell/common/gin_converters/content_converter.cc"]
|
[Feature Request]: expose `location` property in `before-input-event`
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.3, but from what I could find this has never existed/worked
### What operating system are you using?
Other Linux
### Operating System Version
All
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Keyboard events executed inside some kind of webContents frame should include the `.location` property to determine reliably where the key is located on the keyboard.
- [MDN docs for `event.location`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/location)
- [Electron method in question](https://www.electronjs.org/docs/api/web-contents#event-before-input-event)
### Actual Behavior
There are a bunch of other properties of the event, some of which might be used in a hacky way to guess if the key is for example a numpad key or a right/left control key. None of these solve the issue of the missing location property of events, which is there exactly to no longer guess which position based on the name.
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29845
|
https://github.com/electron/electron/pull/29850
|
1897b14af36a02e9aa7e4d814159303441548251
|
4d0475c9ce9d0a7695f5f5aa7901a6750fce7260
| 2021-06-22T16:10:28Z |
c++
| 2021-07-14T11:50:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,820 |
["shell/browser/native_window_mac.mm"]
|
[Bug]: DCHECK in remote_cocoa/app_shim/native_widget_ns_window_bridge.mm
|
When creating a child window for a given window, if the child window is shown and then the parent window is hidden, a DCHECK is triggered in [`components/remote_cocoa/app_shim/native_widget_ns_window_bridge.mm`](https://source.chromium.org/chromium/chromium/src/+/main:components/remote_cocoa/app_shim/native_widget_ns_window_bridge.mm;l=1473?q=NotifyVisibilityChangeDown&ss=chromium%2Fchromium%2Fsrc:components%2Fremote_cocoa%2Fapp_shim%2F)
Reproducible by adding
```js
const child = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
},
parent: mainWindow
})
mainWindow.hide()
```
to the default Fiddle.
<details>
<Summary>Stacktrace</Summary>
```
[82397:0621/162628.490646:FATAL:native_widget_ns_window_bridge.mm(1475)] Check failed: 0u == CountBridgedWindows([window_ childWindows]) (0 vs. 1)
0 Electron Framework 0x000000011a4918c9 base::debug::CollectStackTrace(void**, unsigned long) + 9
1 Electron Framework 0x000000011a3ad603 base::debug::StackTrace::StackTrace() + 19
2 Electron Framework 0x000000011a3c8a5f logging::LogMessage::~LogMessage() + 175
3 Electron Framework 0x000000011a3c99de logging::LogMessage::~LogMessage() + 14
4 Electron Framework 0x000000011c042e7f remote_cocoa::NativeWidgetNSWindowBridge::NotifyVisibilityChangeDown() + 927
5 Electron Framework 0x000000011c042aa2 remote_cocoa::NativeWidgetNSWindowBridge::OnVisibilityChanged() + 146
6 Electron Framework 0x000000011c038380 -[NativeWidgetMacNSWindow orderWindow:relativeTo:] + 80
7 Electron Framework 0x0000000115bf1da3 gin_helper::Dispatcher<void (electron::api::BaseWindow*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 339
8 Electron Framework 0x0000000117698d59 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) + 1241
9 Electron Framework 0x0000000117696afd v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments) + 1997
10 Electron Framework 0x00000001176944c3 v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) + 547
11 Electron Framework 0x000000011769400d v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*) + 109
12 ??? 0x000000260008dd38 0x0 + 163209338168
13 ??? 0x000000260000e141 0x0 + 163208814913
14 ??? 0x000000260000e141 0x0 + 163208814913
Task trace:
0 Electron Framework 0x000000011a89c5dc mojo::SimpleWatcher::ArmOrNotify() + 348
1 Electron Framework 0x000000011a89cecf mojo::SimpleWatcher::Context::Notify(unsigned int, MojoHandleSignalsState, unsigned int) + 447
[82403:0621/162628.699659:ERROR:child_thread_impl.cc(228)] Invalid PlatformChannel receive right
[82403:0621/162628.699705:FATAL:invitation.cc(312)] Check failed: handle_.is_valid().
0 Electron Framework 0x00000001185f78c9 base::debug::CollectStackTrace(void**, unsigned long) + 9
1 Electron Framework 0x0000000118513603 base::debug::StackTrace::StackTrace() + 19
2 Electron Framework 0x000000011852ea5f logging::LogMessage::~LogMessage() + 175
3 Electron Framework 0x000000011852f9de logging::LogMessage::~LogMessage() + 14
4 Electron Framework 0x0000000118a00f62 mojo::IncomingInvitation::ExtractMessagePipe(base::BasicStringPiece<char, std::__1::char_traits<char> >) + 194
5 Electron Framework 0x0000000118a0102b mojo::IncomingInvitation::ExtractMessagePipe(unsigned long long) + 27
6 Electron Framework 0x000000011a1e2317 content::ChildThreadImpl::Init(content::ChildThreadImpl::Options const&) + 1591
7 Electron Framework 0x000000011a1e19f7 content::ChildThreadImpl::ChildThreadImpl(base::RepeatingCallback<void ()>, content::ChildThreadImpl::Options const&) + 647
8 Electron Framework 0x000000011d7bef38 content::RenderThreadImpl::RenderThreadImpl(base::RepeatingCallback<void ()>, std::__1::unique_ptr<blink::scheduler::WebThreadScheduler, std::__1::default_delete<blink::scheduler::WebThreadScheduler> >) + 168
9 Electron Framework 0x000000011d7d0d6e content::RendererMain(content::MainFunctionParams const&) + 1134
10 Electron Framework 0x00000001156ca3c6 content::ContentMainRunnerImpl::Run(bool) + 502
11 Electron Framework 0x00000001156c92dd content::RunContentProcess(content::ContentMainParams const&, content::ContentMainRunner*) + 2653
12 Electron Framework 0x00000001156c93cc content::ContentMain(content::ContentMainParams const&) + 44
13 Electron Framework 0x0000000113d2b2e7 ElectronMain + 135
14 Electron Helper (Renderer) 0x000000010c748aca main + 458
15 libdyld.dylib 0x00007fff2049cf5d start + 1
Electron exited with signal SIGTRAP.
```
</details>
|
https://github.com/electron/electron/issues/29820
|
https://github.com/electron/electron/pull/29821
|
9b5dd5380f40d8feaea4f911ca8b9d224e41315c
|
f9bfd1da2522bcdc2cff43065ea90666e3693dd0
| 2021-06-21T14:26:41Z |
c++
| 2021-06-24T18:43:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,778 |
["shell/browser/ui/views/inspectable_web_contents_view_views.cc"]
|
[Bug]: Setting the BackgroundColor to the BrowserView doesn't work on Windows
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.*, 12.*, 13.*
### What operating system are you using?
Windows
### Operating System Version
Windows 10
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
`setBackgroundColor()` should set the background to the browser view.
### Actual Behavior
The content of the BrowserView is still transparent.

### Testcase Gist URL
https://gist.github.com/ddramone/712a2fde2757736c9dbf6c3e7e0aa18b
### Additional Information
### Additional unusual behavior:
I tried to remove the background color from the parent BrowserWindow. As a result
* **BrowserView that is fully visible** in the screen _(right)_ picks up its own background. But it is blended through the renderer content.
* Another **BrowserView that is partially visible** on the screen _(left)_ still doesn't pick up its own background.
see the screenshot:

---
_figma.com is the example that doesn't have the background color to the document body._
|
https://github.com/electron/electron/issues/29778
|
https://github.com/electron/electron/pull/30510
|
94111c9d5c350a1b127ad0b284d9777bc5481542
|
fcce2b16d5f965803b8389d254a9f117e91f5a34
| 2021-06-18T16:17:05Z |
c++
| 2021-08-16T10:26:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,758 |
["shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: App hijacks focus from `win.previewFile` since v12.0.9
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.9
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.4
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
12.0.8
### Expected Behavior
When using [`win.previewFile`](https://www.electronjs.org/docs/api/browser-window#winpreviewfilepath-displayname-macos), it is expected that pressing spacebar or escape would dismiss the preview window.
### Actual Behavior
Nothing happens, or rather your app is still receiving the shortcuts and the preview window is not.
### Testcase Gist URL
_No response_
### Additional Information
Given the very small [v12.0.9](https://www.electronjs.org/releases/stable?version=12#12.0.9) update, it would be safe to assume that #29235 is responsible for this regression.
Not sure if relevant, but:
**Before**
When calling `win.previewFile` it used to trigger a `blur` followed by an immediate `focus` event on `window`:
<img width="165" alt="CleanShot 2021-06-17 at 14 09 45@2x" src="https://user-images.githubusercontent.com/436043/122451016-b0d7fb80-cf75-11eb-83f2-f9672f41d93e.png">
**Now**
When calling `win.previewFile` it triggers this pair of events 4 times in a row:
<img width="188" alt="CleanShot 2021-06-17 at 14 08 50@2x" src="https://user-images.githubusercontent.com/436043/122450921-96058700-cf75-11eb-8be4-7ab4c2650474.png">
|
https://github.com/electron/electron/issues/29758
|
https://github.com/electron/electron/pull/29857
|
98f617e856ac153f3d6ebc0e7421376adcd8c6fa
|
ccfde6c9d44e64621e2c3a92e5113c1d26e61d67
| 2021-06-17T18:12:24Z |
c++
| 2021-07-09T20:38:25Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,732 |
["shell/browser/api/electron_api_base_window.cc", "shell/browser/api/electron_api_base_window.h", "shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: Wrong main window hidden state on macOS when using 'parent' option
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.2
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.4
### What arch are you using?
x64
### Last Known Working Electron version
11.4.5
### Expected Behavior
- create the main window with `show: false` option
- create the child window with a loading spinner and show it immediately
- after 10 sec hide the child window and show the main one
### Actual Behavior
The main window is shown along with the child window, disregarding the `show: false` flag. This behavior is seen only on macOS.
### Testcase Gist URL
https://gist.github.com/f2a3a5e8d9130223f18b8ddade390f20
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29732
|
https://github.com/electron/electron/pull/29813
|
6e310b7424c1b6bb22f69a0fadd869f44913ed04
|
129f92e1fad4620869474cc2e4b18b9a8c203a5a
| 2021-06-16T16:17:15Z |
c++
| 2021-06-23T06:09:09Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,702 |
["docs/tutorial/installation.md"]
|
[Bug]: Conflicting behaviour between ELECTRON_SKIP_BINARY_DOWNLOAD option and JS imports
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.9
### What operating system are you using?
macOS
### Operating System Version
MacOS BigSur 11.2.2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
According to the documentation (https://www.electronjs.org/docs/tutorial/installation#skip-binary-download), it is possible to install the electron package without downloading the electron binaries thanks to the ELECTRON_SKIP_BINARY_DOWNLOAD=1 env var.
This can be useful to save time & bandwidth on CI Jobs where electron is only needed as a JS lib (where requiring only ipcMain for example).
### Actual Behavior
When importing any stuff from electron in a JS lib, electron throws an error when the binary is not present.
```
● Test suite failed to run
Electron failed to install correctly, please delete node_modules/electron and try installing again
> 1 | import { BrowserWindow, ipcMain } from 'electron';
| ^
at getElectronPath (../my-lib/node_modules/electron/index.js:14:11)
at Object.<anonymous> (../my-lib/node_modules/electron/index.js:18:18)
```
### Testcase Gist URL
_No response_
### Additional Information
IMO this is a bug, we should not need to download the binary when we're not running it.
If this is not the case, then I think it should be mentioned in the docs that even if we skipped the binary download, we should still provide a binary (e.g. with the ELECTRON_OVERRIDE_DIST_PATH env var).
I also had the same issue on debian, this is not specific to MacOS.
|
https://github.com/electron/electron/issues/29702
|
https://github.com/electron/electron/pull/29720
|
85718349cc69deb41c62e14784f8d47148e90522
|
9a7e61cfc0320006590cbf3d8cce95decba25bf0
| 2021-06-15T13:26:26Z |
c++
| 2021-06-17T06:34:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,685 |
["shell/browser/feature_list.cc"]
|
[Bug]: Empty dictionarySuggestions on Windows since electron 13.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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.2
### What operating system are you using?
Windows
### Operating System Version
Windows 10 version 2004
### What arch are you using?
x64
### Last Known Working Electron version
12.0.11
### Expected Behavior
`dictionarySuggestions` is expected to have suggestions.
### Actual Behavior
`dictionarySuggestions` is empty.
### Testcase Gist URL
_No response_
### Additional Information
Reminiscent of #24455, but it probably is a different issue given the difference of how spellchecking works on each platform.
### electron 12
```
electron 12.0.11
chrome 89.0.4389.128
misspelledWord: Houuse
dictionarySuggestions: [ 'House', 'Housed', 'Houses', 'Housel', 'Houser' ]
session.getSpellCheckerLanguages: [ 'en-GB', 'en-US' ]
```
### electron 13
```
electron 13.1.2
chrome 91.0.4472.77
misspelledWord: Houuse
dictionarySuggestions: []
session.getSpellCheckerLanguages: [ 'en-GB', 'en-US' ]
```
|
https://github.com/electron/electron/issues/29685
|
https://github.com/electron/electron/pull/29690
|
31a4cc26d531a82fd2fa81fc400813ac91510435
|
af276c96ec2198bbc4dc194b022febc2cbffcb8f
| 2021-06-14T16:19:28Z |
c++
| 2021-06-15T16:11:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,665 |
["patches/chromium/extend_apply_webpreferences.patch"]
|
[Bug]: HTML select tag not rendering the dropdown
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
14.x & 15.x
### What operating system are you using?
Windows
### Operating System Version
Windows 10 Pro version 21H1
### What arch are you using?
x64
### Last Known Working Electron version
13.1.2
### Expected Behavior
When you add a select tag to your HTML and you click on it should open a dropdown with the options.

### Actual Behavior
Beyond version 13.1.2 when you click the select but no dropdown appears.

### Testcase Gist URL
https://gist.github.com/4573db9b87615a897a731b573a16ae1e
### Additional Information
Electron v13.1.2 uses Chromium 91.0.4472.77
Electron v14.0.0-beta.1 uses Chromium 92.0.4511.0
Maybe this issue has something to do with Chromium 92.0 and beyond?
For the Testcase I used the default code adding a simple select to the HTML.
```html
<select name="select">
<option value="value1">Value 1</option>
<option value="value2" selected>Value 2</option>
<option value="value3">Value 3</option>
</select>
```
|
https://github.com/electron/electron/issues/29665
|
https://github.com/electron/electron/pull/29742
|
de6696ef1de289d68e9f1981cfd8951ea5be0efc
|
4450327fda2a1d14fc426a49a8d6cb520cce9c94
| 2021-06-13T23:00:02Z |
c++
| 2021-06-18T07:05:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,656 |
["shell/browser/net/electron_url_loader_factory.cc", "shell/browser/net/electron_url_loader_factory.h", "spec-main/api-protocol-spec.ts", "spec-main/api-web-request-spec.ts"]
|
[Bug]: Can't Redirect Within Registered Protocol
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.2
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.3.1
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
A registered protocol should be able to redirect to another location with the same scheme.
### Actual Behavior
When using `fetch` this results in an error about invalid URL.
### Testcase Gist URL
https://gist.github.com/dsanders11/55a1d1adc86af3c419d758027383e2cc
### Additional Information
This works when loading a window from the redirected URL, just not when using `fetch`. It appears that's because Chromium doesn't follow the redirects the same way for the navigation load, but rather starts a fresh request for the new location.
|
https://github.com/electron/electron/issues/29656
|
https://github.com/electron/electron/pull/29796
|
3f38681c55640fd64f056b6ebac57e2700eb37ea
|
341b3702137410fbc8cb5babc48ff0249523930a
| 2021-06-12T16:02:43Z |
c++
| 2021-07-15T11:14:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,653 |
["shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: Application crashes on macOS < Catalina, related to Window Vibrancy
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.1
### What operating system are you using?
macOS
### Operating System Version
macOS High Sierra
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
I'd expect the app to launch normally.
### Actual Behavior
The app launches for a second, then crashes. I get a crashdump with the following stack:

### Testcase Gist URL
_No response_
### Additional Information
On first launch, my app (https://ableset.app) opens two windows. One with vibrancy set to `window` and the other with vibrancy `popover`.
Unfortunately, I don't have a High Sierra machine, so I can't test it myself, but I've had multiple customers report this to me and couldn't find any related issues on here yet, so I thought it might be worth looking into.
|
https://github.com/electron/electron/issues/29653
|
https://github.com/electron/electron/pull/29677
|
81795744cf82a57b129f8a1fe113a9b64f61ffb2
|
2ae7e04598bc5ba36dcb1c1c06e7df8887cf71dd
| 2021-06-12T09:33:14Z |
c++
| 2021-06-16T06:39:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,626 |
["shell/browser/api/electron_api_base_window.cc", "shell/browser/api/electron_api_browser_view.cc", "shell/browser/api/electron_api_browser_view.h"]
|
[Bug]: crash on browserView.webContents.destroy() call
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.2
### What operating system are you using?
Other Linux
### Operating System Version
kernel 5.12.8
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
- The app doesn't crash.
- The BrowserView process gets properly destroyed.
### Actual Behavior
The app crashing if `browserView.webContents.destroy()` called to destroy the browserView-related process (memory releasing). It doesn't crash on first call but on 5-10th `browserView.create() => browserView.destroy()` sequential scenario execution (in my case create/destroy calls get triggered by hotkey, so I just hit the respective hotkeys in sequence).
### Testcase Gist URL
_No response_
### Additional Information
See the attached [crash stack](https://github.com/electron/electron/files/6630760/dump.txt).
Related issue: https://github.com/electron/electron/issues/26929.
As pointed in https://github.com/electron/electron/issues/26929#issuecomment-763837953 wrapping the `destroy()` call into `setImmediate` prevents the app from crash. So this is a workaround.
|
https://github.com/electron/electron/issues/29626
|
https://github.com/electron/electron/pull/31796
|
bf7b245fa05ce8babba8c6ff05752a58810d426c
|
65e4f750589466b2fdbcda0356eac01ca95a580a
| 2021-06-10T11:07:33Z |
c++
| 2021-11-15T15:23:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,580 |
["docs/tutorial/performance.md"]
|
Docs website is missing images
|
This didn't seem to fit any of the issue templates given.
The two images in this document are missing on the site and return a 404.
https://github.com/electron/electron/blob/main/docs/tutorial/performance.md#1-carelessly-including-modules
https://www.electronjs.org/docs/tutorial/performance#1-carelessly-including-modules
|
https://github.com/electron/electron/issues/29580
|
https://github.com/electron/electron/pull/29592
|
057b15f7bb2f6af98a4c9406841fc65c55c20b08
|
9b99bdb5704f5b53cead578c30090d47fa18f189
| 2021-06-08T02:08:26Z |
c++
| 2021-06-10T17:44:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,543 |
["lib/renderer/inspector.ts"]
|
[Bug]: Using setDevToolsWebContents results in DevTools window with no menu triggering
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.1
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
unknown
### Expected Behavior
A fully functional DevTools window, including menus.
### Actual Behavior
No pulldown menus will show in Devtools, either 'right click' menus or menu triggers in Devtools. Since much of the functionality of Devtools is behind menus (right clicking to set conditional breakpoints, navigate to open files that don't currently have a tab, to restart the stack when debugging, enable/disable/clear breakpoints, etc. this is quite a crippling situation.
### Testcase Gist URL
_No response_
### Additional Information
At first, I thought this might be related to #10862, but now I'm not sure.
|
https://github.com/electron/electron/issues/29543
|
https://github.com/electron/electron/pull/29841
|
0f16575eee89c6ca658beceb138eee94ace2f5c8
|
9b5dd5380f40d8feaea4f911ca8b9d224e41315c
| 2021-06-04T10:54:11Z |
c++
| 2021-06-24T18:36:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,541 |
["shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm"]
|
[Bug]: BrowserView cover the TrafficLightButton of the BrowserWindow
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.1.0
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.2.3 (20D91)
### What arch are you using?
x64
### Last Known Working Electron version
12.0.10
### Expected Behavior

### Actual Behavior

### Testcase Gist URL
_No response_
### Additional Information
```js
const { app, BrowserWindow, BrowserView } = require('electron')
function createWindow () {
const win = new BrowserWindow({ width: 300, height: 300, titleBarStyle: 'hidden' })
const view = new BrowserView()
win.addBrowserView(view)
view.setBounds({ x: 0, y: 0, width: 300, height: 40 })
view.setBackgroundColor('#000000')
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
})
```
|
https://github.com/electron/electron/issues/29541
|
https://github.com/electron/electron/pull/29595
|
73266f8f3df8c7933793be33bd04bec82ca30398
|
63cc82d91d55419354ec93fc7c0870461a8cca7a
| 2021-06-04T07:05:50Z |
c++
| 2021-06-10T12:52:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,509 |
["lib/browser/guest-window-proxy.ts", "spec-main/guest-window-manager-spec.ts"]
|
[Bug]: setWindowOpenHandler freeze when calling window.open('url')
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.9/13.0.1
### What operating system are you using?
Windows
### Operating System Version
Windows 10 1909
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
BrowserWindow still functional and interactive.
### Actual Behavior
BrowserWindow freezes and becomes non-interactive.
### Testcase Gist URL
https://gist.github.com/lishid/214ea7598dd9589a3f6d7d5e5594848f
### Additional Information
Clicking a link with "_blank" works correctly, but calling `window.open('https://some-url.com')` doesn't.
|
https://github.com/electron/electron/issues/29509
|
https://github.com/electron/electron/pull/29851
|
9de8e676dd06bc172c4dee38a9bde8306229417f
|
0f16575eee89c6ca658beceb138eee94ace2f5c8
| 2021-06-02T23:00:57Z |
c++
| 2021-06-24T15:50:48Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,463 |
["shell/common/node_bindings.cc", "spec-main/fixtures/crash-cases/setimmediate-window-open-crash/index.html", "spec-main/fixtures/crash-cases/setimmediate-window-open-crash/index.js"]
|
Microtasks policy incorrect, leading to DCHECK, when calling `window.open` from `setImmediate`
|
To repro, run this fiddle under a debug build: https://gist.github.com/b72948eafa5a2f61acf9f4718ff09259
```
#
# Fatal error in ../../v8/src/api/api-inl.h, line 183
# Debug check failed: microtask_queue->GetMicrotasksScopeDepth() || !microtask_queue->DebugMicrotasksScopeDepthIsZero().
#
#
#
#FailureMessage Object: 0x7ffeebb54620
0 Electron Framework 0x000000010c472bb9 base::debug::CollectStackTrace(void**, unsigned long) + 9
1 Electron Framework 0x000000010c38e243 base::debug::StackTrace::StackTrace() + 19
2 Electron Framework 0x000000010e820ffd gin::(anonymous namespace)::PrintStackTrace() + 45
3 Electron Framework 0x000000010e1f7136 V8_Fatal(char const*, int, char const*, ...) + 326
4 Electron Framework 0x000000010e1f6b15 v8::base::(anonymous namespace)::DefaultDcheckHandler(char const*, int, char const*) + 21
5 Electron Framework 0x0000000109695f11 v8::CallDepthScope<true>::~CallDepthScope() + 865
6 Electron Framework 0x0000000109653283 v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*) + 835
7 Electron Framework 0x00000001118657e2 node::InternalMakeCallback(node::Environment*, v8::Local<v8::Object>, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 738
8 Electron Framework 0x0000000111865aab node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 187
9 Electron Framework 0x00000001118aebf5 node::Environment::CheckImmediate(uv_check_s*) + 181
10 Electron Framework 0x0000000107c458ad uv__run_check + 157
11 Electron Framework 0x0000000107c3f7e1 uv_run + 369
12 Electron Framework 0x0000000107e0964c electron::NodeBindings::UvRunOnce() + 348
13 Electron Framework 0x0000000107e0ae04 base::internal::Invoker<base::internal::BindState<void (electron::NodeBindings::*)(), base::WeakPtr<electron::NodeBindings> >, void ()>::RunOnce(base::internal::BindStateBase*) + 148
14 Electron Framework 0x000000010c40a190 base::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 400
15 Electron Framework 0x000000010c42e292 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*) + 994
16 Electron Framework 0x000000010c42dab8 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWork() + 88
17 Electron Framework 0x000000010c489d71 base::MessagePumpCFRunLoopBase::RunWork() + 65
18 Electron Framework 0x000000010c4829a2 base::mac::CallWithEHFrame(void () block_pointer) + 10
19 Electron Framework 0x000000010c48979f base::MessagePumpCFRunLoopBase::RunWorkSource(void*) + 63
20 CoreFoundation 0x00007fff2f446832 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
21 CoreFoundation 0x00007fff2f4467d1 __CFRunLoopDoSource0 + 103
22 CoreFoundation 0x00007fff2f4465eb __CFRunLoopDoSources0 + 209
23 CoreFoundation 0x00007fff2f44531a __CFRunLoopRun + 927
24 CoreFoundation 0x00007fff2f44491e CFRunLoopRunSpecific + 462
25 Foundation 0x00007fff31ae01a8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
26 Electron Framework 0x000000010c48a3ae base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 126
27 Electron Framework 0x000000010c48914c base::MessagePumpCFRunLoopBase::Run(base::MessagePump::Delegate*) + 140
28 Electron Framework 0x000000010c42ee5b base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) + 651
29 Electron Framework 0x000000010c3e2d6a base::RunLoop::Run(base::Location const&) + 890
30 Electron Framework 0x00000001115efc1b content::RendererMain(content::MainFunctionParams const&) + 1611
31 Electron Framework 0x00000001095d3c27 content::ContentMainRunnerImpl::Run(bool) + 503
32 Electron Framework 0x00000001095d2b32 content::RunContentProcess(content::ContentMainParams const&, content::ContentMainRunner*) + 2658
33 Electron Framework 0x00000001095d2c1c content::ContentMain(content::ContentMainParams const&) + 44
34 Electron Framework 0x0000000107c52297 ElectronMain + 135
35 Electron Helper (Renderer) 0x00000001040ad1b7 main + 439
36 libdyld.dylib 0x00007fff694e6cc9 start + 1
```
I believe this is due to the hack in `UvRunOnce` being insufficient to swap between `kExplicit` and `kScoped` microtask policies when a new node environment is created during execution of `UvRunOnce`. i.e. this:
https://github.com/electron/electron/blob/fa703016f0fcaebed611b23700558fd0fcf064ff/shell/common/node_bindings.cc#L580-L586
sets the policy to `kExplicit`, but then `CreateEnvironment` is called during the tick, and subsequently this:
https://github.com/electron/electron/blob/fa703016f0fcaebed611b23700558fd0fcf064ff/shell/common/node_bindings.cc#L518
is called, which sets the policy back to `kScoped`, due to:
https://github.com/electron/electron/blob/fa703016f0fcaebed611b23700558fd0fcf064ff/shell/common/node_bindings.cc#L490-L492
Since the policy is now `kScoped`, the DCHECK in question triggers the next time a JS function is called, which is in the `CheckImmediate` code in Node.
cc @codebytere
|
https://github.com/electron/electron/issues/29463
|
https://github.com/electron/electron/pull/29531
|
cfc846a3372d0397e50cc1f18dfdebeab57fd046
|
d4a1b411297ae7651441cf697b5251445c7a575c
| 2021-06-01T21:09:01Z |
c++
| 2021-06-21T05:06:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,458 |
["shell/browser/feature_list.cc", "spec-main/api-desktop-capturer-spec.ts"]
|
[Bug]: Black Video When getUserMedia with chromeMediaSourceId === window.getMediaSourceId()
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.1
### What operating system are you using?
macOS
### Operating System Version
macos BigSur 11.4
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
12.0.9
### Expected Behavior
I'm using this function to capture my window (window which start app), it work ok on Windows (same electron version) but not working on mac
```js
await navigator.mediaDevices.getUserMedia({
video: {
mandatory: {
chromeMediaSource: 'desktop',
chromeMediaSourceId: sourceId,
},
})
```
`sourceId` value === `window.getMediaSourceId()`
### Actual Behavior
Black video
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29458
|
https://github.com/electron/electron/pull/30507
|
fc9a197f6c78eec616e8ac3e126b4c9cb70d871c
|
a11a234eaccad5b222b8f23ab51ed8fd448a6bb2
| 2021-06-01T11:31:54Z |
c++
| 2021-08-13T20:23:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,366 |
["shell/browser/electron_browser_context.cc", "shell/browser/electron_browser_context.h", "shell/browser/serial/electron_serial_delegate.cc", "shell/browser/serial/serial_chooser_context.cc", "shell/browser/serial/serial_chooser_context.h", "shell/browser/serial/serial_chooser_context_factory.cc", "shell/browser/serial/serial_chooser_controller.cc", "shell/browser/serial/serial_chooser_controller.h"]
|
[Bug]: navigator.serial.getPorts() returns an empty list if device is unplugged and replugged
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.7
### What operating system are you using?
Ubuntu
### Operating System Version
5.4.0-73-generic #82~18.04.1-Ubuntu
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
`const existingPermissions = await navigator.serial.getPorts();` should return a list of serial ports for which permission has already been granted, even when a device has been unplugged and plugged back in again.
### Actual Behavior
The list is empty, even when the same code works in the browser (Chromium v90.0.4430.93).
### Testcase Gist URL
https://gist.github.com/gniezen/34950a5fa84dcf000e2b55a8d599ecd6
### Additional Information
To reproduce using gist:
- Replace `usbVendorId` and `usbProductId` with that of your test device.
- Click the `Connect` button. It should show up in the port list on the main console.
- Click the `Get Ports` button. It should show the existing permission in the developer console.
- Unplug and re-plug the device.
- Click the `Get Ports` button. It should show the existing permissions, but returns an empty list.
|
https://github.com/electron/electron/issues/29366
|
https://github.com/electron/electron/pull/30209
|
d2989de5d9b7ae4a3d860620bbf7e760fc9be5ed
|
461db8f1ab6d6fef0a634931347b7e6526b3f953
| 2021-05-27T14:18:36Z |
c++
| 2021-07-26T17:10:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,343 |
["shell/browser/electron_browser_client.cc", "shell/browser/electron_browser_client.h", "shell/browser/electron_browser_main_parts.cc", "shell/browser/electron_browser_main_parts.h", "shell/browser/electron_browser_main_parts_mac.mm"]
|
[Bug]: Geolocation crashes 13.0.1
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.1
### What operating system are you using?
macOS
### Operating System Version
11.4
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
12.0.7
### Expected Behavior
Electron shouldn't crash.
### Actual Behavior
Electron crashes.
### Testcase Gist URL
https://gist.github.com/omarkilani/f0c264e278b04575a381d1eadc930514
### Additional Information
Electron 13.x crashes on any geolocation use. Backtrace attached.
|
https://github.com/electron/electron/issues/29343
|
https://github.com/electron/electron/pull/29913
|
914256374878da1e61adaf403c59ace22b47dec9
|
1b4ce6c69aee1661acec09e94d42127d06d2de64
| 2021-05-26T17:36:56Z |
c++
| 2021-06-29T03:26:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,337 |
[".circleci/config.yml"]
|
[Bug]: Using custom v8 snapshots on Apple Silicon does not work
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.x, 12.x, 13.x, 14.x
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.3.1
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
none
### Expected Behavior
A custom v8 snapshot works on Electron running on Apple Silicon.
### Actual Behavior
The contents of a custom v8 snapshot on an Electron app running on Apple Silicon are not available to the application.
### Testcase Gist URL
https://github.com/nebular/electron-mksnapshot-example
### Additional Information
This issue was initially reported via https://github.com/electron/mksnapshot/issues/37.
The underlying issue is that the mksnapshot.zip we generate does not have all of the needed files included as it is missing`mksnapshot_args` and `clang_x64_v8_arm64/gen/v8/embedded.S`
|
https://github.com/electron/electron/issues/29337
|
https://github.com/electron/electron/pull/29338
|
ac079f11f3f44dbe01974933df5de7db8dacb733
|
d0b9a931ccf3437d8f8bb3e5cffd9fb120ed4775
| 2021-05-26T16:00:35Z |
c++
| 2021-05-26T16:08:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,334 |
["patches/chromium/printing.patch"]
|
[Bug]: Print options not work when silent true
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.x
### What operating system are you using?
Other (specify below)
### Operating System Version
both in win and mac
### What arch are you using?
x64
### Last Known Working Electron version
11.4.3
### Expected Behavior
print options
```
{
silent: true,
deviceName: 'actual printer name',
landscape: true,
copies: 2,
pageRanges: [{from: 1, to: 1}],
pageSize: 'A5'
}
```
all of the options would be honored when silent true
### Actual Behavior
all of the options above not honored
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29334
|
https://github.com/electron/electron/pull/31489
|
5f3af5fdf1874c87f4388f899182cf0196b6c386
|
2a4b262354542e3830638a21eb0a7458c677fca2
| 2021-05-26T09:40:08Z |
c++
| 2021-10-25T15:52:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,326 |
["shell/app/electron_main_delegate.cc"]
|
[Bug]: PDF viewer displays blank pages on Windows
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.1
### What operating system are you using?
Windows
### Operating System Version
Windows 10 20H2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
PDF viewer should display content of the PDF file.
### Actual Behavior

All PDFs are affected.
Interestingly PDF viewer displays number of pages correctly so it seems to read the PDF file, but then fails to render it.
There does not seem to be anything of interest in the console.
This bug seems to affect Windows specifically, on Ubuntu the PDFs are rendered correctly.
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29326
|
https://github.com/electron/electron/pull/29827
|
98d2824c7f021dc3f4dea6996fcaa1e08529c446
|
0ad73ac423bcd787405ad619b06934ed47e13a3a
| 2021-05-25T20:11:11Z |
c++
| 2021-06-22T03:46:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,292 |
["shell/browser/electron_browser_main_parts.cc", "shell/common/asar/archive.cc", "shell/common/asar/archive.h", "shell/common/asar/asar_util.cc", "shell/common/asar/asar_util.h", "shell/renderer/electron_renderer_client.cc", "shell/renderer/web_worker_observer.cc"]
|
[Bug]: Main Process Can Leak Memory/File Handles/Temp Files When Renderer Requests Files From ASAR
|
**Bug Description**
When a renderer sends a request for a file in an ASAR archive (including unpacked files), the main process can leak the C++ `asar::Archive` object, leading to leaked memory and a file handle. If any temp files were created for that archive via `asar::Archive::CopyFileOut`, those would also be leaked. This doesn't happen on every request, see "Reproduction" and "Root Cause" for more info.
Refs #28962.
Might ref #27982 and explain why the switch to memory mapped files caused issues, as those would also be leaked by this issue. cc @nornagon.
**Reproduction**
To reproduce, send a handful (to guarantee reproduction, send dozens or even hundreds at once) of `fetch` requests from a renderer for a file in an ASAR. It doesn’t matter if the file is marked as unpacked or not (as long as you request them from a path with `app.asar`, and not `app.asar.unpacked`), either case will reproduce the bug. The amount of memory leaked is related to the header size of the ASAR archive (not the size of the file requested), so the bigger the archive the better, it only leaks ~10x the header size per reproduction. The leak can also be confirmed by looking at open file handles for the main process (`lsof -p <pid> | grep 'app.asar$`), there shouldn't be more than a few, and reproducing will cause them to increase.
There’s a timing aspect to the leak (which isn’t strictly timing related, more on that in "Root Cause"), so it’s best to wait 30 to 60 seconds between attempts to reproduce, leaving the app completely idle during that time.
The Signal app reliably reproduces the bug on macOS simply by opening the emoji picker in a conversation and flipping through the emoji categories, since it will send requests for dozens of emoji images, which are in the ASAR file for the app. That app has a large ASAR file (~100MB), so the memory leak is substantial and noticeable.
**Root Cause**
The leak is due to the [usage of `base::ThreadLocalPointer` in `shell/common/asar/asar_util.cc`](https://github.com/electron/electron/blob/bf978e0/shell/common/asar/asar_util.cc#L24-L25) to cache `asar::Archive` files per-thread. That class doesn’t take ownership of the pointer, so memory management needs to be handled manually. From the header file comment for the class:
> [This means for uses of ThreadLocalPointer, you must correctly manage the memory yourself, these classes will not destroy the pointer for you. There are no at-thread-exit actions taken by these classes.](https://source.chromium.org/chromium/chromium/src/+/ce56e5a5e3525367738f02a0fb5b7dd5d7e9f3a8:base/threading/thread_local.h;l=11-14;bpv=1)
While there is an `asar::ClearArchives` function which will delete the pointer stored in `base::ThreadLocalPointer`, it does not align well with the real-world lifetime of the threads which handle URL requests from renderers. It also appears `asar::ClearArchives` is only called in a few locations, where it's executed on a main thread (main process, renderer, web worker), so it wouldn't effect the thread-local storage on worker threads. This means threads get destroyed without there being a call to `asar::ClearArchives`, leaking the `asar::Archive` instance. Due to the lifespan and nature of worker threads, it's not trivial to add a call to `asar::ClearArchives` which will be executed before thread exit.
In particular, the pointer in `base::ThreadLocalPointer` gets populated when `asar::AsarURLLoader` is run (via `asar::GetOrCreateAsarArchive`), and that URL loader is executed on the worker thread pool, which creates and destroys threads as needed. This is what creates the “timing” aspect in the reproduction. Rather than waiting an arbitrary amount of time, you can watch the number of threads for the main process and the leak will reproduce again once threads have been destroyed, meaning new threads will be created to handle future requests. In testing, an app left entirely idle will dwindle down to ~28-30 total threads for the main process (`lldb` shows 1 or 2 "ThreadPoolForegroundWorker" threads), and when hundreds of requests from the renderer are sent it increases to ~45-48 total threads (`lldb` shows ~16 "ThreadPoolForegroundWorker" threads). When left idle for a few dozen seconds, it then dwindles back down to ~28-30 threads again.
**Is The ASAR Archive Cache Necessary?**
Probably? At the moment it's only being used on some subset of requests from renderers since worker threads come and go. App startup is likely a time when a lot of apps load a handful of files at once, which would use multiple worker threads, which will each have a cache miss, so currently a common path isn't really getting much benefit from the caching. However, testing with the Signal app since has a large ASAR did show that with caching disabled, each request took ~40ms longer, so the improvement with caching is not insignificant for larger apps. For real world usage it looks a little mixed though, as there seems to be a bottleneck elsewhere in the main process code when more than a few requests are sent at once, and fixing this issue didn't seem to create any real difference in the startup time of the Signal app.
|
https://github.com/electron/electron/issues/29292
|
https://github.com/electron/electron/pull/29293
|
00693bab30c6fa95f6e152889ee55bf1e2b1ada7
|
b1d1ac65247053731cb26cbda9862c6d7c1d0a4b
| 2021-05-23T06:12:42Z |
c++
| 2021-06-04T01:49:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,287 |
["shell/browser/ui/tray_icon_cocoa.mm"]
|
[Bug]: Tray title ANSI colors don't work when using fontType option
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
Latest
### What operating system are you using?
macOS
### Operating System Version
macOS 10.15.7
### What arch are you using?
x64
### Last Known Working Electron version
n/a
### Expected Behavior
```js
const RED = '\033[31;1m';
tray.setTitle(`${RED}stuff`, {
fontType: 'monospacedDigit',
});
```
This should show it in red.
### Actual Behavior
It's not red. If you take out fontType then it's red. But then I don't have monospaced digits.
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29287
|
https://github.com/electron/electron/pull/30146
|
1bb689e6dddd6df093a8780878c61a2923f1b2ac
|
0d9e6f29ba92cb01d0c1aa0f06ceb2d1d582ea9d
| 2021-05-22T10:44:40Z |
c++
| 2021-07-15T23:45:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,286 |
["patches/chromium/printing.patch"]
|
[Bug]: Copies, Header, Footer, PageRanges doesn't work on the latest electron contents.print([options], [callback]) method
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.9
### What operating system are you using?
Windows
### Operating System Version
Windows 10 19042.985
### What arch are you using?
x64
### Last Known Working Electron version
11.0.0
### Expected Behavior
We should be able to get the number of copies printed which have been passed via options
Header and Footer Strings passed to be added to each pages printed along with the page number
Specifying a page range should only print that range of pages not the entire document
### Actual Behavior
Only one copy is generated
Header and Footer not added to the printed page.
Entrire document is printed instead of the range specified.
I am not sure if this is the same case with Collate and other properties, those needes to be checked.
### Testcase Gist URL
_No response_
### Additional Information
In version 11 as well, only the footer is customisable, even though if we pass the header it is not reflecting. It shows the date and title.
|
https://github.com/electron/electron/issues/29286
|
https://github.com/electron/electron/pull/31489
|
5f3af5fdf1874c87f4388f899182cf0196b6c386
|
2a4b262354542e3830638a21eb0a7458c677fca2
| 2021-05-22T09:19:51Z |
c++
| 2021-10-25T15:52:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,284 |
["DEPS", "patches/config.json", "patches/nan/.patches", "patches/nan/api_simplify_scriptorigin.patch", "patches/nan/nan_string_test_alignment.patch"]
|
[Bug]: Upstream nan strings.cpp test fix
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Problem Description
Surfaced in #29281
We currently have a patch set in `nan_string_test_alignment.cpp`, which works around a DCHECK in v8 (modules built against a given Electron release won't be affected). Rather than continue to maintain this patch, we'd like to upstream the fix into nan itself.
### Proposed Solution
Our current patch: https://github.com/electron/electron/pull/29281/files#diff-11e4900fa21356414aa35c6151e4b25fc8d5934e34cfd8caf7778ea6d1dac8ed
Where the necessary fix would need to be applied in nan itself: https://github.com/nodejs/nan/blob/master/test/cpp/strings.cpp#L29
### Alternatives Considered
We could continue to maintain the patch ourselves if the upstream fix is not accepted by nan.
### Additional Information
*
|
https://github.com/electron/electron/issues/29284
|
https://github.com/electron/electron/pull/29686
|
af276c96ec2198bbc4dc194b022febc2cbffcb8f
|
18b03db073d8b9af1b56da5aee6317e2f3f929ab
| 2021-05-21T23:42:34Z |
c++
| 2021-06-15T20:09:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,260 |
["shell/browser/native_window_mac.mm"]
|
[Bug]: Crash on `app.exit()`
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.8
### What operating system are you using?
macOS
### Operating System Version
10.15.7
### What arch are you using?
x64
### Last Known Working Electron version
11.3.0
### Expected Behavior
App normally quits without an error.
### Actual Behavior
App crashes:
<img width="986" alt="スクリーンショット 2021-05-20 19 49 34" src="https://user-images.githubusercontent.com/823277/118966272-87db3f80-b9a4-11eb-91e8-ae3d5ac012da.png">
### Testcase Gist URL
_No response_
### Additional Information
### How to reproduce
I tried to minimize reproduction, but I could not. Very simple program did not cause this issue. So I describe how I caused this issue with my application. Frequency is 100%.
At first, please fetch my app repository and build the app.
```sh
git clone https://github.com/rhysd/tweet-app.git
cd ./tweet-app
git checkout ef03e5311c1ee5e29750f730daa934cacb0adc03
npm install
npm run build
```
Launch the application.
```sh
npm run app
```
Find 'Quit' menu item in menu bar and click it. App will crash immediately.
Here is a full text of crash report:
<details>
<pre>
Process: Electron [54917]
Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron
Identifier: com.github.Electron
Version: 12.0.8 (12.0.8)
Code Type: X86-64 (Native)
Parent Process: node [54890]
Responsible: iTerm2 [616]
User ID: 501
Date/Time: 2021-05-20 19:45:02.713 +0900
OS Version: Mac OS X 10.15.7 (19H1030)
Report Version: 12
Bridge OS Version: 5.3 (18P4556)
Anonymous UUID: 642738B3-B784-E97D-1869-C94CE5350670
Sleep/Wake UUID: B3C7C804-F908-4EE3-B334-A95FBEA9B73D
Time Awake Since Boot: 360000 seconds
Time Since Wake: 37000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000007fd12148d98
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [54917]
VM Regions Near 0x7fd12148d98:
Memory Tag 255 00000045d4274000-00000045d42f0000 [ 496K] ---/rwx SM=ZER
-->
STACK GUARD 000070000eae6000-000070000eae7000 [ 4K] ---/rwx SM=NUL stack guard for thread 1
Application Specific Information:
objc_msgSend() selector name: invalidate
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libobjc.A.dylib 0x00007fff6699081d objc_msgSend + 29
1 com.apple.AppKit 0x00007fff2af5952e +[NSEvent removeMonitor:] + 30
2 com.github.Electron.framework 0x00000001049d2074 ElectronInitializeICUandStartNode + 1665332
3 com.apple.CoreFoundation 0x00007fff2da9b2ef __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
4 com.apple.CoreFoundation 0x00007fff2da9b283 ___CFXRegistrationPost1_block_invoke + 63
5 com.apple.CoreFoundation 0x00007fff2da9b1f8 _CFXRegistrationPost1 + 372
6 com.apple.CoreFoundation 0x00007fff2da9ae64 ___CFXNotificationPost_block_invoke + 80
7 com.apple.CoreFoundation 0x00007fff2da6afdd -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1554
8 com.apple.CoreFoundation 0x00007fff2da6a489 _CFXNotificationPost + 1351
9 com.apple.Foundation 0x00007fff300e85f6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 59
10 com.apple.AppKit 0x00007fff2b5b1953 -[NSWindow _finishClosingWindow] + 185
11 com.apple.AppKit 0x00007fff2b08d175 -[NSWindow _close] + 352
12 com.github.Electron.framework 0x00000001049c491b ElectronInitializeICUandStartNode + 1610203
13 com.github.Electron.framework 0x000000010495bed0 ElectronInitializeICUandStartNode + 1181584
14 com.github.Electron.framework 0x00000001048f91fb ElectronInitializeICUandStartNode + 776891
15 com.github.Electron.framework 0x000000010710663e node::SetTracingController(v8::TracingController*) + 992942
16 com.github.Electron.framework 0x0000000107106558 node::SetTracingController(v8::TracingController*) + 992712
17 com.github.Electron.framework 0x0000000104e89380 v8::internal::ClassScope::ResolvePrivateNamesPartially() + 14832
18 com.github.Electron.framework 0x0000000104e88fd5 v8::internal::ClassScope::ResolvePrivateNamesPartially() + 13893
19 com.github.Electron.framework 0x0000000104e88653 v8::internal::ClassScope::ResolvePrivateNamesPartially() + 11459
20 com.github.Electron.framework 0x00000001054e0018 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 451416
21 com.github.Electron.framework 0x0000000105479e8f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 33231
22 com.github.Electron.framework 0x00000001054a7081 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 218049
23 com.github.Electron.framework 0x0000000105529e7b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 754107
24 com.github.Electron.framework 0x0000000105499fb7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 164599
25 com.github.Electron.framework 0x0000000105477a58 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 23960
26 com.github.Electron.framework 0x0000000104ee3041 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 2705
27 com.github.Electron.framework 0x0000000104ee3833 v8::internal::Execution::TryCall(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*, v8::internal::Execution::MessageHandling, v8::internal::MaybeHandle<v8::internal::Object>*, bool) + 355
28 com.github.Electron.framework 0x0000000104ee3910 v8::internal::Execution::TryCall(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*, v8::internal::Execution::MessageHandling, v8::internal::MaybeHandle<v8::internal::Object>*, bool) + 576
29 com.github.Electron.framework 0x0000000104efb4c6 v8::internal::MicrotaskQueue::RunMicrotasks(v8::internal::Isolate*) + 422
30 com.github.Electron.framework 0x0000000104efb2f0 v8::internal::MicrotaskQueue::PerformCheckpoint(v8::Isolate*) + 32
31 com.github.Electron.framework 0x0000000106ec435a node::CallbackScope::~CallbackScope() + 1146
32 com.github.Electron.framework 0x0000000106ec470c node::CallbackScope::~CallbackScope() + 2092
33 com.github.Electron.framework 0x0000000106ec49b6 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 182
34 com.github.Electron.framework 0x0000000104986e7c ElectronInitializeICUandStartNode + 1357628
35 com.github.Electron.framework 0x000000010485e227 ElectronInitializeICUandStartNode + 142055
36 com.github.Electron.framework 0x0000000104856ace ElectronInitializeICUandStartNode + 111502
37 com.github.Electron.framework 0x0000000104856cc9 ElectronInitializeICUandStartNode + 112009
38 com.github.Electron.framework 0x00000001049185ce ElectronInitializeICUandStartNode + 904846
39 com.github.Electron.framework 0x00000001049d207d ElectronInitializeICUandStartNode + 1665341
40 com.apple.CoreFoundation 0x00007fff2da9b2ef __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
41 com.apple.CoreFoundation 0x00007fff2da9b283 ___CFXRegistrationPost1_block_invoke + 63
42 com.apple.CoreFoundation 0x00007fff2da9b1f8 _CFXRegistrationPost1 + 372
43 com.apple.CoreFoundation 0x00007fff2da9ae64 ___CFXNotificationPost_block_invoke + 80
44 com.apple.CoreFoundation 0x00007fff2da6afdd -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1554
45 com.apple.CoreFoundation 0x00007fff2da6a489 _CFXNotificationPost + 1351
46 com.apple.Foundation 0x00007fff300e85f6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 59
47 com.apple.AppKit 0x00007fff2b5b1953 -[NSWindow _finishClosingWindow] + 185
48 com.apple.AppKit 0x00007fff2b08d175 -[NSWindow _close] + 352
49 com.github.Electron.framework 0x00000001049c491b ElectronInitializeICUandStartNode + 1610203
50 com.github.Electron.framework 0x0000000104868dc6 ElectronInitializeICUandStartNode + 185990
51 com.github.Electron.framework 0x00000001048c3771 ElectronInitializeICUandStartNode + 557105
52 com.github.Electron.framework 0x000000010588eeb7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4313591
53 com.github.Electron.framework 0x0000000104d2f280 electron::fuses::IsRunAsNodeEnabled() + 3362480
54 com.github.Electron.framework 0x0000000105ba8d1c v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7565404
55 com.github.Electron.framework 0x0000000105ce891f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 8875103
56 com.github.Electron.framework 0x0000000105ce6c8f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 8867791
57 com.github.Electron.framework 0x0000000105a1c1b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5940473
58 com.github.Electron.framework 0x0000000105a2a7fe v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5999422
59 com.github.Electron.framework 0x0000000105a2a31e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5998174
60 com.github.Electron.framework 0x0000000105a5ea13 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6212947
61 com.github.Electron.framework 0x0000000105a5b4aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6199274
62 com.github.Electron.framework 0x0000000105a5e3df v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6211359
63 com.apple.CoreFoundation 0x00007fff2daa5832 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
64 com.apple.CoreFoundation 0x00007fff2daa57d1 __CFRunLoopDoSource0 + 103
65 com.apple.CoreFoundation 0x00007fff2daa55eb __CFRunLoopDoSources0 + 209
66 com.apple.CoreFoundation 0x00007fff2daa431a __CFRunLoopRun + 927
67 com.apple.CoreFoundation 0x00007fff2daa391e CFRunLoopRunSpecific + 462
68 com.apple.HIToolbox 0x00007fff2c6cfabd RunCurrentEventLoopInMode + 292
69 com.apple.HIToolbox 0x00007fff2c6cf7d5 ReceiveNextEventCommon + 584
70 com.apple.HIToolbox 0x00007fff2c6cf579 _BlockUntilNextEventMatchingListInModeWithFilter + 64
71 com.apple.AppKit 0x00007fff2ad16039 _DPSNextEvent + 883
72 com.apple.AppKit 0x00007fff2ad14880 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352
73 com.apple.AppKit 0x00007fff2ad0658e -[NSApplication run] + 658
74 com.github.Electron.framework 0x0000000105a5efe6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6214438
75 com.github.Electron.framework 0x0000000105a5df6b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6210219
76 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
77 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
78 com.github.Electron.framework 0x00000001081297c4 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 1945012
79 com.github.Electron.framework 0x0000000105687e32 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2187634
80 com.github.Electron.framework 0x00000001056837d9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2169625
81 com.github.Electron.framework 0x0000000104deec16 electron::fuses::IsRunAsNodeEnabled() + 4147270
82 com.github.Electron.framework 0x0000000104dee923 electron::fuses::IsRunAsNodeEnabled() + 4146515
83 com.github.Electron.framework 0x0000000104ded5f0 electron::fuses::IsRunAsNodeEnabled() + 4141600
84 com.github.Electron.framework 0x0000000104dedab2 electron::fuses::IsRunAsNodeEnabled() + 4142818
85 com.github.Electron.framework 0x000000010483b708 ElectronMain + 136
86 com.github.Electron 0x00000001047c5426 0x1047c2000 + 13350
87 libdyld.dylib 0x00007fff67b45cc9 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 4:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 5:: ThreadPoolServiceThread
0 libsystem_kernel.dylib 0x00007fff67c8fb96 kevent64 + 10
1 com.github.Electron.framework 0x0000000105a6ea9a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278618
2 com.github.Electron.framework 0x0000000105a6e9be v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278398
3 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
4 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
5 com.github.Electron.framework 0x0000000105a3405d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6038429
6 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
7 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
8 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
9 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 6:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
5 com.github.Electron.framework 0x0000000105a3c3ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072045
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 7:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
5 com.github.Electron.framework 0x0000000105a3c34d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6071949
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 8:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
5 com.github.Electron.framework 0x0000000105a3c3ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072045
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 9:: Chrome_IOThread
0 com.github.Electron.framework 0x0000000105a64570 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6236336
1 libsystem_malloc.dylib 0x00007fff67cfca1c free + 107
2 com.github.Electron.framework 0x0000000104e01d21 electron::fuses::IsRunAsNodeEnabled() + 4225361
3 com.github.Electron.framework 0x0000000104e022c9 electron::fuses::IsRunAsNodeEnabled() + 4226809
4 com.github.Electron.framework 0x0000000106376de9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15749417
5 com.github.Electron.framework 0x0000000106376c1f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15748959
6 com.github.Electron.framework 0x0000000104e00821 electron::fuses::IsRunAsNodeEnabled() + 4219985
7 com.github.Electron.framework 0x0000000104dfcfa0 electron::fuses::IsRunAsNodeEnabled() + 4205520
8 com.github.Electron.framework 0x0000000104df19fe electron::fuses::IsRunAsNodeEnabled() + 4159022
9 com.github.Electron.framework 0x0000000105ba6a60 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7556512
10 com.github.Electron.framework 0x0000000105ba9703 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7567939
11 com.github.Electron.framework 0x0000000104d22f77 electron::fuses::IsRunAsNodeEnabled() + 3312551
12 com.github.Electron.framework 0x0000000106d4fd87 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 26075335
13 com.github.Electron.framework 0x0000000104d2367a electron::fuses::IsRunAsNodeEnabled() + 3314346
14 com.github.Electron.framework 0x0000000106d5222b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 26084715
15 com.github.Electron.framework 0x0000000105ba8c6f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7565231
16 com.github.Electron.framework 0x0000000105baae86 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7573958
17 com.github.Electron.framework 0x0000000105bae356 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7587478
18 com.github.Electron.framework 0x0000000105badccd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7585805
19 com.github.Electron.framework 0x0000000105ba64d0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7555088
20 com.github.Electron.framework 0x0000000105ba6d8e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7557326
21 com.github.Electron.framework 0x0000000105bbc871 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7646129
22 com.github.Electron.framework 0x0000000105bbcc59 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7647129
23 com.github.Electron.framework 0x0000000105bbbe90 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7643600
24 com.github.Electron.framework 0x0000000104e0cd6c electron::fuses::IsRunAsNodeEnabled() + 4270492
25 com.github.Electron.framework 0x0000000104e0c310 electron::fuses::IsRunAsNodeEnabled() + 4267840
26 com.github.Electron.framework 0x0000000104e085bd electron::fuses::IsRunAsNodeEnabled() + 4252141
27 com.github.Electron.framework 0x0000000104dfe906 electron::fuses::IsRunAsNodeEnabled() + 4212022
28 com.github.Electron.framework 0x0000000104def946 electron::fuses::IsRunAsNodeEnabled() + 4150646
29 com.github.Electron.framework 0x0000000104e10fbe electron::fuses::IsRunAsNodeEnabled() + 4287470
30 com.github.Electron.framework 0x0000000105a6ff19 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6283865
31 com.github.Electron.framework 0x0000000105a6eaf7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278711
32 com.github.Electron.framework 0x0000000105a6e9be v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278398
33 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
34 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
35 com.github.Electron.framework 0x000000010568844f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2189199
36 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
37 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
38 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
39 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 10:: MemoryInfra
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a61fee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6226734
4 com.github.Electron.framework 0x00000001059f19d0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5766416
5 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
6 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
7 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
8 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
9 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
10 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 11:
0 libsystem_kernel.dylib 0x00007fff67c8b766 kevent + 10
1 com.github.Electron.framework 0x000000010483acea uv_free_interface_addresses + 1322
2 com.github.Electron.framework 0x0000000104829e0c uv_run + 364
3 com.github.Electron.framework 0x0000000106fbcb3f node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 687
4 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
5 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 12:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000106fbcd12 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1154
4 com.github.Electron.framework 0x0000000106fba5d7 node::OnFatalError(char const*, char const*) + 438263
5 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
6 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 13:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000106fbcd12 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1154
4 com.github.Electron.framework 0x0000000106fba5d7 node::OnFatalError(char const*, char const*) + 438263
5 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
6 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 14:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000106fbcd12 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1154
4 com.github.Electron.framework 0x0000000106fba5d7 node::OnFatalError(char const*, char const*) + 438263
5 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
6 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 15:
0 libsystem_kernel.dylib 0x00007fff67c86e36 semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000104836360 uv_sem_wait + 16
2 com.github.Electron.framework 0x0000000107023dd3 node::SetTracingController(v8::TracingController*) + 65091
3 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
4 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 16:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000104825f60 uv_cancel + 512
4 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
5 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 17:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000104825f60 uv_cancel + 512
4 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
5 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 18:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000104825f60 uv_cancel + 512
4 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
5 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 19:
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000104835db9 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000104825f60 uv_cancel + 512
4 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
5 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 20:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2daa59d5 __CFRunLoopServiceMachPort + 247
3 com.apple.CoreFoundation 0x00007fff2daa44a2 __CFRunLoopRun + 1319
4 com.apple.CoreFoundation 0x00007fff2daa391e CFRunLoopRunSpecific + 462
5 com.apple.Foundation 0x00007fff3013f1a8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
6 com.github.Electron.framework 0x0000000105a5ef24 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6214244
7 com.github.Electron.framework 0x0000000105a5df6b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6210219
8 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
9 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
10 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
11 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
12 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
13 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 21:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff67c8781e read + 10
1 com.github.Electron.framework 0x00000001049e48cf ElectronInitializeICUandStartNode + 1741199
2 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
3 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
4 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 22:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2daa59d5 __CFRunLoopServiceMachPort + 247
3 com.apple.CoreFoundation 0x00007fff2daa44a2 __CFRunLoopRun + 1319
4 com.apple.CoreFoundation 0x00007fff2daa391e CFRunLoopRunSpecific + 462
5 com.apple.Foundation 0x00007fff3013f1a8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
6 com.github.Electron.framework 0x0000000105a5ef24 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6214244
7 com.github.Electron.framework 0x0000000105a5df6b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6210219
8 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
9 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
10 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
11 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
12 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
13 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 23:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
5 com.github.Electron.framework 0x0000000105a3c3ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072045
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 24:: CompositorTileWorker1
0 libsystem_kernel.dylib 0x00007fff67c89882 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff67d4a425 _pthread_cond_wait + 698
2 com.github.Electron.framework 0x0000000105a59760 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6191776
3 com.github.Electron.framework 0x000000010611a815 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 13273941
4 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
5 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
6 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 25:: ThreadPoolSingleThreadForegroundBlocking0
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a61fee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6226734
4 com.github.Electron.framework 0x0000000105a3bead v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070765
5 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
6 com.github.Electron.framework 0x0000000105a3c40d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072141
7 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
8 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
9 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 26:
0 libsystem_kernel.dylib 0x00007fff67c86e36 semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000104836360 uv_sem_wait + 16
2 com.github.Electron.framework 0x000000010498d0d9 ElectronInitializeICUandStartNode + 1382809
3 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
4 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 27:: ThreadPoolSingleThreadSharedBackgroundBlocking1
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a61fee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6226734
4 com.github.Electron.framework 0x0000000105a3bead v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070765
5 com.github.Electron.framework 0x0000000105a3c4d1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072337
6 com.github.Electron.framework 0x0000000105a3c37d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6071997
7 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
8 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
9 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 28:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 29:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 30:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 31:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 32:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 33:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 34:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 35:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 36:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 37:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 38:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 39:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 40:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 41:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 42:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 43:
0 libsystem_pthread.dylib 0x00007fff67d45b68 start_wqthread + 0
Thread 44:: ThreadPoolSingleThreadSharedForegroundBlocking2
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a61fee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6226734
4 com.github.Electron.framework 0x0000000105a3bead v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070765
5 com.github.Electron.framework 0x0000000105a3c4d1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072337
6 com.github.Electron.framework 0x0000000105a3c3dd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072093
7 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
8 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
9 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 45:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c4d1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072337
5 com.github.Electron.framework 0x0000000105a3c34d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6071949
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 46:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c6aa v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072810
5 com.github.Electron.framework 0x0000000105a3c3ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072045
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 47:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2daa59d5 __CFRunLoopServiceMachPort + 247
3 com.apple.CoreFoundation 0x00007fff2daa44a2 __CFRunLoopRun + 1319
4 com.apple.CoreFoundation 0x00007fff2daa391e CFRunLoopRunSpecific + 462
5 com.apple.Foundation 0x00007fff3013f1a8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
6 com.github.Electron.framework 0x0000000105a5ef24 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6214244
7 com.github.Electron.framework 0x0000000105a5df6b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6210219
8 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
9 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
10 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
11 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
12 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
13 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 48:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.github.Electron.framework 0x0000000105a62167 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6227111
3 com.github.Electron.framework 0x0000000105a3be9e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6070750
4 com.github.Electron.framework 0x0000000105a3c4d1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072337
5 com.github.Electron.framework 0x0000000105a3c3ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6072045
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 49:: CacheThread_BlockFile
0 libsystem_kernel.dylib 0x00007fff67c8fb96 kevent64 + 10
1 com.github.Electron.framework 0x0000000105a6ea9a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278618
2 com.github.Electron.framework 0x0000000105a6e9be v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6278398
3 com.github.Electron.framework 0x0000000105a2b25f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6002079
4 com.github.Electron.framework 0x0000000105a08579 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5859513
5 com.github.Electron.framework 0x0000000105a44679 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6105529
6 com.github.Electron.framework 0x0000000105a5a188 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6194376
7 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
8 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 50:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff67c86dfa mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff67c87170 mach_msg + 60
2 com.apple.SkyLight 0x00007fff5cd1f497 CGSSnarfAndDispatchDatagrams + 237
3 com.apple.SkyLight 0x00007fff5cf4f38d SLSGetNextEventRecordInternal + 83
4 com.apple.SkyLight 0x00007fff5cdedcce SLEventCreateNextEvent + 136
5 com.apple.HIToolbox 0x00007fff2c6dccc7 PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) + 45
6 com.apple.HIToolbox 0x00007fff2c6dcc72 MessageHandler(__CFMachPort*, void*, long, void*) + 48
7 com.apple.CoreFoundation 0x00007fff2dad45e5 __CFMachPortPerform + 250
8 com.apple.CoreFoundation 0x00007fff2daa5de4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
9 com.apple.CoreFoundation 0x00007fff2daa5d30 __CFRunLoopDoSource1 + 541
10 com.apple.CoreFoundation 0x00007fff2daa4859 __CFRunLoopRun + 2270
11 com.apple.CoreFoundation 0x00007fff2daa391e CFRunLoopRunSpecific + 462
12 com.apple.AppKit 0x00007fff2aeb7954 _NSEventThread + 132
13 libsystem_pthread.dylib 0x00007fff67d4a109 _pthread_start + 148
14 libsystem_pthread.dylib 0x00007fff67d45b8b thread_start + 15
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00007fd1414d39f8 rbx: 0x00007fd121499880 rcx: 0x000000010c4ccc48 rdx: 0x00007fd121499880
rdi: 0x00007fd121499880 rsi: 0x00007fff71ec9032 rbp: 0x00007ffeeb438430 rsp: 0x00007ffeeb438418
r8: 0x00007fff2daa651c r9: 0x00007ffeeb438b80 r10: 0x000007fd12148d80 r11: 0x00007fff71ec9032
r12: 0x00007fd1214a05f0 r13: 0x0000000000000028 r14: 0x00007fd1214a0670 r15: 0x0000000000000000
rip: 0x00007fff6699081d rfl: 0x0000000000010202 cr2: 0x000007fd12148d98
Logical CPU: 4
Error Code: 0x00000004 (no mapping for user data read)
Trap Number: 14
Binary Images:
0x1047c2000 - 0x104815fdb +com.github.Electron (12.0.8 - 12.0.8) <AA4C61DE-316D-3FF8-A333-BC505E9F229E> /Users/USER/*/Electron.app/Contents/MacOS/Electron
0x10481e000 - 0x10c285fef +com.github.Electron.framework (12.0.8) <9A268754-8167-3C44-8C09-C30D1329ED85> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x10cabe000 - 0x10caf9fff +com.github.Squirrel (1.0 - 1) <EC76C39B-2BF5-3A47-BE61-361A3CAB7D78> /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x10cb10000 - 0x10cb7bff7 +com.electron.reactive (3.1.0 - 0.0.0) <88230766-080F-3E3C-8298-916D321C7C58> /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveObjC.framework/Versions/A/ReactiveObjC
0x10cb9f000 - 0x10cbd2ff7 +org.mantle.Mantle (1.0 - 0.0.0) <F173A036-0D28-36E5-ABE9-4E5F75489BC7> /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x10cbe4000 - 0x10ce7bff7 +libffmpeg.dylib (0) <CFEAA727-C365-34C1-850B-10C5E651ADB2> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x10dc11000 - 0x10dc14047 libobjc-trampolines.dylib (787.1) <88F9B648-C455-36F8-BBB9-7D1A9F57D073> /usr/lib/libobjc-trampolines.dylib
0x10dc6b000 - 0x10dcfcf47 dyld (750.6) <1DCAF85D-70A4-3405-A868-25AF3DC1F32B> /usr/lib/dyld
0x7fff20aa7000 - 0x7fff20ac2ff7 libJapaneseConverter.dylib (76) <BDBB29D7-3AA5-3BD0-AFFA-374398DEE933> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0x7fff211d5000 - 0x7fff2144affc com.apple.AMDRadeonX6000MTLDriver (3.10.19 - 3.1.0) <4B72032C-658F-3164-96E8-18BCBAF84C72> /System/Library/Extensions/AMDRadeonX6000MTLDriver.bundle/Contents/MacOS/AMDRadeonX6000MTLDriver
0x7fff292c1000 - 0x7fff294bcff8 com.apple.avfoundation (2.0 - 1855.3) <0837D912-3783-35D6-A94A-E474E18600CF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff294bd000 - 0x7fff29589ffe com.apple.audio.AVFAudio (1.0 - 415.75) <CAC3CA5F-FCF6-37EB-8F1A-090340E2C38E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff296a9000 - 0x7fff296a9fff com.apple.Accelerate (1.11 - Accelerate 1.11) <4F9977AE-DBDB-3A16-A536-AC1F9938DCDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff296aa000 - 0x7fff296c0fef libCGInterfaces.dylib (524.2.1) <8FD09D09-BB19-36C5-ADE9-4F22DA235AEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff296c1000 - 0x7fff29d17fff com.apple.vImage (8.1 - 524.2.1) <EA6F5FF2-7A1B-35D5-A5A3-D2B3386ECB75> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff29d18000 - 0x7fff29f7fff7 libBLAS.dylib (1303.60.1) <C6C2D42F-7456-3DBF-8BE2-9AA06EFC78FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff29f80000 - 0x7fff2a453fef libBNNS.dylib (144.100.2) <99C61C48-B14C-3DA6-8C31-6BF72DA0A3A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff2a454000 - 0x7fff2a7effff libLAPACK.dylib (1303.60.1) <5E3E3867-50C3-3E6A-9A2E-007CE77A4641> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2a7f0000 - 0x7fff2a805fec libLinearAlgebra.dylib (1303.60.1) <3D433800-0099-33E0-8C81-15F83247B2C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff2a806000 - 0x7fff2a80bff3 libQuadrature.dylib (7) <371F36A7-B12F-363E-8955-F24F7C2048F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2a80c000 - 0x7fff2a87cfff libSparse.dylib (103) <B8A10D0C-4577-343D-B310-A3E81265D107> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff2a87d000 - 0x7fff2a88ffef libSparseBLAS.dylib (1303.60.1) <B147FEF6-A0DB-3830-BF06-45BEC58DB576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2a890000 - 0x7fff2aa67fd7 libvDSP.dylib (735.140.1) <D63DC0A5-B8B4-3562-A574-E73BC3B57407> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff2aa68000 - 0x7fff2ab2afef libvMisc.dylib (735.140.1) <3601FDE3-B142-398D-987D-8151A51F0A96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2ab2b000 - 0x7fff2ab2bfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F6C5613D-2284-342B-9160-9731F78B4DE5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff2ab2c000 - 0x7fff2ab8bff0 com.apple.Accounts (113 - 113) <E2438070-30AB-3B89-AE63-1E485B92D108> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff2acd5000 - 0x7fff2ba95ff2 com.apple.AppKit (6.9 - 1894.60.100) <763827BC-780B-30A9-B067-B04D8E90910B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff2bae5000 - 0x7fff2bae5fff com.apple.ApplicationServices (48 - 50) <4758C933-0823-3B84-8E68-03DA706CC208> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff2bae6000 - 0x7fff2bb51fff com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <87EA5DE1-506A-39FD-88BE-D8A3416C9012> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2bbea000 - 0x7fff2bc28ff0 libFontRegistry.dylib (274.0.5.1) <F3461C05-0370-359B-9F03-5C1C1F7763EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff2bc83000 - 0x7fff2bcb2fff com.apple.ATSUI (1.0 - 1) <5F513967-DDD7-3F22-AD14-8A38ABD9F2D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
0x7fff2bcb3000 - 0x7fff2bcb7ffb com.apple.ColorSyncLegacy (4.13.0 - 1) <72EE68DB-F069-37F5-AA2A-40D5FCF139F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2bd51000 - 0x7fff2bda8ffa com.apple.HIServices (1.22 - 676) <14DF4D42-E24D-3EBD-9A9D-93124D8D6AA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff2bda9000 - 0x7fff2bdb7fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <01B8B6B3-E2C3-3607-B34A-8283A7E0E924> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2bdb8000 - 0x7fff2bdfdffa com.apple.print.framework.PrintCore (15.4 - 516.2) <437BCF12-48D2-3770-8BC9-567718FB1BCA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2bdfe000 - 0x7fff2be08ff7 com.apple.QD (4.0 - 413) <27A36D07-B5E9-32E6-87B6-3127F260F48D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2be09000 - 0x7fff2be16ffc com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <75344F8F-32CA-3558-B4E6-F56D498250E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2be17000 - 0x7fff2bef8ff2 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <3A7E709F-DE6E-313B-82A1-1E9C8B734CF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2befa000 - 0x7fff2befafff com.apple.audio.units.AudioUnit (1.14 - 1.14) <76010435-2167-3B23-9E2A-E73F7F6C1B25> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff2c291000 - 0x7fff2c61fffa com.apple.CFNetwork (1128.1 - 1128.1) <81AE2F6D-46E2-36D9-ADCE-E79E7A869D1D> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff2c69b000 - 0x7fff2c69bfff com.apple.Carbon (160 - 162) <49582194-AEFB-3FE9-B9D0-DB4AD24EFEDC> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff2c69c000 - 0x7fff2c69fff3 com.apple.CommonPanels (1.2.6 - 101) <9F6E13D9-374B-386F-8E15-FDD6CE967859> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff2c6a0000 - 0x7fff2c994ff3 com.apple.HIToolbox (2.1.1 - 994.6) <EAF2DAC3-66B1-30BF-AF10-72DDA90D1044> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff2c995000 - 0x7fff2c998ff3 com.apple.help (1.3.8 - 71) <36483951-6F3E-3F7E-8A5B-191C2357EF17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff2c999000 - 0x7fff2c99eff7 com.apple.ImageCapture (9.0 - 1600.65) <1A1F320E-3E85-3F3D-8AE0-B238C4E92D40> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff2c99f000 - 0x7fff2c99ffff com.apple.ink.framework (10.15 - 227) <284507AE-EF47-3ABC-86A4-669243DB1D33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff2c9a0000 - 0x7fff2c9baffa com.apple.openscripting (1.7 - 185.1) <B6E28747-5FC7-3461-8A71-864A969ED022> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff2c9db000 - 0x7fff2c9dbfff com.apple.print.framework.Print (15 - 271) <0D9FB08F-EA87-3BE7-821B-C61BA5601050> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff2c9dc000 - 0x7fff2c9deff7 com.apple.securityhi (9.0 - 55008) <390C6FAA-99BF-3924-9180-9EAE41D9C6BE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff2c9df000 - 0x7fff2c9e5fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9614A01E-8303-3422-A3BA-6CE27540E09A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2c9e6000 - 0x7fff2cb7effa com.apple.cloudkit.CloudKit (867 - 867) <1B851180-FC00-357F-B6C1-BB0EA7D6D5CA> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff2cb7f000 - 0x7fff2cb7ffff com.apple.Cocoa (6.11 - 23) <4C81A68B-4967-3688-BB6C-7C19E78EA20F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff2cb8d000 - 0x7fff2cc83fff com.apple.ColorSync (4.13.0 - 3394.9) <A126406C-DA38-3FFE-8B25-BB9859EFD159> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff2cd75000 - 0x7fff2ceaeff6 com.apple.contacts (1.0 - 3455.18) <57696192-BF9D-3946-8C78-35FCEF406B00> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
0x7fff2cf6e000 - 0x7fff2d477ffb com.apple.audio.CoreAudio (5.0 - 5.0) <47923B12-3D14-328A-9C86-27A3A2A73068> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff2d4ca000 - 0x7fff2d502fff com.apple.CoreBluetooth (1.0 - 1) <23DBB313-A082-3C08-8E1F-2D31EE4247EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff2d503000 - 0x7fff2d8edfe8 com.apple.CoreData (120 - 977.3) <49AE61CA-C91E-31FE-9BD0-1AACFFB5181E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff2d8ee000 - 0x7fff2da20ff6 com.apple.CoreDisplay (1.0 - 186.6.15) <213D7011-8180-3CF4-9BE7-FB8F75DCDB95> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff2da21000 - 0x7fff2dea1ff2 com.apple.CoreFoundation (6.9 - 1677.205) <83F301FE-DE7E-315D-B4EA-CDA62F114F0A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff2dea3000 - 0x7fff2e518fe8 com.apple.CoreGraphics (2.0 - 1355.24) <041366C9-FE91-3B58-95DD-5800A817BAB6> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff2e526000 - 0x7fff2e881ff0 com.apple.CoreImage (15.0.0 - 940.9) <69361069-01AB-342E-862B-73A74271A765> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff2e882000 - 0x7fff2e8ebff0 com.apple.corelocation (2394.0.22 - 2394.0.22) <75966124-2FB7-33C3-BE49-3DD5F327F911> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff2e8ec000 - 0x7fff2e93cff6 com.apple.audio.midi.CoreMIDI (1.10 - 88) <017B0334-8AC4-304B-A5E2-C82C51BE1917> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x7fff2e93f000 - 0x7fff2ec41ff2 com.apple.CoreML (1.0 - 1) <FD17F9EB-1930-314C-B6B4-2A2E643AC771> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff2ec42000 - 0x7fff2ed1dffc com.apple.CoreMedia (1.0 - 2625.9) <A3FF3AFC-8C1C-36E5-9179-66D8F075EE35> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff2ed1e000 - 0x7fff2ed80ffe com.apple.CoreMediaIO (1000.0 - 5125.6) <EE8EEB82-D382-3A18-BD4E-9896B7F5A9BA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff2ee0a000 - 0x7fff2ee0afff com.apple.CoreServices (1069.24 - 1069.24) <C7B6191A-C8E2-3BBF-B678-93C2E2AEBC9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff2ee0b000 - 0x7fff2ee90fff com.apple.AE (838.1 - 838.1) <2E5FD5AE-8A7F-353F-9BD1-0241F3586181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff2ee91000 - 0x7fff2f172ff7 com.apple.CoreServices.CarbonCore (1217 - 1217) <BE379206-99FA-30CD-8391-2708473A633F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff2f173000 - 0x7fff2f1c0ffd com.apple.DictionaryServices (1.2 - 323.6) <26B70C82-25BC-353A-858F-945B14C803A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff2f1c1000 - 0x7fff2f1c9ff7 com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) <FC84DB48-A3CE-30F7-A918-B3587731ACC7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff2f1ca000 - 0x7fff2f404ff6 com.apple.LaunchServices (1069.24 - 1069.24) <9A5359D9-9148-3B18-B868-56A9DA5FB60C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff2f405000 - 0x7fff2f49dff1 com.apple.Metadata (10.7.0 - 2076.7) <0973F7E5-D58C-3574-A3CE-4F12CAC2D4C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff2f49e000 - 0x7fff2f4cbfff com.apple.CoreServices.OSServices (1069.24 - 1069.24) <0E4F48AD-402C-3E9D-9CA9-6DD9479B28F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff2f4cc000 - 0x7fff2f533fff com.apple.SearchKit (1.4.1 - 1.4.1) <2C5E1D85-E8B1-3DC5-91B9-E3EDB48E9369> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff2f534000 - 0x7fff2f558ff5 com.apple.coreservices.SharedFileList (131.4 - 131.4) <02DE0D56-E371-3EF5-9BC1-FA435451B412> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff2f559000 - 0x7fff2f5cafff com.apple.CoreSpotlight (1.0 - 2076.7) <30F95EA5-8DB6-39D9-BF46-C486CAC7AA7B> /System/Library/Frameworks/CoreSpotlight.framework/Versions/A/CoreSpotlight
0x7fff2f7b5000 - 0x7fff2f87cffc com.apple.CoreTelephony (113 - 7560.1) <31D93EB1-0A20-3383-9680-090E441F25D8> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony
0x7fff2f87d000 - 0x7fff2fa34ffc com.apple.CoreText (643.1.5.5 - 643.1.5.5) <8573E719-F71C-3123-8394-701E4989E34A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff2fa35000 - 0x7fff2fa79ffb com.apple.CoreVideo (1.8 - 344.3) <5314E70D-325F-3E98-99FC-00FDF520747E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff2fa7a000 - 0x7fff2fb07ffc com.apple.framework.CoreWLAN (13.0 - 1601.2) <6223BFD5-D451-3DE9-90F6-F609AC0B0027> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff2fb3e000 - 0x7fff2fb7eff5 com.apple.CryptoTokenKit (1.0 - 1) <85B4A992-8B61-39FB-BCDE-05A2D5989D74> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit
0x7fff2fcc3000 - 0x7fff2fcceff7 com.apple.DirectoryService.Framework (10.15 - 220.40.1) <6EACB7D0-A013-3D2B-93D2-5113F7C2559D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff2fccf000 - 0x7fff2fd79ff0 com.apple.DiscRecording (9.0.3 - 9030.4.5) <BCF3AFB0-6E1A-3F28-A575-1FD2D74E7C19> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff2fd9e000 - 0x7fff2fda4fff com.apple.DiskArbitration (2.7 - 2.7) <14572D3E-7743-31E3-8777-A7BE2EAF518F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff2fdcb000 - 0x7fff2ff78ffc com.apple.ical.EventKit (3.0 - 1370.5.1) <E15BB2B5-C1AE-3084-99C0-5F432D80CBC2> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
0x7fff2ff99000 - 0x7fff300c7ff6 com.apple.FileProvider (304.1 - 304.1) <E8BB1D4B-05D6-386C-865C-F8C750CEC308> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
0x7fff300dc000 - 0x7fff300deff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) <9B324178-4FAA-3686-9E01-634607F38493> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x7fff300df000 - 0x7fff304a4fff com.apple.Foundation (6.9 - 1677.205) <1D3A7414-141E-3170-9D18-69A53F1ACAAC> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff30511000 - 0x7fff30561ff7 com.apple.GSS (4.0 - 2.0) <1B6FCC64-7ED0-30E4-AD2D-AD35D621981D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff30562000 - 0x7fff3058aff4 com.apple.GameController (1.0 - 1) <2B7F0994-4B32-3B08-B58A-3FA5A5E65AF4> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff3069e000 - 0x7fff307b2ff3 com.apple.Bluetooth (7.0.6 - 7.0.6f8) <C7AF719C-51B4-3727-A947-EB01204272D9> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff30818000 - 0x7fff308bcff3 com.apple.framework.IOKit (2.0.2 - 1726.148.1) <0A9D244C-AECC-3D29-86DE-4F3B04F8DD25> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff308be000 - 0x7fff308cfffb com.apple.IOSurface (269.11 - 269.11) <BCD744D4-E17E-3C2E-B69C-F69C789892E9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff308ed000 - 0x7fff3094dff5 com.apple.ImageCaptureCore (1.0 - 1600.65) <281CE141-B350-30E2-B345-FC7E7DF1AA3A> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff3094e000 - 0x7fff30aabfe6 com.apple.ImageIO.framework (3.3.0 - 1976.11.6) <1B271746-8BFA-382B-A223-4D4B4AD12504> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff30aac000 - 0x7fff30aaffff libGIF.dylib (1976.11.6) <F6721850-6AEC-3C70-B90B-FBF7CB3C1265> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff30ab0000 - 0x7fff30b69fe7 libJP2.dylib (1976.11.6) <56C503FB-B37D-352D-B77A-D8BF1160289B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff30b6a000 - 0x7fff30b8dfe3 libJPEG.dylib (1976.11.6) <B82AC9B8-3416-3E16-AF45-5F1B96FDB38F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff30e0a000 - 0x7fff30e24fef libPng.dylib (1976.11.6) <7C2D2001-B75A-33AF-A498-0B7B0C5E4DAD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff30e25000 - 0x7fff30e26fff libRadiance.dylib (1976.11.6) <1BA2051B-890C-39B8-9489-6187D1C2F404> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff30e27000 - 0x7fff30e6dfff libTIFF.dylib (1976.11.6) <A3AA8DCA-A06E-33A3-9EC0-9D9BAE6A9531> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff30e86000 - 0x7fff31315ff8 com.apple.Intents (1.0 - 1) <B2884C7F-0D08-3E3C-91A3-7FB755BB5CB1> /System/Library/Frameworks/Intents.framework/Versions/A/Intents
0x7fff31318000 - 0x7fff323b8ff1 com.apple.JavaScriptCore (15609 - 15609.4.1) <18766B97-AB12-331C-984C-F1C7C9363E8B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff323cf000 - 0x7fff323e1ff3 com.apple.Kerberos (3.0 - 1) <03BB492B-016E-37BF-B020-39C2CF7487FE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff323e2000 - 0x7fff323e2fff libHeimdalProxy.dylib (77) <0A2905EE-9533-3345-AF9B-AAC71513BDFD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x7fff323e3000 - 0x7fff32419ff7 com.apple.LDAPFramework (2.4.28 - 194.5) <020B3FA5-C305-3B13-9DFB-1D526EC3C96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff3252d000 - 0x7fff3254fffc com.apple.CoreAuthentication.SharedUtils (1.0 - 693.140.3) <A3F9CE45-4F7A-3F5D-865C-6EB9B6C3B3B4> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
0x7fff32550000 - 0x7fff32566ff2 com.apple.LocalAuthentication (1.0 - 693.140.3) <5D391FD1-391B-390A-BBC1-62A537C8DAFE> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x7fff32774000 - 0x7fff3277effb com.apple.MediaAccessibility (1.0 - 125.1) <98065EA1-3484-3A5A-B05C-D2FABED8CEA4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff32792000 - 0x7fff32849ff7 com.apple.MediaPlayer (1.0 - 1.0) <FE739C02-1000-36C8-9FAD-26FF3D8240CB> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer
0x7fff3284a000 - 0x7fff32f97ff2 com.apple.MediaToolbox (1.0 - 2625.9) <3A848992-9182-382A-BF7D-5CB9707BE27B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff32f99000 - 0x7fff33063fff com.apple.Metal (212.8 - 212.8) <98C944D6-62C8-355E-90F8-C1CA2429EF24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff33065000 - 0x7fff3307fff5 com.apple.MetalKit (141.2 - 141.2) <FAACD940-5CF2-300A-83F3-86ABA7FDC531> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff33080000 - 0x7fff330bdff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <7EBAC15D-7837-395D-B405-1E29F7DA68FA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff330be000 - 0x7fff33148fe2 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <B424FE0C-6E90-3BFA-A6E7-DD86C735AE90> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff33149000 - 0x7fff3316eff4 com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <02006D92-E2AB-3892-A96B-37F6520C19BA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff3316f000 - 0x7fff33184ffb com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <CAA5A368-DB71-34F6-AEF9-27A8BC298F53> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
0x7fff33185000 - 0x7fff332e3ffc com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <05612E06-50CB-318F-9F8E-EF4D49FAB3B0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff332e4000 - 0x7fff33333ff4 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B0B591F8-6875-351E-867F-8EB3CD38CD52> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff33334000 - 0x7fff33335ff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <F2921F9A-3041-3495-878D-64134267B847> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff343d5000 - 0x7fff343e1ffe com.apple.NetFS (6.0 - 4.0) <57CABC68-0585-3989-9161-157DBB544B82> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff343e2000 - 0x7fff34539ff3 com.apple.Network (1.0 - 1) <4A0F3B93-4D23-3E74-9A3D-AD19E9C0E59E> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff3453a000 - 0x7fff3479affa com.apple.NetworkExtension (1.0 - 1) <3ED35C5A-B170-373E-8277-D4198E408810> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
0x7fff36f6b000 - 0x7fff36fc3fff com.apple.opencl (3.5 - 3.5) <C4847D3F-8BBB-3B6A-A997-C16042DCE2FA> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff36fc4000 - 0x7fff36fe0fff com.apple.CFOpenDirectory (10.15 - 220.40.1) <7E6C88EB-3DD9-32B0-81FC-179552834FA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff36fe1000 - 0x7fff36fecffd com.apple.OpenDirectory (10.15 - 220.40.1) <4A92D8D8-A9E5-3A9C-942F-28576F6BCDF5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff37952000 - 0x7fff37954fff libCVMSPluginSupport.dylib (17.10.22) <50071DF6-251A-3F7E-A9EC-0625BDD24F7F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff37955000 - 0x7fff3795afff libCoreFSCache.dylib (176.16.1) <BAE3602F-5452-323B-B696-C049F64A2D60> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff3795b000 - 0x7fff3795ffff libCoreVMClient.dylib (176.16.1) <B41FD53F-5730-3832-BC45-12E3101FF5BE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff37960000 - 0x7fff37968ff7 libGFXShared.dylib (17.10.22) <7358D2D6-F046-3DA7-B80A-039F950BF484> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff37969000 - 0x7fff37973fff libGL.dylib (17.10.22) <E5190CA0-0D87-3B0B-8D3C-B60C42BC18DA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff37974000 - 0x7fff379a8ff7 libGLImage.dylib (17.10.22) <FB5A6177-F299-371C-9296-71F60E6B3CF3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff37b3e000 - 0x7fff37b7afff libGLU.dylib (17.10.22) <66BCAD33-0264-31AB-966C-66DD4359EAF4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff385b6000 - 0x7fff385c5ff7 com.apple.opengl (17.10.22 - 17.10.22) <5B337C5E-F97E-32F0-AD50-2C293BFCA7FB> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff38777000 - 0x7fff3886aff5 com.apple.PDFKit (1.0 - 845.4.1) <A58B3E4C-6B27-32A7-AC6E-35BCB5A45944> /System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff3886b000 - 0x7fff38982ff9 com.apple.PencilKit (1.0 - 1) <95301D00-CE35-3F53-BAE1-6E6217706702> /System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff38c23000 - 0x7fff38c29ff6 com.apple.PushKit (1.0 - 1) <AD547A25-1A0B-3FA6-8676-82C37F267A4A> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
0x7fff38d4a000 - 0x7fff38f90ff7 com.apple.imageKit (3.0 - 1081) <5F086EE2-5745-3E28-B292-1DE5E0652E36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff38f91000 - 0x7fff39450fff com.apple.QuartzComposer (5.1 - 378) <9C10ADF7-94B0-3779-AD44-5AF6394A32AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff39451000 - 0x7fff39476ffc com.apple.quartzfilters (1.10.0 - Tag) <876E8B28-9500-34C6-B297-EA404D89C903> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff39477000 - 0x7fff39581ff7 com.apple.QuickLookUIFramework (5.0 - 906.3) <7128FB8C-83B0-3250-BF86-E8A1772CF1F5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff39582000 - 0x7fff39582fff com.apple.quartzframework (1.5 - 23) <0E9BC89B-B86F-3E94-866A-AC0863522BF5> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff39583000 - 0x7fff39806ffb com.apple.QuartzCore (1.11 - 841.5) <26281BD1-499F-37C0-885C-58DD9245525D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff39807000 - 0x7fff39860ff5 com.apple.QuickLookFramework (5.0 - 906.3) <959CE934-B541-3172-846F-4D1709353526> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff39861000 - 0x7fff39896ffc com.apple.QuickLookThumbnailing (1.0 - 1) <9CCB50D8-AA39-3744-93FB-7B5B65467AB3> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff39d67000 - 0x7fff39d81ff2 com.apple.SafariServices.framework (15610 - 15610.2.11.51.10) <15E5509B-9AE4-3980-971A-74E9E80996FB> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff3a389000 - 0x7fff3a6d2ff1 com.apple.security (7.0 - 59306.140.6) <A896EE58-D7EA-34E4-8832-93E38EA47831> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff3a6d3000 - 0x7fff3a75bffb com.apple.securityfoundation (6.0 - 55236.60.1) <CCF58C3E-8953-3952-863B-0235054F0D40> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff3a75c000 - 0x7fff3a789ff7 com.apple.securityinterface (10.0 - 55139.120.1) <72DC3440-6D3E-39DF-B8A8-85ADAE8D38FC> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff3a78a000 - 0x7fff3a78eff8 com.apple.xpc.ServiceManagement (1.0 - 1) <0065A95F-0AEB-306D-94DC-6E7F70AA6EBD> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff3aac2000 - 0x7fff3aadfff9 com.apple.StoreKit (1.0 - 1) <D39EA2FD-A7E7-341F-80BD-18912272CAFE> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x7fff3b43a000 - 0x7fff3b4b4ff7 com.apple.SystemConfiguration (1.19 - 1.19) <84F9B3BB-F7AF-3B7C-8CD0-D3C22D19619F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff3b67d000 - 0x7fff3b6b2ff2 com.apple.UserNotifications (1.0 - ???) <8DB163D1-66F0-3B52-933F-48F945E3FF4D> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications
0x7fff3b734000 - 0x7fff3bab7ff4 com.apple.VideoToolbox (1.0 - 2625.9) <6CF18E28-A7A8-3952-8171-7E4FF4FB37FA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff3bab8000 - 0x7fff3bd3bfff com.apple.VN (3.0.97 - 3.0.97) <078CA4E3-B131-306F-A760-D45CB3F1AD0D> /System/Library/Frameworks/Vision.framework/Versions/A/Vision
0x7fff3f424000 - 0x7fff3f4e9fe7 com.apple.APFS (1412.141.2 - 1412.141.2) <FC81D7DC-5760-384E-A8FA-3CA56B8C1EE8> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff3fe39000 - 0x7fff3feeaff6 com.apple.accounts.AccountsDaemon (113 - 113) <F8B91912-80AD-34C0-99CC-4A3569D9F6FD> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon
0x7fff4048d000 - 0x7fff405e2ff2 com.apple.AddressBook.core (1.0 - 1) <56464766-2D02-3795-92C5-E5DB6DDA6D38> /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore
0x7fff405fe000 - 0x7fff405ffff1 com.apple.AggregateDictionary (1.0 - 1) <95A291F5-B69F-3C37-9483-C3B2EBF52AC1> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff40a4d000 - 0x7fff40b98ff5 com.apple.AnnotationKit (1.0 - 325.9) <9BB0EDB6-3808-30FC-B0ED-764DE5AAB893> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff40b99000 - 0x7fff40bb6ff4 com.apple.AppContainer (4.0 - 448.100.6) <87CEE13C-8585-3EFB-92CD-0852DFF0921B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff40c0b000 - 0x7fff40c19ff7 com.apple.AppSandbox (4.0 - 448.100.6) <0F49AA04-3400-349A-9096-6D4D7ED61027> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff40c1c000 - 0x7fff40c7aff5 com.apple.AppStoreDaemon (1.0 - 1) <5A01D730-DB70-3441-ADC1-D7DF17E39578> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Versions/A/AppStoreDaemon
0x7fff41004000 - 0x7fff41069ff7 com.apple.AppSupport (1.0.0 - 29) <7408886B-B0CC-3EF0-9F11-9088DEE266ED> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
0x7fff41095000 - 0x7fff410b9ffb com.apple.framework.Apple80211 (13.0 - 1610.1) <D94E03E8-4C38-3B2F-8DF4-473ACC5A7D71> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff410ba000 - 0x7fff411edff3 com.apple.AppleAccount (1.0 - 1.0) <939881CD-B6FE-36F7-AE17-602329EE352D> /System/Library/PrivateFrameworks/AppleAccount.framework/Versions/A/AppleAccount
0x7fff41377000 - 0x7fff41386fd7 com.apple.AppleFSCompression (119.100.1 - 1.0) <466ABD77-2E52-36D1-8E39-77AE2CC61611> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff41485000 - 0x7fff41490ff7 com.apple.AppleIDAuthSupport (1.0 - 1) <74F6CD9C-27A7-39C7-A7EB-47E60D2517EB> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff41491000 - 0x7fff414d1ff1 com.apple.AppleIDSSOAuthentication (1.0 - 1) <C185B6DB-B784-3C52-983B-EA9B866327B0> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication
0x7fff414d2000 - 0x7fff4151aff7 com.apple.AppleJPEG (1.0 - 1) <6DE30A07-C627-319B-A0DE-EB7A832BEB88> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff4151b000 - 0x7fff4152bff7 com.apple.AppleLDAP (10.15 - 52) <E21B4A50-7102-3C35-8852-338E7E3CC4E2> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
0x7fff4152c000 - 0x7fff418d0ffd com.apple.AppleMediaServices (1.0 - 1) <533DB7DE-4799-3A05-B75F-AEE8B45FF6F5> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices
0x7fff418dd000 - 0x7fff41903ffb com.apple.aps.framework (4.0 - 4.0) <3ED300B6-43E3-31DC-B3C6-6A0FF41A2595> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff41904000 - 0x7fff41908ff7 com.apple.AppleSRP (5.0 - 1) <70C25EA9-F7A7-366C-97C6-EEE7845FFCC3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff41909000 - 0x7fff4192bfff com.apple.applesauce (1.0 - 16.25) <68E0364C-AEA7-3654-A030-136BF3CD92F3> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff419ea000 - 0x7fff419edfff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <67255151-F989-39F0-BC87-0C0BDAE70730> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff419ee000 - 0x7fff41a3eff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <E8540613-F9C7-3665-AB6E-EA43A05B83B4> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff41a87000 - 0x7fff41a96ff9 com.apple.AssertionServices (1.0 - 223.140.2) <48AD21CA-B81D-380E-A04F-90C48FDA5203> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff41fd9000 - 0x7fff423d4ff8 com.apple.audio.AudioResourceArbitration (1.0 - 1) <2BD68521-C19C-3D67-B5EB-DE3E9A4DAF0A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
0x7fff4262a000 - 0x7fff4286aff8 com.apple.audio.AudioToolboxCore (1.0 - 1104.97) <E3B9D2AD-F256-38B5-93AC-6591E3787F7F> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
0x7fff4286e000 - 0x7fff4298afff com.apple.AuthKit (1.0 - 1) <DC1A27C5-0172-3C72-9B24-06996D0B6207> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff42b47000 - 0x7fff42b50ff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <A6877DAD-8F47-363C-983A-DC8DDE83B7B5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff42b51000 - 0x7fff42bf2ff5 com.apple.backup.framework (1.11.7 - 1298.7.1) <C9DC35FA-E69F-3C64-9519-494126096337> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff42bf3000 - 0x7fff42c7fff6 com.apple.BaseBoard (466.3 - 466.3) <10D0F3BB-E8F3-365E-8528-6AC996A9B0E7> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff42d50000 - 0x7fff42d80ffa com.apple.BoardServices (1.0 - 466.3) <95D829A0-6339-35F7-BC46-5A54AE62DB30> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
0x7fff42d81000 - 0x7fff42dbdff7 com.apple.bom (14.0 - 219.2) <79CBE5E7-054F-377B-9566-A86A9F120CF1> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff42edb000 - 0x7fff42f12ff5 com.apple.C2 (1.3 - 495) <4A7E2A63-E19A-3936-92F5-03F2FD602172> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
0x7fff4303e000 - 0x7fff43098ff2 com.apple.CalDAV (8.0 - 790.4.1) <E5983EF6-0462-3EB6-8F28-B14EAC3B7B63> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
0x7fff43248000 - 0x7fff43273fff com.apple.CalendarAgentLink (8.0 - 250) <57225073-4A73-3AB8-849A-47C0E90B04BF> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
0x7fff4328c000 - 0x7fff43304ff4 com.apple.CalendarFoundation (8.0 - 1140.6.1) <F051C149-562B-36F4-BF8F-CE66B5D6E360> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/CalendarFoundation
0x7fff4333b000 - 0x7fff43633ffe com.apple.CalendarPersistence (8.0 - 1040.5.1) <38A88B23-3389-3C3A-AEDE-D42A5F5267C6> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/CalendarPersistence
0x7fff4393d000 - 0x7fff4398cfff com.apple.ChunkingLibrary (307 - 307) <5B09C30D-FD2B-3E98-8B64-C5EF470FC13C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff4398d000 - 0x7fff439fbff9 com.apple.ClassKit (1.2 - 145.6.1) <1AD3AB3B-11A1-3BA6-82F3-CF1A7BAE6E47> /System/Library/PrivateFrameworks/ClassKit.framework/Versions/A/ClassKit
0x7fff43ae7000 - 0x7fff43b72ff8 com.apple.CloudDocs (1.0 - 698.17) <900567ED-DEA4-30D5-A1C0-78BD53C58CD6> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff44839000 - 0x7fff44849ffb com.apple.CommonAuth (4.0 - 2.0) <7A6E5A56-7929-3E44-8FCC-FE1DC6751082> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff4485d000 - 0x7fff44874fff com.apple.commonutilities (8.0 - 900) <F4C97244-E5D8-3F7D-8D94-4B6841C5A4EC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff44b08000 - 0x7fff44b44ffa com.apple.contacts.ContactsAutocomplete (1.0 - 1138) <7355EC48-BA3B-333E-A2DD-C7622382FAE4> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/ContactsAutocomplete
0x7fff44b75000 - 0x7fff44bf9ff9 com.apple.AddressBook.ContactsFoundation (8.0 - 1118.9) <D508D709-2D18-3BB7-9AD1-5FF4D114F8B8> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff44bfa000 - 0x7fff44c37ff0 com.apple.contacts.ContactsPersistence (1.0 - 3455.18) <7597C280-EED8-313F-BE2F-72FAD1CB090F> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
0x7fff44f7b000 - 0x7fff45350fc8 com.apple.CoreAUC (283.0.0 - 283.0.0) <4341271C-D270-3F9F-8464-31A20D15158D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff45351000 - 0x7fff4537eff7 com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <C3CFDC68-C7D9-3C44-9E7C-801D45575C10> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff453a1000 - 0x7fff453c2ff4 com.apple.analyticsd (1.0 - 1) <7BAD537E-C905-330D-BABF-AA0AA0FE0E27> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
0x7fff454cb000 - 0x7fff45541ff7 com.apple.corebrightness (1.0 - 1) <BE927D79-1C49-3C0B-B8AD-055F34A35AE3> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff4563b000 - 0x7fff456ccffe com.apple.coredav (1.0.1 - 870.4.1) <62E621B9-DA73-371A-9B39-FFDE54AED5B1> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
0x7fff456cd000 - 0x7fff456d8ff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <BB7D67B1-2102-3D71-9BB6-AEB8C6A6EBB2> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff456d9000 - 0x7fff458e4ff1 com.apple.CoreDuet (1.0 - 1) <F899F217-FC31-3140-A0EB-92EAD22EEF71> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff458e5000 - 0x7fff45932ff3 com.apple.coreduetcontext (1.0 - 1) <72341E86-6921-35FE-89CA-7B04725ECC0F> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext
0x7fff45933000 - 0x7fff45943ffe com.apple.CoreDuetDaemonProtocol (1.0 - 1) <5E31B761-4B30-39A8-9084-97ECFD268B6F> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff45946000 - 0x7fff45948fff com.apple.CoreDuetDebugLogging (1.0 - 1) <6D0113DB-61D8-3A21-95CB-9E30D8F929F9> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff45959000 - 0x7fff45969ff3 com.apple.CoreEmoji (1.0 - 107.1) <7C2B3259-083B-31B8-BCDB-1BA360529936> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff45b1f000 - 0x7fff45c6cfff com.apple.CoreHandwriting (161 - 1.2) <21DAD964-51A7-3F38-9C91-EF46C0CFF12D> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff45fa9000 - 0x7fff46013ff0 com.apple.CoreNLP (1.0 - 213) <E70E2505-8078-324E-BAE1-01A2DA980E2C> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff462d6000 - 0x7fff4635effe com.apple.CorePDF (4.0 - 518.4.1) <8F94505C-96C2-3694-BEC7-F3B5581A7AB9> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff46441000 - 0x7fff46449ff8 com.apple.CorePhoneNumbers (1.0 - 1) <E4DAD514-0B3B-3E0B-8AEA-39B320FAAF03> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff46d5d000 - 0x7fff46d68ffa com.apple.corerecents (1.0 - 1) <57697048-D149-34D0-9499-05821C791EA2> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
0x7fff46e36000 - 0x7fff46e59fff com.apple.CoreSVG (1.0 - 129.3) <F38189F9-C8F9-3D62-9D5F-3F520FB81724> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
0x7fff46e5a000 - 0x7fff46e8dfff com.apple.CoreServicesInternal (446.7 - 446.7) <65F53A22-6B61-382C-AAC2-B2C53F8FFB44> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff46e8e000 - 0x7fff46ebcffd com.apple.CSStore (1069.24 - 1069.24) <C2D67667-FA0B-3DB6-AA34-6999EE4346A0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x7fff47041000 - 0x7fff470e4fff com.apple.CoreSuggestions (1.0 - 1052.34) <6F34A41F-04D1-35A5-8EBC-D5EBC2BCB3D6> /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/CoreSuggestions
0x7fff473e1000 - 0x7fff47477ff7 com.apple.CoreSymbolication (11.4 - 64535.33.2) <0B3BF87A-7F95-3D79-B4F8-421D6FAC4A6C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff4750f000 - 0x7fff4763bff6 com.apple.coreui (2.1 - 609.4) <788818B7-7EBC-316D-9464-D12E365E3791> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff4763c000 - 0x7fff477f5ffa com.apple.CoreUtils (6.2.4 - 624.7) <A74A1C65-6695-3F57-B703-0DEDE13E66C1> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff4792f000 - 0x7fff47942ff1 com.apple.CrashReporterSupport (10.13 - 15016.1) <D584FFA6-32C5-328B-BE77-2C256B2B116C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff479fb000 - 0x7fff47a0dff8 com.apple.framework.DFRFoundation (1.0 - 252.50.1) <8162057E-E856-3451-9160-04AEDDECFFA4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff47a0e000 - 0x7fff47a13fff com.apple.DSExternalDisplay (3.1 - 380) <31ECB5FD-7660-33DB-BC5B-2B2A2AA7C686> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff47a9d000 - 0x7fff47b17ff0 com.apple.datadetectorscore (8.0 - 659) <B1534796-1000-3520-A641-A97A4AC5D39B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff47b19000 - 0x7fff47b62ffe com.apple.DataDetectorsNaturalLanguage (1.0 - 154) <ED7F55BC-D479-39A8-9993-E505651FF1EC> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/Versions/A/DataDetectorsNaturalLanguage
0x7fff47b63000 - 0x7fff47ba0ff8 com.apple.DebugSymbols (194 - 194) <040AE30B-CF2C-3798-A289-0929B8CAB10D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff47ba1000 - 0x7fff47d29ff6 com.apple.desktopservices (1.14.6 - 1281.6.1) <C2355E6B-C5F7-3E39-B778-B117BD4652C6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff47fd8000 - 0x7fff480a0ffe com.apple.DiskImagesFramework (559.100.2 - 559.100.2) <65F24DF5-1B62-3F6B-9188-ED39634D2AE7> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff480a1000 - 0x7fff48174ff1 com.apple.DiskManagement (13.0 - 1648.140.2) <640DBACE-B6EC-3C72-9F73-F484E891534E> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff48175000 - 0x7fff48179ff1 com.apple.DisplayServicesFW (3.1 - 380) <4D71ADB3-B29D-3D20-B6DE-9E94061F86AC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff481d3000 - 0x7fff481f7ff7 com.apple.DuetActivityScheduler (1.0 - 1) <188C6793-A94C-3B49-A9F4-AF8A348C7E62> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler
0x7fff48221000 - 0x7fff48256ff7 com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <D3F76E01-2F9F-33E1-B5C9-CAC6E01724C2> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
0x7fff48257000 - 0x7fff4825bff9 com.apple.EFILogin (2.0 - 2) <3BFE697B-469F-38F4-B380-4A4F4A37C836> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff48d8f000 - 0x7fff48da4ff2 com.apple.Engram (1.0 - 1) <83200CE7-9D5C-32B8-90B9-D762AC748D8B> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
0x7fff48da5000 - 0x7fff4940fff9 com.apple.vision.EspressoFramework (1.0 - 188.4) <70B1521B-1B24-3DA4-A41B-E727CF140F1F> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff49458000 - 0x7fff494b5ff2 com.apple.ExchangeWebServices (8.0 - 807) <7CA35906-0702-37D4-BE2B-C75EA6B1490C> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/ExchangeWebServices
0x7fff496ea000 - 0x7fff49b05ff1 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <5D32F65D-2CD7-3204-975C-F4C9256E505F> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff4a1a4000 - 0x7fff4a2daffc libFontParser.dylib (277.2.6.6) <FABE97A5-398F-3015-B132-7DACC33344A2> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x7fff4a2db000 - 0x7fff4a30ffff libTrueTypeScaler.dylib (277.2.6.6) <653F9E57-5337-35CD-B1BE-165052FC9CF1> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x7fff4a373000 - 0x7fff4a383ff6 libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <202E45A7-B23F-3873-87CA-5D39D30D757F> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x7fff4a3ff000 - 0x7fff4a415ffb com.apple.Futhark (1.0 - 1) <FA2EC92C-5509-392F-8E30-FA5BE0D87615> /System/Library/PrivateFrameworks/Futhark.framework/Versions/A/Futhark
0x7fff4d864000 - 0x7fff4d865fff libmetal_timestamp.dylib (902.14.11) <C29C7125-A894-3718-8E1D-249C53BCC0B8> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff4ef1f000 - 0x7fff4ef25fff com.apple.GPUWrangler (5.2.7 - 5.2.7) <FA34760B-4E5C-3A18-A6C3-DBA68F9D1220> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff4f244000 - 0x7fff4f26aff1 com.apple.GenerationalStorage (2.0 - 314) <54483E50-20BB-3AF8-900F-992320C109B0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff4f283000 - 0x7fff5026cff1 com.apple.GeoServices (1.0 - 1624.26.4.26.9) <F735575F-7DEF-3202-9151-589BEB162596> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff50398000 - 0x7fff503a6ffb com.apple.GraphVisualizer (1.0 - 100.1) <507D5812-9CB4-3C94-938C-59ED2B370818> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff5040f000 - 0x7fff5041cff9 com.apple.HID (1.0 - 1) <0C27FC33-B645-3B7B-AAB5-E6F8F3A0A34D> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID
0x7fff50545000 - 0x7fff50603ff4 com.apple.Heimdal (4.0 - 2.0) <6F292E47-3C40-33ED-9AD7-18FC9939E2CF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff51da6000 - 0x7fff51ea4ffd com.apple.ids (10.0 - 1000) <3C63AA92-553A-397B-B84A-BE3F443C3CEF> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff51ea5000 - 0x7fff51fe1ff5 com.apple.idsfoundation (10.0 - 1000) <B89E8F6E-DDA6-3766-997C-14663C658A8C> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff525ff000 - 0x7fff5265fff2 com.apple.imfoundation (10.0 - 1000) <BAEB40B7-908F-3D97-9BE9-5EAB83930543> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff52785000 - 0x7fff5278effe com.apple.IOAccelMemoryInfo (1.0 - 1) <ECAB1FBF-4756-3437-8C72-0F89294510CA> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff5278f000 - 0x7fff52797ff5 com.apple.IOAccelerator (438.7.4 - 438.7.4) <3C973800-3AE0-3908-9922-EFBC57C3F5B2> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff527a4000 - 0x7fff527bbfff com.apple.IOPresentment (47.10 - 37) <C97340B5-C71D-32CC-A519-30A5D7184BD3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff52b43000 - 0x7fff52b8eff1 com.apple.IconServices (438.3 - 438.3) <0DADB4C3-46FF-3FDB-8A86-51E2067FC7F4> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff52d2b000 - 0x7fff52d39fff com.apple.IntentsFoundation (1.0 - 1) <1BC7D355-E136-391A-8215-6982742645DD> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation
0x7fff52d4c000 - 0x7fff52d53ff9 com.apple.InternationalSupport (1.0 - 45.4) <8D8D4A7D-FD35-36B8-A456-7C93030EDAB3> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff52d54000 - 0x7fff52d56ff3 com.apple.InternationalTextSearch (1.0 - 1) <0BB2FA58-04BD-31FB-9F8B-D57ADF9E4BB2> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/Versions/A/InternationalTextSearch
0x7fff52fd3000 - 0x7fff52fdfff7 com.apple.KerberosHelper (4.0 - 1.0) <7556CA39-95FC-32A4-9A0C-E42C5497A43B> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
0x7fff52fe0000 - 0x7fff52fffffd com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <23F39683-FE1E-3295-BE65-2FB6694B7CBF> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff53134000 - 0x7fff53202ffd com.apple.LanguageModeling (1.0 - 215.1) <C456087D-5B3A-390E-A665-862FA284C59C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff53203000 - 0x7fff5324bfff com.apple.Lexicon-framework (1.0 - 72) <41F208B9-8255-3EC7-9673-FE0925D071D3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff53252000 - 0x7fff53257ff3 com.apple.LinguisticData (1.0 - 353.18) <3B92F249-4602-325F-984B-D2DE61EEE4E1> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff5327e000 - 0x7fff532a2ffe com.apple.locationsupport (2394.0.22 - 2394.0.22) <CA6C86FD-051A-31BB-B3AF-3D02D6FD94B6> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
0x7fff532fb000 - 0x7fff53300ff7 com.apple.LoginUICore (4.0 - 4.0) <25CA17AF-8A74-3CE3-84D8-67B4A2B76FEA> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff53af0000 - 0x7fff53af3fff com.apple.Mangrove (1.0 - 25) <482F300F-9B70-351F-A4DF-B440EEF7368D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff53cb0000 - 0x7fff53cb0ff5 com.apple.marco (10.0 - 1000) <CBC576AC-3AB9-349E-A0DF-4CDC4AB30A37> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff53cb1000 - 0x7fff53cd7ffc com.apple.MarkupUI (1.0 - 325.9) <A596E8D7-6DBD-3F01-89AD-B296C9D3B61E> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff53d5c000 - 0x7fff53de6ff8 com.apple.MediaExperience (1.0 - 1) <0203AF27-AB5E-32FA-B529-AB7F29EEB887> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
0x7fff53de7000 - 0x7fff53e1afff com.apple.MediaKit (16 - 923) <09FEE738-41E4-3A9C-AF1E-1DD00C56339D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff53edf000 - 0x7fff54275ff9 com.apple.MediaRemote (1.0 - 1) <A0FF8D18-8BD3-3497-A53E-53CA3A072D5B> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
0x7fff54276000 - 0x7fff542b2ffc com.apple.MediaServices (1.0 - 1) <EA82F76E-BF9B-37C3-9C8F-BEBC7D87D0CE> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
0x7fff545c0000 - 0x7fff5460cfff com.apple.spotlight.metadata.utilities (1.0 - 2076.7) <0237323B-EC78-3FBF-9FC7-5A1FE2B5CE25> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff5460d000 - 0x7fff546deffa com.apple.gpusw.MetalTools (1.0 - 1) <99876E08-37D7-3828-8796-56D90C9AFBDB> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff5473c000 - 0x7fff54755ff4 com.apple.MobileAssets (1.0 - 619.120.1) <07E116E6-7EBC-39F2-B5B4-31BAB6BAF852> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff54912000 - 0x7fff54930fff com.apple.MobileKeyBag (2.0 - 1.0) <D5FA7041-297F-3ADC-8C7A-6EAAAB82EB68> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff549fc000 - 0x7fff54b92ffd com.apple.Montreal (1.0 - 121.1) <E7881020-FCA6-3DFC-B0EB-9E539F80E821> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff54b93000 - 0x7fff54bc3ff7 com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <6794E1C8-9627-33DF-84F4-FDD02C97F383> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff54e43000 - 0x7fff54f2dffe com.apple.NLP (1.0 - 202) <D657EC20-2475-3D89-9F80-03F1F04B0B89> /System/Library/PrivateFrameworks/NLP.framework/Versions/A/NLP
0x7fff550c3000 - 0x7fff550cdfff com.apple.NetAuth (6.2 - 6.2) <B0C03C41-87A3-352B-B130-96E1A6F94B47> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff5518f000 - 0x7fff551abff0 com.apple.network.statistics.framework (1.2 - 1) <B2F29251-A67A-36A9-B1E8-8652C59BADA1> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff5583a000 - 0x7fff5583cffe com.apple.OAuth (25 - 25) <7C2D9BA1-E683-3257-8ADB-A4846C8D42F2> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff55ae4000 - 0x7fff55b2fffb com.apple.OTSVG (1.0 - 643.1.5.5) <01218F85-C43B-37A0-B124-90D0FA342210> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff56d4c000 - 0x7fff56d57ff2 com.apple.PerformanceAnalysis (1.243.3 - 243.3) <7B2C4193-68D7-3B95-ACA3-0FDD33A74D45> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff56d58000 - 0x7fff56d80ffb com.apple.persistentconnection (1.0 - 1.0) <5B2D87A8-2641-3F6D-ACEA-96B00F85AAB5> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
0x7fff56d81000 - 0x7fff56d8fffe com.apple.PersonaKit (1.0 - 1) <38A5F809-8A7E-355C-AED6-2923F7FF34D4> /System/Library/PrivateFrameworks/PersonaKit.framework/Versions/A/PersonaKit
0x7fff56f39000 - 0x7fff56f39ffa com.apple.PhoneNumbers (1.0 - 1) <8FC8870C-4F82-36F2-8456-A4A990E3F2A4> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff587fb000 - 0x7fff5882bff7 com.apple.pluginkit.framework (1.0 - 1) <EFBD7FE7-02CC-3E30-999D-B036F252F805> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff58856000 - 0x7fff58869ffc com.apple.PowerLog (1.0 - 1) <50B94781-D5BA-3F71-AFD4-583BD61F19F8> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
0x7fff594ef000 - 0x7fff5950fff1 com.apple.proactive.support.ProactiveEventTracker (1.0 - 258.5) <5F4988E6-45D7-31BE-9665-BBC3CBE790D3> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/Versions/A/ProactiveEventTracker
0x7fff59596000 - 0x7fff595ffff2 com.apple.proactive.support.ProactiveSupport (1.0 - 258.5) <82C04814-76A3-394E-AA5F-921E25402B6B> /System/Library/PrivateFrameworks/ProactiveSupport.framework/Versions/A/ProactiveSupport
0x7fff596e5000 - 0x7fff5973fff6 com.apple.ProtectedCloudStorage (1.0 - 1) <6F271388-3817-336D-9B96-08C7AAC4BA39> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff59740000 - 0x7fff59759ffb com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <5A020941-C43C-303E-8DE8-230FC6A84DBC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff59793000 - 0x7fff59810fff com.apple.Quagga (1.0 - 1) <BA80A025-9F81-3933-9224-833F371A4DDB> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
0x7fff5986b000 - 0x7fff5986eff4 com.apple.QuickLookNonBaseSystem (1.0 - 1) <8563CD18-DCFE-3868-912F-053FC8C34B9C> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff5986f000 - 0x7fff59892ff0 com.apple.quicklook.QuickLookSupport (1.0 - 1) <AFB0DFCC-6580-30E5-8984-831985F37A2C> /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport
0x7fff598d9000 - 0x7fff59952ff3 com.apple.Rapport (1.9.5 - 195.2) <AF01D899-3BF9-3586-860A-D95A837101DF> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport
0x7fff59bb9000 - 0x7fff59be2ff1 com.apple.RemoteViewServices (2.0 - 148) <D3AAC2BE-3423-3F18-9654-E35F1DD8DDB3> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff59c66000 - 0x7fff59cb0ffa com.apple.ResponseKit (1.0 - 148.2) <32703B82-A948-3876-B46D-D86B60EF5076> /System/Library/PrivateFrameworks/ResponseKit.framework/Versions/A/ResponseKit
0x7fff59d47000 - 0x7fff59d82ff0 com.apple.RunningBoardServices (1.0 - 223.140.2) <96BB04BD-D6E0-3D70-8F36-89B46DA1DA30> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
0x7fff5b663000 - 0x7fff5b666ff5 com.apple.SecCodeWrapper (4.0 - 448.100.6) <C4BF691D-A09E-37E8-A6CC-1145B79B8722> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff5b7d9000 - 0x7fff5b900fff com.apple.Sharing (1526.37 - 1526.37) <CBDA0ADD-F1E7-3B06-9118-C5E183F0D3D6> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff5b978000 - 0x7fff5b998ff5 com.apple.sidecar-core (1.0 - 209.40.4) <469E5222-A5C7-3B09-B617-EDB6E9E46B93> /System/Library/PrivateFrameworks/SidecarCore.framework/Versions/A/SidecarCore
0x7fff5b999000 - 0x7fff5b9abff0 com.apple.sidecar-ui (1.0 - 209.40.4) <5CA517E3-4B92-30B1-96EF-77A7A2FBBEE4> /System/Library/PrivateFrameworks/SidecarUI.framework/Versions/A/SidecarUI
0x7fff5cd15000 - 0x7fff5d00bfff com.apple.SkyLight (1.600.0 - 451.5) <8847E3D3-C246-3D2E-9D04-48BBD71FCEDC> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff5d858000 - 0x7fff5d866ffb com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <4D6CAC2A-151B-3BBE-BDB7-E2BE72128691> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff5d928000 - 0x7fff5dbb4ffe com.apple.spotlight.index (10.7.0 - 2076.7) <932C7705-353B-395F-9A23-09D62EAFAD81> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
0x7fff5df42000 - 0x7fff5df83ff9 com.apple.StreamingZip (1.0 - 1) <72CA32F8-4C96-3264-A655-623329EB3A28> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff5e09a000 - 0x7fff5e0a3ff7 com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.2) <C3D66901-7E31-3FDB-BD7A-441EB0520D1D> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
0x7fff5e114000 - 0x7fff5e13effe com.apple.framework.SystemAdministration (1.0 - 1.0) <087553CB-5BF3-3D3D-B620-CA36AD334D92> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff5e35a000 - 0x7fff5e36aff3 com.apple.TCC (1.0 - 1) <C9EB52E3-099B-3597-9623-067C403FA525> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff5e711000 - 0x7fff5e86cff5 com.apple.TextRecognition (1.0 - 157) <24CFAE81-8D0D-39A8-A2F8-3BCFAA93DC1F> /System/Library/PrivateFrameworks/TextRecognition.framework/Versions/A/TextRecognition
0x7fff5e88f000 - 0x7fff5e955ff0 com.apple.TextureIO (3.10.9 - 3.10.9) <EEDAB753-329A-396A-8119-5BEDF7DB5A56> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff5eaec000 - 0x7fff5eaedfff com.apple.TrustEvaluationAgent (2.0 - 33) <10E56F70-E234-31E0-9286-96D93A8ED17E> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff5eb25000 - 0x7fff5ed7dff0 com.apple.UIFoundation (1.0 - 662) <EC55B9E5-7E62-380A-9AB1-FC7BEF663653> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff5ee14000 - 0x7fff5ee1affe com.apple.URLFormatting (119 - 119.18) <7F99D166-86DC-3F77-A34A-2DA7183D7160> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
0x7fff5fa0c000 - 0x7fff5fa2cffc com.apple.UserManagement (1.0 - 1) <9F00880E-6EA6-3684-B208-455E14EC07C8> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
0x7fff607d8000 - 0x7fff608c3ff2 com.apple.ViewBridge (468 - 468) <C02D0559-9C21-39C8-9E4B-E866CDBFD746> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff60a69000 - 0x7fff60a6afff com.apple.WatchdogClient.framework (1.0 - 67.120.2) <FFA17DA1-F6DD-34D3-A708-1F73C8BA7EA7> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
0x7fff60df9000 - 0x7fff60e34fff libAWDSupport.dylib (949) <EBE20139-E443-30DF-BCAD-2A6A8470F631> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib
0x7fff60e35000 - 0x7fff61115ff7 libAWDSupportFramework.dylib (3541.2) <D1EA2A4B-BC59-3FE2-BAA9-4448D6F8393F> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
0x7fff61116000 - 0x7fff61127fff libprotobuf-lite.dylib (3541.2) <578CA7D8-149E-3643-937B-DAD5501E4575> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
0x7fff61128000 - 0x7fff61181ffb libprotobuf.dylib (3541.2) <0CDB164D-E7C3-3D4F-BF11-47402D67D7B0> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
0x7fff61182000 - 0x7fff611c6ff6 com.apple.awd (1.0 - 949) <9DA8A821-4354-3E24-BAA1-4519D2279F2B> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
0x7fff6169a000 - 0x7fff6169dffa com.apple.dt.XCTTargetBootstrap (1.0 - 16091) <D459D628-58C5-39A6-B7E8-B691CBEECEC1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff61717000 - 0x7fff61725ff5 com.apple.audio.caulk (1.0 - 32.3) <06D695EA-E2BC-31E4-9816-9C12542BA744> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x7fff618ed000 - 0x7fff61922ffe com.apple.iCalendar (7.0 - 810.6.1) <21E0DCF2-0B67-3E0C-8D4E-3A81CAB1964E> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
0x7fff61a67000 - 0x7fff61a69ff3 com.apple.loginsupport (1.0 - 1) <12F77885-27DC-3837-9CE9-A25EBA75F833> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff61a6a000 - 0x7fff61a7dffd com.apple.login (3.0 - 3.0) <C68367BA-2225-31DD-B2D8-16AC0A44421F> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff61aaf000 - 0x7fff61abbffd com.apple.perfdata (1.0 - 51.100.6) <21760CFD-62FF-3466-B3AD-191D02411DA0> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
0x7fff61abc000 - 0x7fff61aedffd com.apple.contacts.vCard (1.0 - 3455.18) <2662D17A-7BC0-39FF-8550-8AEDF548AAB8> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff64540000 - 0x7fff6454cff9 libAudioStatistics.dylib (1104.97) <910E0D16-7267-3B47-81F6-1420864A316C> /usr/lib/libAudioStatistics.dylib
0x7fff6454d000 - 0x7fff64580ffa libAudioToolboxUtility.dylib (1104.97) <8B76C584-A8B0-3599-A7D4-8BD75A11FEFF> /usr/lib/libAudioToolboxUtility.dylib
0x7fff64587000 - 0x7fff645bbfff libCRFSuite.dylib (48) <5E5DE3CB-30DD-34DC-AEF8-FE8536A85E96> /usr/lib/libCRFSuite.dylib
0x7fff645be000 - 0x7fff645c8fff libChineseTokenizer.dylib (34) <7F0DA183-1796-315A-B44A-2C234C7C50BE> /usr/lib/libChineseTokenizer.dylib
0x7fff645c9000 - 0x7fff64651fff libCoreStorage.dylib (551) <A457B0FE-D77F-30AA-99A4-70F6A98DFE59> /usr/lib/libCoreStorage.dylib
0x7fff64654000 - 0x7fff64656ff7 libDiagnosticMessagesClient.dylib (112) <C94F3B7B-1854-38EB-9778-834501C53B3F> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff6469c000 - 0x7fff64853ffb libFosl_dynamic.dylib (100.4) <737573B2-190A-3BA1-8220-807AD0A2CE5E> /usr/lib/libFosl_dynamic.dylib
0x7fff6487a000 - 0x7fff64880ff3 libIOReport.dylib (54) <75D177C4-BAD7-3285-B8E1-3019F49B3178> /usr/lib/libIOReport.dylib
0x7fff64962000 - 0x7fff64969fff libMatch.1.dylib (36) <5C6F3971-9D9E-3630-BDB6-60BFC5A665E0> /usr/lib/libMatch.1.dylib
0x7fff64998000 - 0x7fff649b8ff7 libMobileGestalt.dylib (826.140.5) <2BE94E6A-FA61-312F-84A1-F764D71B7E39> /usr/lib/libMobileGestalt.dylib
0x7fff64a38000 - 0x7fff64b15ff7 libSMC.dylib (20) <5C9C17F2-1E6F-3A19-A440-86F74D82284F> /usr/lib/libSMC.dylib
0x7fff64b2a000 - 0x7fff64b2bfff libSystem.B.dylib (1281.100.1) <79E1F5B4-8B47-3718-A611-F9D14F3FB537> /usr/lib/libSystem.B.dylib
0x7fff64b2c000 - 0x7fff64bb7ff7 libTelephonyUtilDynamic.dylib (5017.1) <174030B2-E35F-3F17-A9EF-DF8631F30CCF> /usr/lib/libTelephonyUtilDynamic.dylib
0x7fff64bb8000 - 0x7fff64bb9fff libThaiTokenizer.dylib (3) <4F4ADE99-0D09-3223-B7C0-C407AB6DE8DC> /usr/lib/libThaiTokenizer.dylib
0x7fff64bd1000 - 0x7fff64be7fff libapple_nghttp2.dylib (1.39.2) <07FEC48A-87CF-32A3-8194-FA70B361713A> /usr/lib/libapple_nghttp2.dylib
0x7fff64c1c000 - 0x7fff64c8eff7 libarchive.2.dylib (72.140.2) <F9EA2883-5D5C-3FA6-B3F8-C5031BF88ABD> /usr/lib/libarchive.2.dylib
0x7fff64c8f000 - 0x7fff64d28fe5 libate.dylib (3.0.1) <76EA60FB-748C-313F-8951-B076540BEA97> /usr/lib/libate.dylib
0x7fff64d2c000 - 0x7fff64d2cff3 libauto.dylib (187) <B6124448-7690-34AE-8939-ED84AAC630CE> /usr/lib/libauto.dylib
0x7fff64d2d000 - 0x7fff64df1ffe libboringssl.dylib (283.120.1) <935DDB00-6514-3D0C-AEA5-C5FE6BCC0B61> /usr/lib/libboringssl.dylib
0x7fff64df2000 - 0x7fff64e02ffb libbsm.0.dylib (60.100.1) <00BFFB9A-2FFE-3C24-896A-251BC61917FD> /usr/lib/libbsm.0.dylib
0x7fff64e03000 - 0x7fff64e0ffff libbz2.1.0.dylib (44) <14CC4988-B6D4-3879-AFC2-9A0DDC6388DE> /usr/lib/libbz2.1.0.dylib
0x7fff64e10000 - 0x7fff64e62fff libc++.1.dylib (902.1) <59A8239F-C28A-3B59-B8FA-11340DC85EDC> /usr/lib/libc++.1.dylib
0x7fff64e63000 - 0x7fff64e78ffb libc++abi.dylib (902) <E692F14F-C65E-303B-9921-BB7E97D77855> /usr/lib/libc++abi.dylib
0x7fff64e79000 - 0x7fff64e79fff libcharset.1.dylib (59) <72447768-9244-39AB-8E79-2FA14EC0AD33> /usr/lib/libcharset.1.dylib
0x7fff64e7a000 - 0x7fff64e8bfff libcmph.dylib (8) <E72A20DB-2E86-378D-A237-EB9A1370F989> /usr/lib/libcmph.dylib
0x7fff64e8c000 - 0x7fff64ea3fd7 libcompression.dylib (87) <64C91066-586D-38C0-A2F3-3E60A940F859> /usr/lib/libcompression.dylib
0x7fff6517d000 - 0x7fff65193ff7 libcoretls.dylib (167) <770A5B96-936E-34E3-B006-B1CEC299B5A5> /usr/lib/libcoretls.dylib
0x7fff65194000 - 0x7fff65195fff libcoretls_cfhelpers.dylib (167) <940BF370-FD0C-30A8-AA05-FF48DA44FA4C> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff65638000 - 0x7fff6573cfef libcrypto.44.dylib (47.140.1) <CB6B188A-1ADC-3C5D-AFFC-2ACD86E235EE> /usr/lib/libcrypto.44.dylib
0x7fff6573f000 - 0x7fff6574afff libcsfde.dylib (551) <CEE22AEF-4E77-36B1-B007-00303819965F> /usr/lib/libcsfde.dylib
0x7fff65752000 - 0x7fff657b1ff7 libcups.2.dylib (483.7) <821ED293-B7B3-3B37-88C9-7B6CA91DA7FA> /usr/lib/libcups.2.dylib
0x7fff657b3000 - 0x7fff65818ff7 libcurl.4.dylib (118.120.5) <854B4C52-1E58-3A61-A73D-431C5C65D8F9> /usr/lib/libcurl.4.dylib
0x7fff658bb000 - 0x7fff658bbfff libenergytrace.dylib (21) <162DFCC0-8F48-3DD0-914F-FA8653E27B26> /usr/lib/libenergytrace.dylib
0x7fff658bc000 - 0x7fff658d4fff libexpat.1.dylib (19.60.2) <FED7C38B-92D8-342D-AED7-871B12D1F7E7> /usr/lib/libexpat.1.dylib
0x7fff658e2000 - 0x7fff658e4fff libfakelink.dylib (149.1) <36146CB2-E6A5-37BB-9EE8-1B4034D8F3AD> /usr/lib/libfakelink.dylib
0x7fff658f3000 - 0x7fff658f8fff libgermantok.dylib (24) <D2AE5AC0-EDCE-3216-B8C9-CF59292A545F> /usr/lib/libgermantok.dylib
0x7fff658f9000 - 0x7fff65902ff7 libheimdal-asn1.dylib (564.140.2) <F42CB310-DA54-3EF9-BFE3-0667E14E0133> /usr/lib/libheimdal-asn1.dylib
0x7fff65903000 - 0x7fff659f3fff libiconv.2.dylib (59) <18311A67-E4EF-3CC7-95B3-C0EDEE3A282F> /usr/lib/libiconv.2.dylib
0x7fff659f4000 - 0x7fff65c4bfff libicucore.A.dylib (64260.0.1) <8AC2CB07-E7E0-340D-A849-186FA1F27251> /usr/lib/libicucore.A.dylib
0x7fff65c65000 - 0x7fff65c66fff liblangid.dylib (133) <30CFC08C-EF36-3CF5-8AEA-C1CB070306B7> /usr/lib/liblangid.dylib
0x7fff65c67000 - 0x7fff65c7fff3 liblzma.5.dylib (16) <C131EF18-2CDD-3271-8A30-A8760D4FE166> /usr/lib/liblzma.5.dylib
0x7fff65c97000 - 0x7fff65d3eff7 libmecab.dylib (883.11) <0D5BFD01-D4A7-3C8D-AA69-C329C1A69792> /usr/lib/libmecab.dylib
0x7fff65d3f000 - 0x7fff65fa1ff1 libmecabra.dylib (883.11) <E31DE74D-1B88-377F-ACD3-D789D29C3AE7> /usr/lib/libmecabra.dylib
0x7fff6630e000 - 0x7fff6633dfff libncurses.5.4.dylib (57) <995DFEEA-40F3-377F-B73D-D02AC59D591F> /usr/lib/libncurses.5.4.dylib
0x7fff6646d000 - 0x7fff668e9ff5 libnetwork.dylib (1880.120.4) <BA294A54-F309-398D-B308-F97032AFF555> /usr/lib/libnetwork.dylib
0x7fff668ea000 - 0x7fff66901fff libnetworkextension.dylib (1095.140.2) <D0E8454C-33A9-3F96-B3A0-EDB12C32283A> /usr/lib/libnetworkextension.dylib
0x7fff6698a000 - 0x7fff669bdfde libobjc.A.dylib (787.1) <6DF81160-5E7F-3E31-AA1E-C875E3B98AF6> /usr/lib/libobjc.A.dylib
0x7fff669be000 - 0x7fff669bfff7 libodfde.dylib (26) <33F49412-5106-35B8-AA60-5A497C3967E6> /usr/lib/libodfde.dylib
0x7fff669d0000 - 0x7fff669d4fff libpam.2.dylib (25.100.1) <0502F395-8EE6-3D2A-9239-06FD5622E19E> /usr/lib/libpam.2.dylib
0x7fff669d7000 - 0x7fff66a0dfff libpcap.A.dylib (89.120.2) <86DAA475-805A-3E01-86C5-6CAE4D1D9BC6> /usr/lib/libpcap.A.dylib
0x7fff66a4d000 - 0x7fff66a5bff9 libperfcheck.dylib (37.100.2) <9D9C4879-8A80-34C4-B0D2-BE341FD6D321> /usr/lib/libperfcheck.dylib
0x7fff66a5c000 - 0x7fff66a5fff3 libpmenergy.dylib (214.120.1) <B33FB1C8-EACB-39C5-9B71-283EAB72E7E2> /usr/lib/libpmenergy.dylib
0x7fff66a60000 - 0x7fff66a62fff libpmsample.dylib (214.120.1) <F12D8EE0-9284-3E57-AE73-414266E11586> /usr/lib/libpmsample.dylib
0x7fff66a91000 - 0x7fff66aa9fff libresolv.9.dylib (67.40.1) <C57EDFEF-D36A-310B-8D14-8C68A625B1E8> /usr/lib/libresolv.9.dylib
0x7fff66aab000 - 0x7fff66aefff7 libsandbox.1.dylib (1217.141.2) <E8BA5E84-66AF-3995-8F8E-DDC93B0A88E1> /usr/lib/libsandbox.1.dylib
0x7fff66af0000 - 0x7fff66b02ff7 libsasl2.2.dylib (213.120.1) <E7573AC1-83FD-305A-8FB8-03145BDA286B> /usr/lib/libsasl2.2.dylib
0x7fff66b03000 - 0x7fff66b04ff7 libspindump.dylib (281.3) <AE8C1AE9-5CBC-332F-BBE8-370A2A19FED6> /usr/lib/libspindump.dylib
0x7fff66b05000 - 0x7fff66cefff7 libsqlite3.dylib (308.6) <33057143-AB4E-348B-9650-98BC48866F34> /usr/lib/libsqlite3.dylib
0x7fff66de3000 - 0x7fff66e10ffb libssl.46.dylib (47.140.1) <06932872-13DA-33E3-8C28-7B49FC582039> /usr/lib/libssl.46.dylib
0x7fff66e92000 - 0x7fff66ec3ff7 libtidy.A.dylib (17.2) <41B15FFB-6FD2-3E1B-A1F8-E6B12EF3C1EE> /usr/lib/libtidy.A.dylib
0x7fff66ee5000 - 0x7fff66f3fff8 libusrtcp.dylib (1880.120.4) <05346A91-737C-33D0-B21B-F040950DFB28> /usr/lib/libusrtcp.dylib
0x7fff66f40000 - 0x7fff66f43ffb libutil.dylib (57) <F01467F6-23A7-37EE-A170-33CE1577B41D> /usr/lib/libutil.dylib
0x7fff66f44000 - 0x7fff66f51ff7 libxar.1.dylib (425.2) <EE964412-9E25-30B3-BCC0-CCEFBCC8094B> /usr/lib/libxar.1.dylib
0x7fff66f57000 - 0x7fff67039fff libxml2.2.dylib (33.8) <FE38B007-24AF-310D-B834-2C9466154CEC> /usr/lib/libxml2.2.dylib
0x7fff6703d000 - 0x7fff67065fff libxslt.1.dylib (16.11) <B2F38A15-4D4A-30F9-9660-F5738DE14BC2> /usr/lib/libxslt.1.dylib
0x7fff67066000 - 0x7fff67078ff3 libz.1.dylib (76) <793D9643-CD83-3AAC-8B96-88D548FAB620> /usr/lib/libz.1.dylib
0x7fff67927000 - 0x7fff6792cff3 libcache.dylib (83) <AF488D13-9E89-35E0-B078-BE37CC5B8586> /usr/lib/system/libcache.dylib
0x7fff6792d000 - 0x7fff67938fff libcommonCrypto.dylib (60165.120.1) <C7912BE5-993E-3581-B2A0-6AABDC8C5562> /usr/lib/system/libcommonCrypto.dylib
0x7fff67939000 - 0x7fff67940fff libcompiler_rt.dylib (101.2) <49B8F644-5705-3F16-BBE0-6FFF9B17C36E> /usr/lib/system/libcompiler_rt.dylib
0x7fff67941000 - 0x7fff6794aff7 libcopyfile.dylib (166.40.1) <3C481225-21E7-370A-A30E-0CCFDD64A92C> /usr/lib/system/libcopyfile.dylib
0x7fff6794b000 - 0x7fff679ddfdb libcorecrypto.dylib (866.140.2) <C2CFE656-BFA7-36E0-B8BB-1579F51AB6CF> /usr/lib/system/libcorecrypto.dylib
0x7fff67aea000 - 0x7fff67b2aff0 libdispatch.dylib (1173.100.2) <CD9C059C-91D9-30E8-8926-5B9CD0D5D4F5> /usr/lib/system/libdispatch.dylib
0x7fff67b2b000 - 0x7fff67b61fff libdyld.dylib (750.6) <789A18C2-8AC7-3C88-813D-CD674376585D> /usr/lib/system/libdyld.dylib
0x7fff67b62000 - 0x7fff67b62ffb libkeymgr.dylib (30) <DB3337BE-01CA-3425-BD0C-87774FC0CDC0> /usr/lib/system/libkeymgr.dylib
0x7fff67b63000 - 0x7fff67b6fff3 libkxld.dylib (6153.141.28.1) <D0CD88A4-D750-384C-AEF4-463BE5D606B1> /usr/lib/system/libkxld.dylib
0x7fff67b70000 - 0x7fff67b70ff7 liblaunch.dylib (1738.140.3) <0A07A8E8-EDA1-30C7-9414-0FCC070A45D8> /usr/lib/system/liblaunch.dylib
0x7fff67b71000 - 0x7fff67b76ff7 libmacho.dylib (959.0.1) <AA613A9C-961A-3B67-B696-4622FA59FC4E> /usr/lib/system/libmacho.dylib
0x7fff67b77000 - 0x7fff67b79ff3 libquarantine.dylib (110.40.3) <F234E51D-FD0B-3EE4-B679-AE3EE9C536C3> /usr/lib/system/libquarantine.dylib
0x7fff67b7a000 - 0x7fff67b7bff7 libremovefile.dylib (48) <7C7EFC79-BD24-33EF-B073-06AED234593E> /usr/lib/system/libremovefile.dylib
0x7fff67b7c000 - 0x7fff67b93ff3 libsystem_asl.dylib (377.60.2) <1563EE02-0657-3B78-99BE-A947C24122EF> /usr/lib/system/libsystem_asl.dylib
0x7fff67b94000 - 0x7fff67b94ff7 libsystem_blocks.dylib (74) <0D53847E-AF5F-3ACF-B51F-A15DEA4DEC58> /usr/lib/system/libsystem_blocks.dylib
0x7fff67b95000 - 0x7fff67c1cfff libsystem_c.dylib (1353.100.2) <BBDED5E6-A646-3EED-B33A-91E4331EA063> /usr/lib/system/libsystem_c.dylib
0x7fff67c1d000 - 0x7fff67c20ffb libsystem_configuration.dylib (1061.141.1) <0EE84C33-64FD-372B-974A-AF7A136F2068> /usr/lib/system/libsystem_configuration.dylib
0x7fff67c21000 - 0x7fff67c24fff libsystem_coreservices.dylib (114) <A199156E-058D-3ABB-BCE9-4B9F20DCED0F> /usr/lib/system/libsystem_coreservices.dylib
0x7fff67c25000 - 0x7fff67c2dfff libsystem_darwin.dylib (1353.100.2) <5B12B5DB-3F30-37C1-8ECC-49A66B1F2864> /usr/lib/system/libsystem_darwin.dylib
0x7fff67c2e000 - 0x7fff67c35fff libsystem_dnssd.dylib (1096.100.3) <EBB4C2C2-E031-3094-B40A-E67BF261D295> /usr/lib/system/libsystem_dnssd.dylib
0x7fff67c36000 - 0x7fff67c37ffb libsystem_featureflags.dylib (17) <29FD922A-EC2C-3F25-BCCC-B58D716E60EC> /usr/lib/system/libsystem_featureflags.dylib
0x7fff67c38000 - 0x7fff67c85ff7 libsystem_info.dylib (538) <8A321605-5480-330B-AF9E-64E65DE61747> /usr/lib/system/libsystem_info.dylib
0x7fff67c86000 - 0x7fff67cb2ff7 libsystem_kernel.dylib (6153.141.28.1) <B3DC3FBB-4304-338C-A1E0-CAAFA78CDE2B> /usr/lib/system/libsystem_kernel.dylib
0x7fff67cb3000 - 0x7fff67cfafff libsystem_m.dylib (3178) <00F331F1-0D09-39B3-8736-1FE90E64E903> /usr/lib/system/libsystem_m.dylib
0x7fff67cfb000 - 0x7fff67d22fff libsystem_malloc.dylib (283.100.6) <8549294E-4C53-36EB-99F3-584A7393D8D5> /usr/lib/system/libsystem_malloc.dylib
0x7fff67d23000 - 0x7fff67d30ffb libsystem_networkextension.dylib (1095.140.2) <F06C65C5-2CBE-313C-96E1-A09240F9FE57> /usr/lib/system/libsystem_networkextension.dylib
0x7fff67d31000 - 0x7fff67d3aff7 libsystem_notify.dylib (241.100.2) <FA22F928-D91B-3AA5-96BB-3186AC0FB264> /usr/lib/system/libsystem_notify.dylib
0x7fff67d3b000 - 0x7fff67d43fef libsystem_platform.dylib (220.100.1) <009A7C1F-313A-318E-B9F2-30F4C06FEA5C> /usr/lib/system/libsystem_platform.dylib
0x7fff67d44000 - 0x7fff67d4efff libsystem_pthread.dylib (416.100.3) <62CB1A98-0B8F-31E7-A02B-A1139927F61D> /usr/lib/system/libsystem_pthread.dylib
0x7fff67d4f000 - 0x7fff67d53ff3 libsystem_sandbox.dylib (1217.141.2) <051C4018-4345-3034-AC98-6DE42FB8273B> /usr/lib/system/libsystem_sandbox.dylib
0x7fff67d54000 - 0x7fff67d56fff libsystem_secinit.dylib (62.100.2) <F80872AA-E1FD-3D7E-8729-467656EC6561> /usr/lib/system/libsystem_secinit.dylib
0x7fff67d57000 - 0x7fff67d5effb libsystem_symptoms.dylib (1238.120.2) <702D0910-5C34-3D43-9631-8BD215DE4FE1> /usr/lib/system/libsystem_symptoms.dylib
0x7fff67d5f000 - 0x7fff67d75ff2 libsystem_trace.dylib (1147.120.1) <BC141783-66D9-3137-A783-211B38E49ADB> /usr/lib/system/libsystem_trace.dylib
0x7fff67d77000 - 0x7fff67d7cff7 libunwind.dylib (35.4) <42B7B509-BAFE-365B-893A-72414C92F5BF> /usr/lib/system/libunwind.dylib
0x7fff67d7d000 - 0x7fff67db2ffe libxpc.dylib (1738.140.3) <A3F5B6A0-DD96-3AC2-B610-F62E242F477C> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 2
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: 33609034
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=826.6M resident=0K(0%) swapped_out_or_unallocated=826.6M(100%)
Writable regions: Total=1.8G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.8G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 768K 6
Activity Tracing 256K 1
CG backing stores 3272K 6
CG image 8320K 5
CoreAnimation 380K 11
CoreGraphics 8K 1
CoreImage 32K 4
CoreServices 92K 1
CoreUI image data 1236K 10
Dispatch continuations 40.0M 1
Foundation 28K 2
IOKit 23.3M 3
Kernel Alloc Once 8K 1
MALLOC 213.7M 84
MALLOC guard page 48K 9
MALLOC_MEDIUM (reserved) 1.3G 11 reserved VM address space (unallocated)
Mach message 32K 5
Memory Tag 255 4.0G 18
STACK GUARD 56.2M 51
Stack 234.9M 51
VM_ALLOCATE 6896K 33
__DATA 56.3M 448
__DATA_CONST 20K 1
__FONT_DATA 4K 1
__LINKEDIT 391.0M 10
__OBJC_RO 32.3M 1
__OBJC_RW 1908K 2
__TEXT 435.6M 435
__UNICODE 564K 1
mapped file 86.5M 34
shared memory 640K 14
=========== ======= =======
TOTAL 6.8G 1261
TOTAL, minus reserved VM space 5.6G 1261
</pre>
</details>
At first I thought this is the same issue as #25983 but it seems a different issue as far as looking at stacktrace.
Note that replacing `app.exit` with `app.quit` can avoid this crash at [this line](https://github.com/rhysd/tweet-app/blob/ef03e5311c1ee5e29750f730daa934cacb0adc03/main/index.ts#L65).
|
https://github.com/electron/electron/issues/29260
|
https://github.com/electron/electron/pull/29941
|
a8b3c22518ae6f55ce398d9c7604f1fa9eb30dc5
|
372ecf32e6c5ec4a549657f76dc71b3a423b8278
| 2021-05-20T10:55:25Z |
c++
| 2021-06-30T18:12:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,191 |
["shell/browser/api/electron_api_session.cc", "shell/browser/extensions/electron_extension_system.cc"]
|
[Bug]: PDF Viewer is broken on latest v13.x betas and master
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
master
### What operating system are you using?
Other (specify below)
### Operating System Version
All
### What arch are you using?
Other (specify below)
### Last Known Working Electron version
_No response_
### Expected Behavior
PDF Viewer should load arbitrary PDF files.
### Actual Behavior
PDF viewer is no longer working on latest betas of v13 and master.
Broken as of https://github.com/electron/electron/pull/28462 - [Log](https://chromium.googlesource.com/chromium/src/+log/91.0.4448.0..91.0.4472.33?n=10000&pretty=fuller)
Error is
```
[7225:0517/163141.223358:INFO:CONSOLE(6)] "Not allowed to load local resource: chrome://resources/css/text_defaults_md.css", source: chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html (6)
[7225:0517/163141.254576:INFO:CONSOLE(0)] "Not allowed to load local resource: chrome://resources/js/load_time_data.m.js", source: chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html (0)
[7225:0517/163141.254661:INFO:CONSOLE(0)] "Not allowed to load local resource: chrome://resources/js/cr.m.js", source: chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html (0)
[7225:0517/163141.254724:INFO:CONSOLE(0)] "Not allowed to load local resource: chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js", source: chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html (0)
[7225:0517/163141.254875:INFO:CONSOLE(0)] "Not allowed to load local resource: chrome://resources/js/assert.m.js", source: chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html (0)
```
which originates [here](https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/platform/weborigin/security_origin.cc;l=411-414;drc=e713e4b5b963cbaaf643c070273860317b58051b) so it's likely an AllowList related issue.
### Testcase Gist URL
https://gist.github.com/80a9108e271ca83c82cc4a8772e371fc
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29191
|
https://github.com/electron/electron/pull/29210
|
cd3c6f9e37053f536bc92a141a1b87a8c6b8995f
|
d79ebc6dc6cb1a39435c3f07ef52bd8c501c629c
| 2021-05-17T14:35:58Z |
c++
| 2021-05-19T23:08:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,177 |
["shell/app/electron_main.cc", "spec-main/fixtures/crash-cases/quit-on-crashed-event/index.js"]
|
[Bug]: Stack overflow crash in windows 32-bit builds
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.4.5
### What operating system are you using?
Windows
### Operating System Version
Windows 10 version 1903
### What arch are you using?
ia32
### Last Known Working Electron version
9.4.4
### Expected Behavior
I would expect a `RangeError: Maximum call stack size exceeded` exception to be printed to the console. In other words, a Javascript stack overflow should not crash the renderer process.
### Actual Behavior
The renderer process crashes. Here's a piece of the symbolized dump:
```
Operating system: Windows NT
10.0.18362 329
CPU: x86
AuthenticAMD family 16 model 2 stepping 3
8 CPUs
GPU: UNKNOWN
Crash reason: EXCEPTION_STACK_OVERFLOW
Crash address: 0x1c188f0
Process uptime: 5 seconds
Thread 0 (crashed)
0 electron.exe!Builtins_InterpreterEntryTrampoline + 0x90
eip = 0x01c188f0 esp = 0x0b373000 ebp = 0x0b373014 ebx = 0x0b901698
esi = 0x5634f5bd edi = 0x4e8a8591 eax = 0x50182329 ecx = 0x00000000
edx = 0x50182329 efl = 0x00010246
Found by: given as instruction pointer in context
1 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b37301c ebp = 0x0b373038
Found by: previous frame's frame pointer
2 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b373040 ebp = 0x0b37305c
Found by: previous frame's frame pointer
3 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b373064 ebp = 0x0b373080
Found by: previous frame's frame pointer
4 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b373088 ebp = 0x0b3730a4
Found by: previous frame's frame pointer
5 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b3730ac ebp = 0x0b3730c8
Found by: previous frame's frame pointer
6 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b3730d0 ebp = 0x0b3730ec
Found by: previous frame's frame pointer
7 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b3730f4 ebp = 0x0b373110
Found by: previous frame's frame pointer
8 electron.exe!Builtins_InterpreterEntryTrampoline + 0xc2
eip = 0x01c18922 esp = 0x0b373118 ebp = 0x0b373134
Found by: previous frame's frame pointer
(This goes on for 14k+ frames)
```
### Testcase Gist URL
https://gist.github.com/tarruda/654839161e411c1989ddf479bcbb5332
### Additional Information
Here's the code snippet which triggers the crash:
```js
try {
function run() {
run();
};
run();
} catch (e) {
console.error(e);
}
```
Another simple way to reproduce the crash is by running electron with `--remote-debugging-port` and pasting the snippet on devtools console.
The crash is reproducible on the following versions:
- 14.0.0-nightly.20210503
- 13.0.0-beta.20
- 12.0.6
- 11.4.5
- 10.4.5
It doesn't seem to be reproducible in windows 32-bit versions of node.js 14.16 or chrome 90.
In the gist I've added a script which will automatically download the proper electron version + symbols and run the app. Here's how it can be quickly reproduced with cmd.exe:
```
git clone https://gist.github.com/tarruda/654839161e411c1989ddf479bcbb5332 electron-win32bit-crash
cd electron-win32bit-crash
npm install
npm start
```
The bootstrap-run.js file can be edited to try different versions.
|
https://github.com/electron/electron/issues/29177
|
https://github.com/electron/electron/pull/29474
|
b24cfe17bc14961c982e0e6eb594b33733e0cd2e
|
e3fe80e0e8437bf9a770d33e57a050d685450c95
| 2021-05-14T19:49:12Z |
c++
| 2021-07-22T19:49:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,159 |
["shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_browser_window.h", "shell/browser/api/electron_api_browser_window_mac.mm", "shell/browser/api/electron_api_browser_window_views.cc", "shell/browser/ui/views/inspectable_web_contents_view_views.cc"]
|
[Bug]: Some of developer tools region also drag the electron 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.5
### What operating system are you using?
Ubuntu
### Operating System Version
Ubuntu 21.04 x86_64 5.11.0-16-generic
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
All clicking inside the developer tool works well and not being interrupted by dragging the electron app.
### Actual Behavior
When I click the `option` and `close` tool inside the developer tool, it drags the electron app.
https://user-images.githubusercontent.com/61906684/118137437-666fd600-b42f-11eb-9443-ea1ebad1d0ec.mp4
### Testcase Gist URL
_No response_
### Additional Information
This bug only occurs if the dock position is on the left.
|
https://github.com/electron/electron/issues/29159
|
https://github.com/electron/electron/pull/29696
|
6fd9e4280c7036ba74527380431c80fb573a10b6
|
d59e2d7b2ec1fdef8cd3eeb212da3624d17e8c7a
| 2021-05-13T14:09:58Z |
c++
| 2021-06-16T16:58:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,119 |
["DEPS", "patches/squirrel.mac/build_add_gn_config.patch", "patches/squirrel.mac/fix_ensure_that_self_is_retained_until_the_racsignal_is_complete.patch"]
|
[Bug]: Auto updater consumes 100% percent CPU when waiting on user password
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.6
### What operating system are you using?
macOS
### Operating System Version
Big Slur 11.3.1
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
I have several apps that use electron (Slack, Draw.io, Visual Studio Code, Atom), every time there is an update, a dialog pops asking for admin/sudo password to install. The update dialog should *not* consume 100% CPU.
### Actual Behavior
The app process runs at 100 percent CPU while waiting for user input confirmation. This happens quite frequently as I use many electron app that have frequent updates, and the high CPU happens for extended periods of time as I am not always present at my computer when the auto update pop up happens.
### Testcase Gist URL
_No response_
### Additional Information
This appears to be a problem with an underlying dependency on [Squirrel.Mac](https://github.com/Squirrel/Squirrel.Mac) that Electron uses however it would appear that library is no longer maintained - See https://github.com/Squirrel/Squirrel.Mac/issues/256#issue-750706358.
There is also a related issue in Squirrel, and comment by jspahrsummers (original author I believe), that he has not worked on with the code base in 6+ years and no longer familiar with it - See https://github.com/Squirrel/Squirrel.Mac/issues/247#issuecomment-757210176
An example of an update popup dialog below:

Below a screenshot of `htop` showing Atom running at 100%.

Below is the output from `sample 9096` showing a profile of Atom
[Atom_2021-05-12_174109_EbSY.sample.txt](https://github.com/electron/electron/files/6464575/Atom_2021-05-12_174109_EbSY.sample.txt)
Other related issues:
- https://github.com/microsoft/vscode/issues/95534
|
https://github.com/electron/electron/issues/29119
|
https://github.com/electron/electron/pull/29791
|
8844034fa8c5ef62243f1a52aee9f1ffd4da5c19
|
e7ae6edbd4ca9c31038c6ee6898aba6860fa15c7
| 2021-05-12T08:29:04Z |
c++
| 2021-06-21T05:02:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,100 |
["patches/chromium/.patches", "patches/chromium/fix_aspect_ratio_with_max_size.patch", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: maximum size isn't respected correctly when aspect ratio is enabled
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
14.0.0-nightly.20210507
### What operating system are you using?
Windows
### Operating System Version
Windows 10
### What arch are you using?
x64
### Last Known Working Electron version
don't know
### Steps to reproduce
1. Launch following application:
```
const { app, BrowserWindow } = require('electron')
function startTest() {
let win = new BrowserWindow({
width: 200,
height: 200,
minWidth: 100,
maxWidth: 300,
minHeight: 100,
maxHeight:300
});
win.webContents.loadURL('https://www.example.com');
win.setAspectRatio(1.0);
}
app.on('ready', startTest)
```
2. Resize window to maximum size.
### Expected Behavior
Maximum size is correctly respected also when aspect ratio is enabled.
### Actual Behavior
It's not possible to resize window to maximum size. Also aspect ratio is not respected (width != height). Additionally there is a DCHECK in Testing build:
```
[24772:0511/131301.276:FATAL:resize_utils.cc(44)] Check failed: Rect(rect->origin(), max_window_size).Contains(*rect). 860,420 256x250 is larger than the maximum size 284x241
```
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/29100
|
https://github.com/electron/electron/pull/29101
|
c4ea33d1bf6faf8ca685e67e63b197d89efa9870
|
557e58666773d9294a1880ae3a561aabad89faae
| 2021-05-11T11:08:39Z |
c++
| 2021-11-22T09:31:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,091 |
["docs/api/extensions.md", "shell/browser/extensions/api/tabs/tabs_api.cc", "shell/browser/extensions/api/tabs/tabs_api.h", "shell/common/extensions/api/tabs.json", "spec-main/extensions-spec.ts", "spec-main/fixtures/extensions/chrome-api/background.js", "spec-main/fixtures/extensions/chrome-api/main.js"]
|
[Bug]: PDF containing hyperlinks don't work when clicking on them
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.4.6
### What operating system are you using?
Windows
### Operating System Version
Windows 10
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
The link should be opened in the current window.
### Actual Behavior
Nothing happens.
### Testcase Gist URL
https://gist.github.com/80a9108e271ca83c82cc4a8772e371fc
### Additional Information
When the PDF is loaded, try to click on the link (https://www.youtube.com/watch?v=KFPtxCDUPqs&feature=youtu.be)
|
https://github.com/electron/electron/issues/29091
|
https://github.com/electron/electron/pull/30069
|
cce27a09619d33488006443e0a4490fad2a66d9a
|
ceebae170ee2ed8f2af00b6dbcdca618ca6b3d39
| 2021-05-10T19:03:22Z |
c++
| 2021-07-27T20:36:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,088 |
["lib/browser/api/menu.ts"]
|
[Bug]: Menu.setApplicationMenu can return a useless array
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.4
### What operating system are you using?
Windows
### Operating System Version
Windows 10 20H2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
As indicated in the docs, the API call should return no value (eg undefined).
This can be ensured by modifying the source code line highlighted below to remove the return keyword.
### Actual Behavior
https://github.com/electron/electron/blob/da8c35e3b256b4f9ad0c16edfbc2b56748b3a740/lib/browser/api/menu.ts#L180
It looks like under linux/windows it will return the result of each BrowserWindow.setMenu call it makes. However it looks like that API does indeed return nothing, so you probably end up with an array of undefines (or an empty array if there's no windows open).
I am writing a wrapper for the APIs and my wrapper picked up on Menu.setApplicationMenu having a return value.
### Testcase Gist URL
_No response_
### Additional Information
The electron team may want to consider having more strict tsconfig/tslint setitngs for their typescript, as this admittedly trivial bug likely arose because the function in question does not define a return value, so TypeScript is inferring it from the return statement. Requiring all functions to define an explicit return type (in this case void) would help catch this types of errors.
There is probably tsconfig/tslint flags to enforce this. Not sure off the top of my head which ones.
TypeScript may also be deciding the return value is "any", in which case blocking inferred any type would resolve this (though would likely require a lot of source code fixes to compile successfully). Not sure what exactly is happening.
|
https://github.com/electron/electron/issues/29088
|
https://github.com/electron/electron/pull/29118
|
432ce94d20fb6f2b265d1b51f5d128bee835d6d1
|
5ceec9189e543639f12e2639f19ad2d33b3b100e
| 2021-05-10T14:05:31Z |
c++
| 2021-05-12T19:02:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,085 |
["shell/browser/native_window_views.cc"]
|
[Bug]: setContentProtection issue after hiding and showing the BrowserWindow
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
^12.0.6
### What operating system are you using?
Windows
### Operating System Version
Windows 10 Version 20H2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Upon setting setContentProtection(true), I expect that this setting should be preserved following a .hide() and .show()/.showInactive() of the `BrowserWindow`.
### Actual Behavior
If setting setContentProtection(true) on the BrowserWindow, which behind the scene uses the `SetWindowDisplayAffinity` WinAPI call (https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowdisplayaffinity), it sets the window affinity as `WDA_EXCLUDEFROMCAPTURE` for Windows 10 builds newer or equal to Windows 10 Version 2004, which means that the window is completely invisible in screenshots or any other screen captures. Please see screenshot below with window not showing, so content 'behind' it being fully visible.

This works fine up until a browserWindow.hide() is called. After that, regardless of doing browserWindow.show() or browserWindow.showInactive() afterwads, screencapture/screenshots then show the window without content, but just a black background, as if the window affinity changed to `WDA_MONITOR`. Please see screenshot below with window showing with black content after hide and show commands:

### Testcase Gist URL
_No response_
### Additional Information
Steps to repro:
I created a small project :
https://github.com/horymury/content-protection
which sets `setContentProtection` as true, then after 5 seconds it hides the BrowserWindow, and after 8 seconds it shows the BrowserWindow again.
If running Windows 10 Version 2004 or newer, if you do a screenshot in the first 5 seconds, you will see that the BrowserWindow correctly does not show up in the image. After 8 seconds ( after the browser window was hidden and then shown again) if you do a screenshot again, you will see that the BrowserWindow appears but with black content, as in the screenshots I uploaded.
|
https://github.com/electron/electron/issues/29085
|
https://github.com/electron/electron/pull/31340
|
371b521dd251cee088706f1b666f944cc136b682
|
95f81f598071134f8914f9201923bd051c682ffd
| 2021-05-10T13:00:48Z |
c++
| 2021-10-11T20:29:43Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 29,061 |
["shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm"]
|
[Bug]: White Corners on Window using Vibrancy
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.0-beta.20
### What operating system are you using?
macOS
### Operating System Version
11.3.1
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
_No response_
### Expected Behavior
Naturally, the window's borders should be rounded, with nothing obscure protruding amongst them--And they should stay that way _after_ maximization, like so:

### Actual Behavior
But, for some weird reason, after (and while) the window is maximized, weird looking white corners appear on every point of the window's border radius...

### Testcase Gist URL
https://gist.github.com/TurnipTotSoftware/74db97bee9b29183006fd1204cfff746
### Additional Information
This glitch also happens after my Mac sleeps for a bit...
Hopefully this problem is an easy fix!
Good day👍
|
https://github.com/electron/electron/issues/29061
|
https://github.com/electron/electron/pull/29084
|
dca3b41ee6633718e0a541aa4c2f5a44c608b242
|
821c81f5ee09099a39157db06c0c5104f469cbbd
| 2021-05-07T22:10:56Z |
c++
| 2021-05-11T07:45:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,955 |
["docs/tutorial/security.md"]
|
[Bug]: Add sandbox recommendations to the security document
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.6
Should the [security document](https://github.com/electron/electron/blob/master/docs/tutorial/security.md) mention turning on sandboxing? It currently doesn't.
|
https://github.com/electron/electron/issues/28955
|
https://github.com/electron/electron/pull/30147
|
c9ba0d02d7de6ef5861d5fe31991a83af79343cd
|
d35fb2a2e37a84f304b69ff7428eefa784ecbace
| 2021-05-01T16:17:10Z |
c++
| 2021-07-19T19:45:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,927 |
["shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: Quit does not work anymore when a window has a modal dialog open
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.5
### What operating system are you using?
macOS
### Operating System Version
11.3
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
_No response_
### Expected Behavior
Quit should work always.
### Actual Behavior
Quit does not work if a window has a modal dialog open. After closing the modal dialog you cannot click quit anymore.
Steps:
* run the fiddle
* quit (e.g. `Cmd+Q`)
* close the modal dialog
* quit again
=> 🐛 it does not work
### Testcase Gist URL
https://gist.github.com/5f332310d6c0ebdea3bee907cc1be2fc
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/28927
|
https://github.com/electron/electron/pull/28967
|
41bb3f13217239d128ac1578c016e2ce0f4743c4
|
3d6343ed515c97841b7c5f2610037ad1fb2cb9f1
| 2021-04-29T08:04:12Z |
c++
| 2021-05-04T10:11:16Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,897 |
["lib/browser/api/browser-window.ts", "shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_web_contents.cc", "shell/browser/api/electron_api_web_contents.h", "shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "spec-main/api-web-contents-spec.ts", "spec-main/chromium-spec.ts", "typings/internal-electron.d.ts"]
|
[Bug]: document.hasFocus() returns true for all windows opened on startup
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.5
### What operating system are you using?
macOS
### Operating System Version
11.2.3
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
_No response_
### Expected Behavior
`document.hasFocus()` is only `true` for the window that has focus.
### Actual Behavior
Ever window reports `document.hasFocus()` to be `true` right after opening.
### Testcase Gist URL
https://gist.github.com/16e6fc829febd0cab115dfd0850a31be
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/28897
|
https://github.com/electron/electron/pull/29204
|
014bdc9f8ade76dcaaf45cadee746ed3aa71a4b2
|
77297f37a3df4e430e2627accdaa1c9235684a08
| 2021-04-28T09:26:51Z |
c++
| 2021-05-19T09:27:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,838 |
["chromium_src/BUILD.gn", "shell/browser/electron_browser_main_parts.cc", "shell/browser/electron_browser_main_parts.h"]
|
[Bug]: nativeTheme.shouldUseDarkColors not working on linux
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
Ubuntu
### Operating System Version
20.04
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
returning true (i use dark mode)
### Actual Behavior
returning false, regardless of color scheme.
### Testcase Gist URL
_No response_
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/28838
|
https://github.com/electron/electron/pull/38977
|
a0ae691a9c1da400904934803818d345c64cd258
|
480f48b2fcf659e031e2440b9af67c38cc061aca
| 2021-04-26T03:22:23Z |
c++
| 2023-09-27T18:17:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,782 |
["docs/api/browser-window.md", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm"]
|
[Bug]: macOS window shadow weirdness
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.0-beta.16
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.2.1
### What arch are you using?
x64
### Last Known Working Electron version
12.0.5
### Expected Behavior
When viewing a window in mission control the shadow shouldn't change.
### Actual Behavior
When viewing a window with vibrancy set to 'under-window' and titleBarStyle set to 'hidden' or 'hiddenInset' in mission control the shadow of the window is too small.
It only seems to happen when the window is in focus and when there are multiple windows on the screen. The behaviour can sometimes persist when going from mission control to normal view.
See the window at the bottom left in the screenshot.
<img width="1195" alt="Screenshot" src="https://user-images.githubusercontent.com/54709288/115758066-a397f980-a396-11eb-9ecc-c97e670b3b82.png">
### Testcase Gist URL
_No response_
|
https://github.com/electron/electron/issues/28782
|
https://github.com/electron/electron/pull/29114
|
2eb3bddb05b6efc92e36c22ed55c37021d84276a
|
4073599f59023360fbaff0a6e90f34dc26246338
| 2021-04-22T17:15:45Z |
c++
| 2021-05-14T09:05:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,774 |
["shell/browser/native_window.cc", "spec-main/api-app-spec.ts"]
|
[Bug]: BrowserWindow.getAllWindows returns closed windows in window-all-closed event
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.5
### What operating system are you using?
Windows
### Operating System Version
Windows 10
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
According to the doc [`BrowserWindow.getAllWindows`](https://www.electronjs.org/docs/api/browser-window#browserwindowgetallwindows): Returns `BrowserWindow[]` - An array of all opened browser windows. I expect that behaviour always.
### Actual Behavior
In the [`window-all-closed`](https://www.electronjs.org/docs/api/app#event-window-all-closed) event handler the `BrowserWindow.getAllWindows` is not empty, it returns the closed window.
Note: when running inside Electron Fiddle, the `console.error` from the `window-all-closed` does not appear in the Fiddle's console when the app quits. It appears in the Fiddle's console when you Run the app again.
### Testcase Gist URL
https://gist.github.com/8b63d0581b49793ce8bdddfe0aecaed3
|
https://github.com/electron/electron/issues/28774
|
https://github.com/electron/electron/pull/28867
|
733f81449dab05869d788f9310ae396ed49f80d9
|
c200840006cad4e49f02ab856a283bce62543681
| 2021-04-22T07:25:46Z |
c++
| 2021-04-28T17:55:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,770 |
["lib/browser/api/menu-item-roles.ts"]
|
[Feature Request]: Provide API for auto toggling devtools when a key is pressed
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Problem Description
I want to toggle devtools when I press F12.
I have code like this:
```
mainWindow.webContents.on("before-input-event", (e, input) => {
if (input.type === "keyDown" && input.key === "F12") {
mainWindow.webContents.toggleDevTools();
}
});
```
When I press F12 and devtools opens up, focus goes to the devtools, and pressing F12 again doesn't do anything.
I tried adding the same `before-input-event` handler to `mainWindow.webContents.devToolsWebContents`, but it is `null` immediately after calling `toggleDevTools`.
I put the code on a `setTimeout(..., 1000)`, which worked (meaning the devtools webcontents is set; perhaps I should be using the devtools opened event), but none of the keys are intercepted in the handler.
This is mentioned [here](https://github.com/electron/electron/issues/1962) as a limitation.
### Proposed Solution
I'm not sure what can be done to solve this on my end. Seems like either Electron needs to allow detecting input, or provide an API like `mainWindow.webContents.toggleDevToolsOnKeyPress("F12")` that handles this for us.
### Alternatives Considered
listed attempted solution above, which didn't work. Full solution:
```
const {app, BrowserWindow } = require('electron')
async function createWindow () {
const mainWindow = new BrowserWindow();
await mainWindow.loadURL("https://google.com");
mainWindow.webContents.on("before-input-event", (e, input) => {
if (input.type === "keyDown" && input.key === "F12") {
mainWindow.webContents.toggleDevTools();
console.log(mainWindow.webContents.devToolsWebContents); // null right after opening, which perhaps makes sense
setTimeout(() => {
mainWindow.webContents.devToolsWebContents.executeJavaScript().on("before-input-event", (e, input) => {
// no events are intercepted
if (input.type === "keyDown" && input.key === "F12") {
mainWindow.webContents.toggleDevTools();
}
});
}, 1000);
}
});
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
```
### Additional Information
n/a
|
https://github.com/electron/electron/issues/28770
|
https://github.com/electron/electron/pull/29922
|
c0e72bd3357c1edaff30087307690d4a113bd01a
|
888ac65c72df227ed4d65d9177748d4082b13b0f
| 2021-04-21T23:58:36Z |
c++
| 2021-08-02T01:58:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,749 |
["shell/browser/api/electron_api_web_contents.cc", "shell/common/node_includes.h", "spec-main/fixtures/crash-cases/webview-contents-error-on-creation/index.js"]
|
Crash when throwing an error in app.on('web-contents-created')
|
Repro gist: https://gist.github.com/2b0373a300af0931c0c29b0e8dff8b73
Stack trace:
```
[39005:0420/121556.035182:FATAL:electron_api_browser_window.cc(71)] Check failed: web_contents_view.get().
0 Electron Framework 0x000000010ba38aa9 base::debug::CollectStackTrace(void**, unsigned long) + 9
1 Electron Framework 0x000000010b955563 base::debug::StackTrace::StackTrace() + 19
2 Electron Framework 0x000000010b96e07f logging::LogMessage::~LogMessage() + 175
3 Electron Framework 0x000000010b96ef4e logging::LogMessage::~LogMessage() + 14
4 Electron Framework 0x0000000106cdffdd electron::api::BrowserWindow::BrowserWindow(gin::Arguments*, gin_helper::Dictionary const&) + 765
5 Electron Framework 0x0000000106ce24c0 electron::api::BrowserWindow::New(gin_helper::ErrorThrower, gin::Arguments*) + 368
6 Electron Framework 0x0000000106ce2b42 base::internal::Invoker<base::internal::BindState<gin_helper::WrappableBase* (*)(gin_helper::ErrorThrower, gin::Arguments*)>, gin_helper::WrappableBase* (gin_helper::ErrorThrower, gin::Arguments*)>::Run(base::internal::BindStateBase*, gin_helper::ErrorThrower&&, gin::Arguments*) + 34
7 Electron Framework 0x0000000106ce2af8 gin_helper::WrappableBase* gin_helper::internal::InvokeFactory<gin_helper::ErrorThrower, gin::Arguments*>(gin::Arguments*, base::RepeatingCallback<gin_helper::WrappableBase* (gin_helper::ErrorThrower, gin::Arguments*)> const&) + 152
8 Electron Framework 0x0000000106ce29b1 void gin_helper::internal::InvokeNew<gin_helper::WrappableBase* (gin_helper::ErrorThrower, gin::Arguments*)>(base::RepeatingCallback<gin_helper::WrappableBase* (gin_helper::ErrorThrower, gin::Arguments*)> const&, v8::Isolate*, gin_helper::Arguments*) + 81
9 Electron Framework 0x0000000106cd0624 gin_helper::Dispatcher<void (v8::Isolate*, gin_helper::Arguments*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 356
10 Electron Framework 0x00000001088fc1a2 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) + 994
11 Electron Framework 0x00000001088f9bd0 v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<true>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments) + 928
12 Electron Framework 0x00000001088f8d1f v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) + 383
13 Electron Framework 0x00000001088f890d v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*) + 109
14 ??? 0x0000004600318bdf 0x0 + 300650957791
```
it's a DCHECK, but I'm pretty sure it will crash later if this is null.
|
https://github.com/electron/electron/issues/28749
|
https://github.com/electron/electron/pull/28971
|
82946133b18150c2d8d091bb8878b41e0dc3a1a3
|
06f51b7283e913217e2f47d47aa7eec818263c46
| 2021-04-20T19:16:36Z |
c++
| 2021-05-11T20:57:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,699 |
["shell/browser/ui/x/window_state_watcher.cc", "shell/browser/ui/x/window_state_watcher.h"]
|
[Bug]: maximize and unmaximize events don't fire for browserwindow
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.4
### What operating system are you using?
Other Linux
### Operating System Version
Fedora
### What arch are you using?
x64
### Last Known Working Electron version
11.4.3
### Expected Behavior
Events should fire for maximizing or unmaximizing a browserwindow.
### Actual Behavior
They don't, since the V12 release. It works fine in Electron 11 and below. See the fiddle console, it should log `max` and `unmax` when you toggle the maximization state, but it doesn't in Electron 12. One weird thing is, that when you maximize the window, and then go to fullscreen, it will emit `max`, but even when leaving fullscreen or unmaximizing the window, you will never see `unmax`. Not that fullscreen should have anything to do with the maximize event, but I noticed it does, so I thought I would mention that. You can see in the screenshot below that it only logs `max` (after going fullscreen), which shouldn't be possible if the events would fire correctly, as it should alternate `max`, `unmax`, `max` etc.

And this is what happens in Electron 11.4.3:

When not entering fullscreen in V12, the logs remains empty, the ONLY way to make it trigger the `max` event is by maximizing and then going fullscreen, but it never triggers `unmax`.
### Testcase Gist URL
https://gist.github.com/Jelmerro/5a5a8b0cfcf69a24993b47bd7526d242
|
https://github.com/electron/electron/issues/28699
|
https://github.com/electron/electron/pull/32441
|
6e6f5efad95e6899694484ea8da1e5dcc67b3992
|
2a8d49a0591a74b3732717ce52724e38f0e73055
| 2021-04-16T21:06:05Z |
c++
| 2022-01-17T07:46:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,686 |
["shell/browser/native_window_mac.mm", "shell/browser/ui/cocoa/electron_ns_window.mm", "spec-main/api-browser-window-spec.ts"]
|
[Bug]: roundedCorners: false and frame: false make Electron unable to quit
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.0-beta14
### What operating system are you using?
macOS
### Operating System Version
macOS 11.2.3
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Start Electron with a `BrowserWindow` in frameless mode (`frame: false`), with `roundedCorners` to `false` and quit the program correctly with `Cmd + Q` or Menu > Electron > Quit.
### Actual Behavior
Start Electron with a `BrowserWindow` in frameless mode (`frame: false`), with `roundedCorners` to `false`. Quitting with `Cmd + Q` or Menu > Electron > Quit just make the app bug with bug sound, and make unable to quit Electron. We're force to kill it with force quit or `kill pid` or `ctrl-c` in CLI.
### Testcase Gist URL
https://gist.github.com/ghivert/5dea26ec97a73fcda55ddb069fccb459
|
https://github.com/electron/electron/issues/28686
|
https://github.com/electron/electron/pull/32597
|
a0b7e30fe7404e939f4cf270ea76693f275ee03e
|
1cf36822e34a8344367849e40bf056ceb3331db5
| 2021-04-16T09:34:51Z |
c++
| 2022-01-25T14:51:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,658 |
["shell/browser/native_window_mac.mm"]
|
[Bug]: Dialog disappear and doesn't appear again after call hide().
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
macOS
### Operating System Version
Big Sur 11.1
### What arch are you using?
x64
### Last Known Working Electron version
8.2.0
### Expected Behavior
Open the dialog -> hide() it (by clicking tray icon for me) the window shouldn't be hided -> show() it again, the dialog should stays the same.
### Actual Behavior
the dialog disappear when call .show().
then click the button to trigger the dialog, it wont show
https://www.loom.com/share/dd840b58c32f4f2b8834ecd965fd9691
Open the dialog -> hide() it (by clicking tray icon for me) -> show() it again, the dialog disappear and can't trigger it
### Testcase Gist URL
https://github.com/tsminh/electron-dialog-missing-after-hide
|
https://github.com/electron/electron/issues/28658
|
https://github.com/electron/electron/pull/28671
|
a354c95d4ccacb1ea5b82b04dd5cefdbd41dd5b3
|
484931bba2e93cc166e0fbae5d99f78e149fe97a
| 2021-04-14T12:36:23Z |
c++
| 2021-04-16T15:42:09Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,572 |
["spec-main/asar-spec.ts", "spec/fixtures/workers/load_shared_worker.html", "spec/fixtures/workers/load_worker.html", "spec/fixtures/workers/workers.asar"]
|
[Bug]: SharedWorker fails to load from asar
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.2.3
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
_No response_
### Expected Behavior
A renderer should be able to `new SharedWorker()` or `new Worker()` with a URL pointing to a script inside the asar.
### Actual Behavior
A regular `Worker` script can be loaded from the asar, but a `SharedWorker` can not. A `SharedWorker` works properly when running via `electron .webpack`, but fails to load when packaged into an app with `.asar`.
Limited error information is available, because the worker doesn't appear in `webContents.getAllSharedWorkers()` so dev tools cannot be opened (possibly related: #25512). The worker's `onerror` event is triggered with an error, but the error contains little information. Here is an example screenshot where I reproduced the issue in the developer console. The Network tab doesn't include any info about the worker script we're trying to load.

On the other hand, I am able to `fetch` the URL directly. So if I run this in the dev console:
```js
const w = new SharedWorker(URL.createObjectURL(await (await fetch("...app.asar/...")).blob()));
w.onerror = (e) => console.log("worker error", e);
```
then the worker does load and I can open its dev tools (although it soon encounters an error when the webpack-bundled worker script tries to use `importScripts` with a relative URL that doesn't work on my `blob:` url.)
### Testcase Gist URL
https://gist.github.com/jtbandes/c339b490fb4914c54d61d6fda9134096
I found a similar issue discussed [on Stack Overflow](https://stackoverflow.com/q/59254016/23649), but it seems these people are trying to use a SharedWorker in node, but I'm trying to use it in the renderer.
|
https://github.com/electron/electron/issues/28572
|
https://github.com/electron/electron/pull/28858
|
72092c2312cc9cd9956f20f22cd0713aed6c958f
|
b97b973306ec044baa5c544a176699850baaae7c
| 2021-04-07T23:17:14Z |
c++
| 2021-04-27T16:07:05Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,570 |
["shell/browser/native_window_views_win.cc"]
|
[Bug]: BrowserWindow `restore` event fires late (non-maximized) or not at all (maximized)
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
### What operating system are you using?
Windows
### Operating System Version
Windows 10; 20H2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
I expect that the restore event fires when restoring a previously maximized window
### Actual Behavior
restore event doesn't fire. It only fires for normal state windows
### Testcase Gist URL
_No response_
1. start app
2. maximize window
3. minimize window
4. restore window
5. see that "restored" isn't logged to the console, but is if you skipped step 2
main.js:
```
const {app, BrowserWindow } = require('electron')
function createWindow () {
const mainWindow = new BrowserWindow();
mainWindow.on("restore", () => {
console.log("restored");
});
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
```
|
https://github.com/electron/electron/issues/28570
|
https://github.com/electron/electron/pull/35342
|
0ff6508f5bffd84829749c97c7346fc2fc776563
|
3ce35f224efa3a6e9bfc9b642816961b8691491b
| 2021-04-07T21:03:37Z |
c++
| 2022-08-23T01:32:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,553 |
["shell/browser/api/electron_api_app.cc"]
|
[Bug]: select-client-certificate does not send full certificate chain
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
### What operating system are you using?
Windows
### Operating System Version
Windows 10 Enterprise Version 1809
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Use `select-client-certificate` event to allow the user to pick which certificate they want to use, rather than defaulting to the first one. Following the example from Electron docs:
```
const { app } = require('electron')
app.on('select-client-certificate', (event, webContents, url, list, callback) => {
event.preventDefault()
callback(list[0])
})
```
This should have the same behavior as not having the code at all, because electron defaults to picking the first certificate in the list. The end result is being able to successfully connect to the remote server using the client certificate.
### Actual Behavior
`callback(list[0])` does not send the full certificate chain.
Using Wireshark I was able to capture the two cases:
1. Not listening for `select-client-certificate`, Electron sends the full certificate chain including intermediate certificate. See "Electron Working Certificate.png". In this case I am able to connect to the server.
2. Adding the code above, listening for `select-client-certificate` and using the callback, Electron only sends the first certificate. See "Electron Broken Certificate.png". In this case I receive net::ERR_BAD_SSL_CLIENT_AUTH_CERT from the server.
Comparing the two wireshark outputs, you can see that the working example sends 2 certificates instead of 1. I believe the necessary fix is to send the issuerCert in addition to the certificate already being sent.
### Testcase Gist URL
_No response_
Working Certificate:

Broken Certificate:

|
https://github.com/electron/electron/issues/28553
|
https://github.com/electron/electron/pull/29552
|
c5b0ba0c01f43dc6160fe3dd7074d12da41aade7
|
070f25db5482964f53c9aefa953ec658797083c3
| 2021-04-06T20:43:47Z |
c++
| 2021-06-07T13:40:43Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,528 |
["shell/browser/api/electron_api_protocol.cc", "shell/browser/api/electron_api_protocol.h", "shell/renderer/renderer_client_base.cc", "spec-main/chromium-spec.ts", "spec/fixtures/pages/service-worker/custom-scheme-index.html"]
|
[Bug]: Resources loaded over custom protocol bypass service worker
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
13.0.0-beta-11
### What operating system are you using?
macOS
### Operating System Version
11.2.3
### What arch are you using?
x64
### Last Known Working Electron version
NA
### Expected Behavior
The service worker should be invoked first, falling back to the custom protocol
In the example, you can see that resources from the custom protocol, such as `test-scheme://authority/inner-img.png`, do not seem to trigger a fetch event in the service worker. Instead I only see the `test-scheme` protocol being invoked. You can see this in the main log as `Trying to load resource using protocol: test-scheme://authority/inner-img.png`
However resources outside of the custom protocol, such `http://example.com/img.png`, do go through the service worker, Here if you open the developer tools, you can see `fetching in worker http://example.com/img.png` is logged
### Actual Behavior
The requests on the custom protocol seem to bypass the service worker and go directly to the custom protocol
### Testcase Gist URL
https://gist.github.com/775d15105c18d704741f1e4a460e4c5e
**Example Explained**
1. Register a custom protocol (`test-scheme`)
2. Load an iframe using the custom protocol: `test-scheme://authority/index.html`
3. Inside the iframe, register a service worker
4. After the service worker is registered, try loading resources inside the iframe. In the example, I use setTimeout to make sure the worker is fully ready before writing two images into the iframe: one image that uses the `test-scheme` protocol and one that comes from a fake external endpoint (`http://example.com/img.png`)
|
https://github.com/electron/electron/issues/28528
|
https://github.com/electron/electron/pull/29425
|
038359a7d84838fec6142fb48d22d884eef56c08
|
d18dbdd72bd0ce5c0942466aaf5ae915738c68cd
| 2021-04-06T00:11:14Z |
c++
| 2021-06-01T01:45:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,511 |
["docs/api/browser-window.md", "docs/api/window-open.md", "docs/breaking-changes.md", "shell/browser/web_contents_preferences.cc", "spec-main/api-browser-window-spec.ts", "spec-main/chromium-spec.ts", "spec-main/fixtures/snapshots/proxy-window-open.snapshot.txt", "spec/static/main.js", "spec/webview-spec.js"]
|
Make nativeWindowOpen: true the default
|
The native window.open system has been better for quite a while now, and it resolves a lot of issues. We should make it the default and deprecate the old `BrowserWindowProxy`-based method.
|
https://github.com/electron/electron/issues/28511
|
https://github.com/electron/electron/pull/28552
|
dba4df9326d338a296f1e927c869e6af782ec2a4
|
f8bdef5349a01033f1314e8a65b8441e8340e4d8
| 2021-04-05T17:21:38Z |
c++
| 2021-04-13T19:36:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,500 |
["shell/browser/serial/serial_chooser_controller.cc", "spec-main/chromium-spec.ts"]
|
[Bug]: select-serial-port callback crashes when called with an invalid serial port ID
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
### What operating system are you using?
macOS
### Operating System Version
macOS Catalina 10.15.7
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Returning an invalid serial port ID in the callback of the `select-serial-port` event handler of `session` should not crash Electron.
### Actual Behavior
Returning an invalid serial port ID in the callback of the `select-serial-port` event handler of `session` crashes Electron with a SIGSEGV. Calling the callback with `"foo"` or any string that is clearly not a valid serial port ID is enough to trigger the bug. Valid serial port IDs and empty strings work as expected.
### Testcase Gist URL
_No response_
|
https://github.com/electron/electron/issues/28500
|
https://github.com/electron/electron/pull/28602
|
6bd13cc98f54f5d6274c05cce027f7684bb420a3
|
2e9ed50bb0d4c5798ca9c40bf538f034be928bcb
| 2021-04-03T13:48:52Z |
c++
| 2021-04-12T13:18:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,493 |
["docs/tutorial/code-signing.md"]
|
Remove GoDaddy from Windows code signing options.
|
GoDaddy does not offer Windows code signing, even though this is shown on the [Electron Signing Windows builds](https://www.electronjs.org/docs/tutorial/code-signing#signing-windows-builds) section and that I spoke to the customer support about this.

|
https://github.com/electron/electron/issues/28493
|
https://github.com/electron/electron/pull/28494
|
19d7a6b76168282b9d62947702eb2ca846ccd3d7
|
1fcd6e27405b07ec845e39c62959670858bb6f2b
| 2021-04-02T15:56:11Z |
c++
| 2021-04-06T00:13:29Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,487 |
["shell/app/electron_main.cc", "spec-main/fixtures/crash-cases/quit-on-crashed-event/index.js"]
|
[Bug]: Error installing extension 'extensions::SafeBuiltins'. v8_initializer.cc(96)
|
### Preflight Checklist
I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.2.1,12.0.0
### What operating system are you using?
Windows
### Operating System Version
Windows 7
### What arch are you using?
ia32
### Last Known Working Electron version
don't know
### Expected Behavior
run correctly
### Actual Behavior
When open window. this bug appread frequently
### Testcase Gist URL
_No response_
```
Exception thrown during bootstrapping
Error installing extension 'extensions::SafeBuiltins'.
[15296:0329/160109.446:FATAL:v8_initializer.cc(96)]
```
|
https://github.com/electron/electron/issues/28487
|
https://github.com/electron/electron/pull/29474
|
b24cfe17bc14961c982e0e6eb594b33733e0cd2e
|
e3fe80e0e8437bf9a770d33e57a050d685450c95
| 2021-04-02T00:50:45Z |
c++
| 2021-07-22T19:49:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,428 |
["docs/tutorial/mac-app-store-submission-guide.md"]
|
[Bug]: Mas build application crashes on launch when codesigned with "com.apple.security.app-sandbox" enabled
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
10.3.2
10.4.1
11.3.0
12.0.1
9.4.4
### What operating system are you using?
macOS
### Operating System Version
macOS Catalina 10.15.7
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Related bug
[27319](https://github.com/electron/electron/issues/27319)
### Expected Behavior
Application to launch without crashing when code-signed with entitlement "com.apple.security.app-sandbox" enabled
### Actual Behavior
Application crashes on launch when code-signed with entitlement "com.apple.security.app-sandbox" enabled.
Tried the following electron releases:
https://github.com/electron/electron/releases/download/v10.3.2/electron-v10.3.2-mas-x64.zip
https://github.com/electron/electron/releases/download/v10.4.1/electron-v10.4.1-mas-x64.zip
https://github.com/electron/electron/releases/download/v11.3.0/electron-v11.3.0-mas-x64.zip
https://github.com/electron/electron/releases/download/v12.0.1/electron-v12.0.1-mas-x64.zip
https://github.com/electron/electron/releases/download/v9.4.4/electron-v9.4.4-mas-x64.zip
### Testcase Gist URL
_No response_
### To Reproduce
When sandbox permissions are turned off, application launches without any issues. The crash only occurs when sandbox permissions are turned on.
**Crash report when launching the app:**
```
Crashed Thread: 26 ThreadPoolSingleThreadForegroundBlocking0
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 [77030]
```
**Error when running code-signed electron binary:**
` FATAL:mach_port_rendezvous.cc(142)] Check failed: kr == KERN_SUCCESS. bootstrap_check_in com.my.app.MachPortRendezvousServer.78398: Permission denied (1100)`
### Additional Information
**parent.plist:**
```
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.application-groups</key>
<array>
<string>XXXXXXXXXX.com.my.app</string>
</array>
<key>com.apple.application-identifier</key>
<string>XXXXXXXXXX.com.my.app</string>
<key>com.apple.developer.team-identifier</key>
<string>XXXXXXXXXX</string>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.automation.apple-events</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>XXXXXXXXXX.com.my.identity.universalstorage</string>
</array>
</dict>
</plist>
```
**loginhelper.plist:**
```
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
</dict>
</plist>
```
**child.plist:**
```
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.inherit</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.automation.apple-events</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
</plist>
```
|
https://github.com/electron/electron/issues/28428
|
https://github.com/electron/electron/pull/28922
|
65ff8d940be978e6a8d355f40db2d15459854951
|
c0bfef16a043c56a2a6e059871d9409611fd6680
| 2021-03-29T03:40:05Z |
c++
| 2021-05-13T02:01:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,407 |
["patches/chromium/.patches", "patches/chromium/fix_crash_loading_non-standard_schemes_in_iframes.patch", "spec/api-protocol-spec.ts", "spec/fixtures/pages/iframe-protocol.html"]
|
[Bug]: Crash when loading iframe with custom protocol from file://
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
"electron-packager": "^15.2.0",
### What operating system are you using?
Windows
### Operating System Version
Windows 10 20H2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
Electron should not crash
### Actual Behavior
Electron crashes when adding iframe
### Testcase Gist URL
_No response_
[app.zip](https://github.com/electron/electron/files/6211709/app.zip)
I've the following component wich crashes electron:
export class SimpleReportViewer extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
this.container = document.createElement('div');
this.shadowRoot.appendChild(this.container);
}
loadIframe() {
if (this.isConnected) {
this._iframe = document.createElement("iframe");
this._iframe.style.width = "100%";
this._iframe.style.height = "100%";
this._iframe.src = '/iframe.html';
this.container.appendChild(this._iframe);
}
}
connectedCallback() {
this.loadIframe();
}
}
customElements.define('simple-report-viewer', SimpleReportViewer);
|
https://github.com/electron/electron/issues/28407
|
https://github.com/electron/electron/pull/35485
|
bfced8cbfe6bad6d119ea9276d13aa67accc9c9a
|
e0fb5cbe1fd84d9651e6030ebab683dd9e4af42d
| 2021-03-26T12:16:37Z |
c++
| 2022-08-31T08:08:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,405 |
["shell/browser/native_browser_view_mac.mm"]
|
[Bug][macOS]: browser window drag for non-zero x,y browser view bounds
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.2
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.2.1
### What arch are you using?
x64
### Last Known Working Electron version
11.3.0
### Expected Behavior
Despite the `x, y` bounds provided for a browser view, the whole browser window should not be draggable by clicking inside its browser view itself
### Actual Behavior
For browser views with both `x, y` bounds coordinates, such that `x > 0` or `y > 0`, if I click inside the browser view the entire browser window starts dragging
### Testcase Gist URL
https://github.com/b3ll00z/electron-quick-start-typescript
### To Reproduce
```
$ git clone https://github.com/b3ll00z/electron-quick-start-typescript
$ cd electron-quick-start-typescript
$ npm install ; npm start
```
https://user-images.githubusercontent.com/16275841/112603502-654dff80-8e15-11eb-8d97-c142adc46afd.mov
|
https://github.com/electron/electron/issues/28405
|
https://github.com/electron/electron/pull/28984
|
71c248176b3ca01025c6c065b01f68c6d22dabc5
|
e379b455c9997e43aa11c9d9191c6a94b3aef983
| 2021-03-26T08:39:30Z |
c++
| 2021-05-05T16:37:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,361 |
["spec-main/api-browser-window-spec.ts"]
|
CI crash on macOS when running "fullscreen state" tests
|
This crash occasionally happens on macOS CI:
```
Received signal 11 <unknown> 000000000000
0 Electron Framework 0x000000011b34e409 base::debug::CollectStackTrace(void**, unsigned long) + 9
1 Electron Framework 0x000000011b26a903 base::debug::StackTrace::StackTrace() + 19
2 Electron Framework 0x000000011b34e331 base::debug::(anonymous namespace)::StackDumpSignalHandler(int, __siginfo*, void*) + 2385
3 libsystem_platform.dylib 0x00007fff6cfc95fd _sigtramp + 29
4 ??? 0x0000000000000000 0x0 + 0
5 Electron Framework 0x0000000116a0f0d5 gin_helper::Dispatcher<void (electron::api::BaseWindow*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 325
6 Electron Framework 0x00000001185764f3 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) + 915
7 Electron Framework 0x0000000118574abe v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments) + 1486
8 Electron Framework 0x00000001185731b0 v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) + 432
9 Electron Framework 0x0000000118572d6d v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*) + 109
10 Electron Framework 0x0000000119826aff Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit + 63
[end of stack trace]
✗ Electron tests failed with kill signal SIGSEGV.
```
I managed to reproduce it on a local machine once and the full stack trace is:
```
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [12293]
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.github.Electron.framework 0x000000010a5fe185 electron::NativeWindowMac::Close() + 69 (native_window_mac.mm:476)
1 com.github.Electron.framework 0x000000010a42c3e5 Run + 69 (callback.h:168) [inlined]
2 com.github.Electron.framework 0x000000010a42c3e5 DispatchToCallback + 98 (function_template.h:228) [inlined]
3 com.github.Electron.framework 0x000000010a42c3e5 gin_helper::Dispatcher<void (electron::api::BaseWindow*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 325 (function_template.h:262)
4 com.github.Electron.framework 0x000000010bf93573 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) + 915 (api-arguments-inl.h:158)
5 com.github.Electron.framework 0x000000010bf91b3e v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments) + 1486 (builtins-api.cc:113)
6 com.github.Electron.framework 0x000000010bf90230 v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) + 432 (builtins-api.cc:143)
7 com.github.Electron.framework 0x000000010bf8fded v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*) + 109 (builtins-api.cc:131)
8 com.github.Electron.framework 0x000000010d243b7f Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit + 63
9 com.github.Electron.framework 0x000000010cfbda6f Builtins_InterpreterEntryTrampoline + 207
10 com.github.Electron.framework 0x000000010d0bd837 Builtins_AsyncFunctionAwaitResolveClosure + 663
11 com.github.Electron.framework 0x000000010d3fecaa Builtins_PromiseFulfillReactionJob + 522
12 com.github.Electron.framework 0x000000010d06b6a9 Builtins_RunMicrotasks + 3113
13 com.github.Electron.framework 0x000000010cfb5403 Builtins_JSRunMicrotasksEntry + 131
14 com.github.Electron.framework 0x000000010c0f7f63 Call + 5 (simulator.h:144) [inlined]
15 com.github.Electron.framework 0x000000010c0f7f63 v8::internal::(anonymous namespace)::Invoke(v8::internal::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) + 4675 (execution.cc:383)
16 com.github.Electron.framework 0x000000010c0f88e5 v8::internal::(anonymous namespace)::InvokeWithTryCatch(v8::internal::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) + 133 (execution.cc:428)
17 com.github.Electron.framework 0x000000010c0f8bc1 v8::internal::Execution::TryRunMicrotasks(v8::internal::Isolate*, v8::internal::MicrotaskQueue*, v8::internal::MaybeHandle<v8::internal::Object>*) + 81 (execution.cc:505)
18 com.github.Electron.framework 0x000000010c13ec9d v8::internal::MicrotaskQueue::RunMicrotasks(v8::internal::Isolate*) + 461 (microtask-queue.cc:165)
19 com.github.Electron.framework 0x000000010c13ea97 v8::internal::MicrotaskQueue::PerformCheckpoint(v8::Isolate*) + 39 (microtask-queue.cc:117)
20 com.github.Electron.framework 0x0000000113ff5c0a node::InternalCallbackScope::Close() + 218 (callback.cc:114)
21 com.github.Electron.framework 0x0000000113ff6043 node::InternalMakeCallback(node::Environment*, v8::Local<v8::Object>, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 691 (callback.cc:199)
22 com.github.Electron.framework 0x0000000113ff632b node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 187 (callback.cc:260)
23 com.github.Electron.framework 0x000000010a5b384d gin_helper::internal::CallMethodWithArgs(v8::Isolate*, v8::Local<v8::Object>, char const*, std::__1::vector<v8::Local<v8::Value>, std::__1::allocator<v8::Local<v8::Value> > >*) + 93 (event_emitter_caller.cc:23)
24 com.github.Electron.framework 0x000000010a42b1ce EmitEvent<base::BasicStringPiece<std::string>, v8::Local<v8::Object> &> + 80 (event_emitter_caller.h:51) [inlined]
25 com.github.Electron.framework 0x000000010a42b1ce bool gin_helper::EventEmitter<electron::api::BaseWindow>::EmitWithEvent<>(base::BasicStringPiece<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, v8::Local<v8::Object>) + 142 (event_emitter.h:86)
26 com.github.Electron.framework 0x000000010a421cd0 bool gin_helper::EventEmitter<electron::api::BaseWindow>::Emit<>(base::BasicStringPiece<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >) + 128 (event_emitter.h:70)
27 com.github.Electron.framework 0x000000010a52db26 electron::NativeWindow::NotifyWindowLeaveFullScreen() + 470 (native_window.cc:548)
28 com.github.Electron.framework 0x000000010a60275e electron::NativeWindowMac::NotifyWindowLeaveFullScreen() + 14 (native_window_mac.mm:1547)
29 com.apple.CoreFoundation 0x00007fff204e9fec __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
30 com.apple.CoreFoundation 0x00007fff2058589b ___CFXRegistrationPost_block_invoke + 49
31 com.apple.CoreFoundation 0x00007fff2058580f _CFXRegistrationPost + 454
32 com.apple.CoreFoundation 0x00007fff204babde _CFXNotificationPost + 723
33 com.apple.Foundation 0x00007fff21229abe -[NSNotificationCenter postNotificationName:object:userInfo:] + 59
34 com.apple.AppKit 0x00007fff23834869 -[NSWindow(NSFullScreen) _didExitFullScreen] + 403
35 com.apple.AppKit 0x00007fff2339cb42 -[_NSWindowExitFullScreenTransitionController doAfterExitFullScreen] + 57
36 com.apple.AppKit 0x00007fff23650804 -[_NSExitFullScreenTransitionController _doAfterExitFullScreen] + 171
37 com.apple.AppKit 0x00007fff23650b80 __67-[_NSExitFullScreenTransitionController _startFullScreenTransition]_block_invoke + 207
38 libdispatch.dylib 0x00007fff202505dd _dispatch_call_block_and_release + 12
39 libdispatch.dylib 0x00007fff202517c7 _dispatch_client_callout + 8
40 libdispatch.dylib 0x00007fff2025db86 _dispatch_main_queue_callback_4CF + 940
41 com.apple.CoreFoundation 0x00007fff20531970 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
42 com.apple.CoreFoundation 0x00007fff204f3852 __CFRunLoopRun + 2731
43 com.apple.CoreFoundation 0x00007fff204f26ce CFRunLoopRunSpecific + 563
44 com.apple.HIToolbox 0x00007fff2877a630 RunCurrentEventLoopInMode + 292
45 com.apple.HIToolbox 0x00007fff2877a42c ReceiveNextEventCommon + 709
46 com.apple.HIToolbox 0x00007fff2877a14f _BlockUntilNextEventMatchingListInModeWithFilter + 64
47 com.apple.AppKit 0x00007fff22d129b1 _DPSNextEvent + 883
48 com.apple.AppKit 0x00007fff22d11177 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1366
49 com.apple.AppKit 0x00007fff22d0368a -[NSApplication run] + 586
50 com.github.Electron.framework 0x000000010ed827ec base::MessagePumpNSApplication::DoRun(base::MessagePump::Delegate*) + 348 (message_pump_mac.mm:691)
51 com.github.Electron.framework 0x000000010ed810fc base::MessagePumpCFRunLoopBase::Run(base::MessagePump::Delegate*) + 140 (message_pump_mac.mm:149)
52 com.github.Electron.framework 0x000000010ed27c86 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) + 646 (thread_controller_with_message_pump_impl.cc:460)
53 com.github.Electron.framework 0x000000010ecdcfb5 base::RunLoop::Run(base::Location const&) + 885 (run_loop.cc:133)
54 com.github.Electron.framework 0x000000010dab3f20 MainMessageLoopRun + 178 (browser_main_loop.cc:1409) [inlined]
55 com.github.Electron.framework 0x000000010dab3f20 content::BrowserMainLoop::RunMainMessageLoopParts() + 240 (browser_main_loop.cc:973)
56 com.github.Electron.framework 0x000000010dab5e02 content::BrowserMainRunnerImpl::Run() + 82 (browser_main_runner_impl.cc:150)
57 com.github.Electron.framework 0x000000010dab0df6 content::BrowserMain(content::MainFunctionParams const&) + 230 (browser_main.cc:47)
58 com.github.Electron.framework 0x000000010bc95824 RunBrowserProcessMain + 82 (content_main_runner_impl.cc:517) [inlined]
59 com.github.Electron.framework 0x000000010bc95824 content::ContentMainRunnerImpl::RunBrowser(content::MainFunctionParams&, bool) + 1060 (content_main_runner_impl.cc:1000)
60 com.github.Electron.framework 0x000000010bc953cf content::ContentMainRunnerImpl::Run(bool) + 495 (content_main_runner_impl.cc:876)
61 com.github.Electron.framework 0x000000010bc94136 content::RunContentProcess(content::ContentMainParams const&, content::ContentMainRunner*) + 2630 (content_main.cc:372)
62 com.github.Electron.framework 0x000000010bc9420d content::ContentMain(content::ContentMainParams const&) + 29 (content_main.cc:398)
63 com.github.Electron.framework 0x000000010a3fd4f9 ElectronMain + 137 (electron_library_main.mm:24)
64 com.github.Electron 0x0000000106246dea main + 298 (electron_main.cc:276)
65 libdyld.dylib 0x00007fff20417621 start + 1
```
|
https://github.com/electron/electron/issues/28361
|
https://github.com/electron/electron/pull/31750
|
fe7f2963398b992c7a9d85bf3c6f9270c1f841ce
|
4b3aed503f65ee83e57bcd72a3e0ca6ebaaae564
| 2021-03-24T00:38:00Z |
c++
| 2021-11-09T03:27:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,359 |
["lib/browser/default-menu.ts"]
|
[Bug]: "Community Discussions" goes to discuss.atom.io
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
Windows
### Operating System Version
Windows 10 21337.1010
### What arch are you using?
x64
### Last Known Working Electron version
N/A
### Expected Behavior
That the "Community Discussion" link in the Help context menu does not point to discuss.atom.io anymore. Perhaps the Discord would be a good substitute. If it's unnecessary, just put removing it would be a relatively good alternative.
### Actual Behavior
The "Community Discussion" link in the Help context menu points to discuss.atom.io
### Testcase Gist URL
_No response_
|
https://github.com/electron/electron/issues/28359
|
https://github.com/electron/electron/pull/28449
|
52262a9db03ab7a3457b1d720fcf12c65c98a379
|
f55aa788836d7c528e3b2efd004593bf0847e68f
| 2021-03-23T20:09:26Z |
c++
| 2021-03-31T06:22:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,348 |
["shell/browser/web_view_guest_delegate.cc", "spec-main/webview-spec.ts", "spec/fixtures/api/native-window-open-noopener.html"]
|
[Bug]: App Crashes when a new foreground tab is opened from a webview with nativeWindowOpen and allowPopups
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
macOS
### Operating System Version
11.2
### What arch are you using?
x64
### Last Known Working Electron version
11.x
### Expected Behavior
The app should not crash, and the new-window event should be fired
### Actual Behavior
The app crashes
### Testcase Gist URL
https://gist.github.com/ae7fdfd99a5d755a5ae4323c46a4e833
|
https://github.com/electron/electron/issues/28348
|
https://github.com/electron/electron/pull/29874
|
da9261497eeaed116d84f460303f1872ae00cc9d
|
522b19e2d8782cdf271a5c4d2dc4c995d87cc574
| 2021-03-23T11:09:29Z |
c++
| 2021-06-30T01:10:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,327 |
["shell/renderer/api/electron_api_context_bridge.cc", "spec-main/api-context-bridge-spec.ts"]
|
[Bug]: "Uncaught Error:" added to message of errors thrown in a function defined in preload script
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
macOS
### Operating System Version
11.2
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
`error.message` shouldn't be prefixed with "Uncaught Error:"
### Actual Behavior
`error.message` is prefixed with "Uncaught Error:" when an error is thrown in a function defined in the preload script and caught in the renderer process. This only happens when `contextIsolation` is enabled.
### Testcase Gist URL
https://gist.github.com/f11c77f9bc2cbf98d42a9fcaf477c80a
|
https://github.com/electron/electron/issues/28327
|
https://github.com/electron/electron/pull/28346
|
9a7cfc42aa085113fa6f8f1b2051482da704c4c2
|
9fecf8369fdc37e50c4631f7f23fbbf2d4e12537
| 2021-03-22T12:50:31Z |
c++
| 2021-03-30T07:26:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,319 |
["shell/browser/native_window_views.cc", "shell/browser/ui/win/taskbar_host.cc", "shell/browser/ui/win/taskbar_host.h"]
|
[Bug]: Thumbar disappears after win.hide() is called - and can't be displayed again afterwards
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.2.3
### What operating system are you using?
Windows
### Operating System Version
Windows 10 v19042
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
After calling setThumbarButtons() and then `window.hide()` and then `window.show() `
I should be able to set thumbar buttons back to their original state (or create new)
### Actual Behavior
Thumbar function seems to break completely after `window.hide()` is called
(It wont display anymore, calling `setThumbarButtons([...])` returns true but wont actually display anything
⚠️ The bug can also be replicated by just creating the thumbar while the window is already hidden
### Testcase Gist URL
https://gist.github.com/883fa102da7c81e47bb866aa20089292
-----
#12240 #22081 seems to have the same issue on older Electron versions
I encountered this bug while working on [youtube-music](https://github.com/th-ch/youtube-music/pull/200/files)
[EDIT]: I made the whole thing work by using
`win.minimize(); win.setSkipTaskbar(true);`
instead of
`window.hide();`
but still, the original bug exists
|
https://github.com/electron/electron/issues/28319
|
https://github.com/electron/electron/pull/28366
|
b9b734c9c47d526f7bfd8cabc688dae2d0ba045b
|
1453a8e743f5c4e4e8dfeac7ff4c982295777258
| 2021-03-21T19:39:36Z |
c++
| 2021-03-25T11:02:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,313 |
["patches/chromium/expose_setuseragent_on_networkcontext.patch", "patches/chromium/network_service_allow_remote_certificate_verification_logic.patch"]
|
[Bug]: Rapid requests to same domain cause session.setCertificateVerifyProc to break requests (maybe session related?)
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.3.0
### What operating system are you using?
macOS
### Operating System Version
macOS 11.2.2
### What arch are you using?
x64
### Last Known Working Electron version
Maybe never?
### Expected Behavior
When rapid requests are made to the same domain, they are routed to the setCertificateVerifyProc's registered proc callback function. That callback function should then be able to call the resolution callback with the appropriate verificationResult (0, -2, -3) without causing an http request failures or session dumping
### Actual Behavior
When rapid requests are made to the same domain, they are routed to the setCertificateVerifyProc's registered proc callback function. When calling the resolution callback function on a domain that has already been resolved using the callback function with 0 or -2, something in electron breaks. Not sure if it is session related, or something running the http requests
For example, 2 requests to foo.bar.com are made one right after another. Both requests then are sent to the setCertificateVerifyProc's registered callback function because the cert for that domain hasn't been verified yet. The first request is processed, and the callback is called with a 2 or 0. The second request then gets processed by the same callback function, and again the resolution callback is called with 2 or 0. When the second callback is executed, something with the session or something related to the way http requests gets broken, and causes https requests to fail
### Testcase Gist URL
https://gist.github.com/9235bb45412c6f55fba6b5703f467b87
|
https://github.com/electron/electron/issues/28313
|
https://github.com/electron/electron/pull/28358
|
b6254bfd3615642ae0b51a6fe7022ceda67ae5cb
|
9a7cfc42aa085113fa6f8f1b2051482da704c4c2
| 2021-03-20T04:05:43Z |
c++
| 2021-03-29T22:35:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,287 |
["docs/api/web-request.md"]
|
[Bug]: requestHeaders is undefined in onHeadersReceived
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
macOS
### Operating System Version
macos Big Sur 11.2.3 (20D91)
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
the details object passed to the webRequest.onHeadersRecieved has a property requestHeaders containing the headers used in the request this response is for, as per the documentation at https://www.electronjs.org/docs/api/web-request#webrequestonheadersreceivedfilter-listener
### Actual Behavior
requestHeaders is undefined
### Testcase Gist URL
https://gist.github.com/NilSet/26b75942551fa3adb0cd24f813748274
opening this new copy of #23795 with a repro fiddle, as per the request of electron-triage bot.
|
https://github.com/electron/electron/issues/28287
|
https://github.com/electron/electron/pull/29907
|
e4807ac020cb4cccebb28157a558912e7530518c
|
914256374878da1e61adaf403c59ace22b47dec9
| 2021-03-19T02:23:39Z |
c++
| 2021-06-28T22:52:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,228 |
["shell/browser/native_browser_view_mac.mm"]
|
[Bug]: BrowserView still has a hidden dragging area while y is non-zero
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.x 13.x
### What operating system are you using?
macOS
### Operating System Version
macOS Big Sur 11.2.2
### What arch are you using?
arm64 (including Apple Silicon)
### Last Known Working Electron version
12.x
### Expected Behavior
BrowserView with non-zero y bound setting should not being able to drag in the bottom area.
### Actual Behavior
If set BrowserView with bounds `{ x: 0, y: 40, width: 300, height: 100 }`.
This BrowserView will has a hidden dragging-area in its bottom.
Problem occurred while the `y` is non-zero.
### Testcase Gist URL
https://gist.github.com/c138020abbb7d949608c3c11b1cad253
As in https://github.com/electron/electron/issues/27884, the dragging problem in BrowserView still exists.
Have tested in v12.x and v13.x.
The dragging area is actually 2x of the BrowserView's `y` setting (red area in test case).
|
https://github.com/electron/electron/issues/28228
|
https://github.com/electron/electron/pull/28268
|
a68d43ce8ba2ff4f6bcdf6e01e5a1f260af265d6
|
79bcb882acc06989af601d3818d7eb9f0aaabfbe
| 2021-03-17T03:15:25Z |
c++
| 2021-03-19T13:22:05Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,208 |
["lib/browser/api/web-contents.ts", "spec/api-web-contents-spec.ts"]
|
[Bug]: BrowserWindow#loadURL() throw an error when I load same page with different location hash
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
11.2.3
### What operating system are you using?
Other (specify below)
### Operating System Version
Windows10 Pro Version 1909 (Build 18363.1440), MacOS Big Sur 11.2.3 (20D91), Probably not depend on OS
### What arch are you using?
Other (specify below)
### Last Known Working Electron version
N/A
### Expected Behavior
BrowserWindow#loadURL() must finish without throwing any error
### Actual Behavior
BrowserWindow#loadURL() throw an error as below when load same page with different location hash
```
Error: ERR_FAILED (-2) loading 'asset:///test.html#section2'
at rejectAndCleanup (electron/js2c/browser_init.js:205:1493)
at Object.stopLoadingListener (electron/js2c/browser_init.js:205:1868)
at Object.emit (events.js:327:22) {
errno: -2,
code: 'ERR_FAILED',
url: 'asset:///test.html#section2'
}
```
### Testcase Gist URL
https://gist.github.com/eternalharvest/e6b26f8e20d3ebf6048bd50ef8c3eb63
It is not mentioned in the official document, it seems there is option `reloadIgnoringCache`.
And when I call loadURL method with option which reloadIgnoringCache set to true, It seems this error is not happen.
```javascript
// this code works correct (error is not happen)
mainWindow.loadURL('asset:///test.html#section2', { reloadIgnoringCache: true })
.then(() => console.log('ok'))
.catch(console.error);
```
Related Issues
* #24113
|
https://github.com/electron/electron/issues/28208
|
https://github.com/electron/electron/pull/36129
|
a75e8e051e4854bd65721f82ec1acc7c51764f30
|
625b4619d61619b4d327dd58be3a2cf9b348ffa3
| 2021-03-16T00:48:59Z |
c++
| 2022-10-26T20:57:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,200 |
["shell/renderer/renderer_client_base.cc"]
|
[Bug]: Crash when Using mpv.js on Latest Version of Electron
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
Windows
### Operating System Version
Windows 10 Pro 2020
### What arch are you using?
x64
### Last Known Working Electron version
11.3.0
### Expected Behavior
The app works perfectly fine with an embedded video player.
### Actual Behavior
The app crashes when creating an element with an embedded video player.
### Testcase Gist URL
https://github.com/pavladan/mpv.js-on-react
Change the version of electron to 12.0.1 to see the crash, 11.3.0 works perfectly fine.
Note: In order to see the crash on 12.0.1, adjustments to the settings must be made
```
const win = new BrowserWindow({
width: 1280,
height: 574,
autoHideMenuBar: true,
useContentSize: process.platform !== "linux",
title: "mpv.js example player",
webPreferences: {
nodeIntegration: true,
plugins: true,
enableRemoteModule: true,
nodeIntegrationInSubFrames: true,
contextIsolation: false,
worldSafeExecuteJavaScript: false
},
});
```
|
https://github.com/electron/electron/issues/28200
|
https://github.com/electron/electron/pull/28332
|
d93690ccdc8c175eb4b6b5f6bde579e1147e4936
|
89df6b98da123f847b82eab897e02dadab02a7d4
| 2021-03-15T18:32:20Z |
c++
| 2021-03-24T18:11:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,195 |
["lib/asar/fs-wrapper.ts", "shell/common/api/electron_api_asar.cc", "shell/common/asar/archive.cc", "shell/common/asar/archive.h", "shell/common/asar/scoped_temporary_file.cc", "shell/common/asar/scoped_temporary_file.h", "typings/internal-ambient.d.ts"]
|
ASAR fd not closeable on Windows
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
Windows
### Operating System Version
Windows 10 version 1909
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
File unlocked after closing the renderer process that access the asar package.
### Actual Behavior
File still locked after closing the renderer process that access the asar package.
### Testcase Gist URL
_No response_
#24470 broke #4118 , #4129
Asar file not closed automatically on Windows.
In my project, multiple web apps were each packaged into asar archives and then load by Electron renderers.
It's also vital that these packages were able to be removed and replaced while Electron main process is running.
I found that this issue was fixed before (#4118 , #4129) but then broke by #24470, which also removed the `getFD` method, making this issue not likely to be walked-around without forking and recompiling.
May I suggest adding these features back?
Thanks.
|
https://github.com/electron/electron/issues/28195
|
https://github.com/electron/electron/pull/28137
|
b023b33c05f3b4d6825ad92282e2ebebe90b1902
|
d27ad0d1822ceb709cf0d87eb49bce8bc9c2d70d
| 2021-03-15T09:21:04Z |
c++
| 2021-03-15T18:42:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,185 |
["shell/browser/lib/bluetooth_chooser.cc", "shell/browser/lib/bluetooth_chooser.h"]
|
[Bug]: Bluetooth requestDevice not working on 12.0.0/12.0.1
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
Windows
### Operating System Version
Version: Home 2004 / OS build: 19041.867
### What arch are you using?
x64
### Last Known Working Electron version
11.3.0
### Expected Behavior
`navigator.bluetooth.requestDevice({acceptAllDevices: true});` in a renderer JS file should trigger the `select-bluetooth-device` event registered in an electron/main JS file.
### Actual Behavior
Does not trigger the event.
### Testcase Gist URL
https://gist.github.com/910403defe0696032c1f5ccb1a9b1d7e
|
https://github.com/electron/electron/issues/28185
|
https://github.com/electron/electron/pull/29591
|
c9ccd136a8170199d3f7c64b9adc745e119cffbb
|
396ea4b29ca8bada379f77faf2a53f8999ccf898
| 2021-03-14T20:09:50Z |
c++
| 2021-06-09T14:48:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,178 |
["docs/api/browser-window.md"]
|
[Bug]: bad typescript definition for BrowserWindow.hookWindowMessage
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.1
### What operating system are you using?
Windows
### Operating System Version
10
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
`BrowserWindow::hookWindowMessage`'s callback parameter should have the lParam and wParam parameters:
`hookWindowMessage(message: number, callback: (lParam: Buffer, wParam: Buffer) => void): void;`
### Actual Behavior
callback is `() => void`
### Testcase Gist URL
_No response_
continuation of [this closed issue](https://github.com/electron/electron/issues/21237)
|
https://github.com/electron/electron/issues/28178
|
https://github.com/electron/electron/pull/28189
|
d27ad0d1822ceb709cf0d87eb49bce8bc9c2d70d
|
b045d42b0e19eeb86d6ca6f211c23017125ad20f
| 2021-03-13T22:57:23Z |
c++
| 2021-03-16T08:54:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,154 |
["shell/common/node_bindings.cc", "shell/common/node_bindings.h", "spec-main/fixtures/apps/libuv-hang/index.html", "spec-main/fixtures/apps/libuv-hang/main.js", "spec-main/fixtures/apps/libuv-hang/preload.js", "spec-main/fixtures/apps/libuv-hang/renderer.js", "spec-main/node-spec.ts"]
|
[Bug]: Renderer Promise API stops working after page reload when allowRendererProcessReuse is true
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
Windows
### Operating System Version
10
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
From the reproduce steps, expecting to see local files printed in the console:
...
preload.js:11 Reading file .gitignore
preload.js:11 Reading file index.html
preload.js:11 Reading file LICENSE.md
preload.js:11 Reading file main.js
preload.js:11 Reading file package-lock.json
...
### Actual Behavior
List is printed the first time the app loads. Hit Ctrl+R and observe only one line printed, or none at all.
### Testcase Gist URL
https://gist.github.com/e0d8e593f6f2d737a795d8e20ab5a37d
### Additional Information
It might be related to issue #22119
|
https://github.com/electron/electron/issues/28154
|
https://github.com/electron/electron/pull/28175
|
d10398610bb8f434b0a9c870115a1b704abdca85
|
665ac6f9c830edbf85596369b49844e1b910c59a
| 2021-03-12T08:55:28Z |
c++
| 2021-03-22T20:11:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,104 |
["shell/browser/native_window_mac.mm", "shell/browser/native_window_views.cc", "spec-main/fixtures/crash-cases/transparent-window-get-background-color/index.js"]
|
[Bug]: BrowserWindow.getBackgroundColor() crashes with transparent windows on macOS
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
macOS
### Operating System Version
10.14.0
### What arch are you using?
x64
### Last Known Working Electron version
---
### Expected Behavior
No crash when calling method
### Actual Behavior
App crashes when calling `getBackgroundColr()`
### Testcase Gist URL
https://gist.github.com/d50e366f070104cac377fd7a48722cbe
### Additional Information
_No response_
|
https://github.com/electron/electron/issues/28104
|
https://github.com/electron/electron/pull/28120
|
f73256651b83f96bdac3b607844c30061a9a3029
|
8dfe4abd14746d2a3278f2a65f6deaf81c6d636d
| 2021-03-10T18:50:14Z |
c++
| 2021-03-15T00:26:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,088 |
["shell/browser/ui/views/menu_bar.cc", "shell/browser/ui/views/root_view.cc"]
|
[Bug]: Linux Electron 12 always unnecessary opens BrowserWindow menu on every keyboard layout switch via Alt+Shift & Alt+Ctrl hotkeys
|
### 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](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
Ubuntu
### Operating System Version
20.04
### What arch are you using?
x64
### Last Known Working Electron version
5.x
### Expected Behavior
When user change keyboard layout via Alt+Ctrl or Alt+Shift hotkeys, it should just change keyboard layout and have no effect on any focused Electron input elements.
### Actual Behavior
At every layout changing on any input element (textarea, input, etc) - it lose focus, so users can't continue typing text, and need manually click on input element to restore focus and continue typing. This is very annoying for all non-English users!
### Testcase Gist URL
https://github.com/geeksesi/time_reminder
### Additional Information
**How to reproduce:**
1. Add any second keyboard layout in KDE settings, default hotkey for switch will be "Alt+Shift".
2. Open any app, using Electron 12.0 version, for example "Quick start" app.
3. Make focus on any input element, start typing some text.
4. Press "Alt+Shift" and try continue typing, you will can't, because element lose focus! Via "Alt" key press Electron activates app menu, and you can press "Esc" for deactivate it and continue typing, or click via mouse on element.
Screenshot of problem:

**How to workaround:**
Downgrade Electron application to 5.x or earlier versions of Electron, and this issue will not reproduced!
# Right solution
**Please investigate source of this issue and fix this regression on fresh Electron versions!**
P.S. Here is the clone of #22213 that is closed without any reasons! Also some Electron 4.x apps was have similar issue, that can be fixed via workaround with adding keyboard shortcuts to all menu elements (here is example of fix: https://github.com/vector-im/riot-web/issues/4345), but this workaround stops working on Electron 6.x+ versions.
**_Similar reports, depending on this issue:_**
- https://github.com/microsoft/vscode/issues/85405
- https://github.com/notable/notable/issues/557
- https://github.com/RocketChat/Rocket.Chat.Electron/issues/1355
- https://github.com/vector-im/element-web/issues/4345
- https://github.com/electron/electron/issues/17418
- https://github.com/laurent22/joplin/issues/3345
- https://github.com/signalapp/Signal-Desktop/issues/4744
- https://github.com/electron/electron/issues/11106
- https://github.com/typora/typora-issues/issues/3366
- https://github.com/sindresorhus/caprine/issues/628
- https://github.com/klaussinani/tusk/pull/197
- https://github.com/meetfranz/franz/issues/1366
- https://github.com/meetfranz/franz/issues/1088
- https://github.com/signalapp/Signal-Desktop/issues/3621
- https://github.com/microsoft/vscode/issues/85444
...and many more affected apps!
|
https://github.com/electron/electron/issues/28088
|
https://github.com/electron/electron/pull/29328
|
0208e4adad08380fa11ba00b54fb3e459dad10b6
|
d74ad51826c0672b72e807de580cb97c3b29a8bb
| 2021-03-10T06:06:43Z |
c++
| 2021-06-01T01:48:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,043 |
["patches/node/.patches", "patches/node/src_inline_asynccleanuphookhandle_in_headers.patch"]
|
Native Node Modules for Electron 11 and above do not compile with async cleanup behavior
|
### 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:** 11 and 10
* **Operating System:** Windows
* **Last Known Working Electron version:** Never, it was a new feature of Node patched into Electron 11/10
### Expected Behavior
When compiling a native node module that does not leverage NAPI, if the module attempts to use `node::AddEnvironmentCleanupHook`, the module will compile.
### Actual Behavior
The module does not compile, this is because Windows Electron leverages its own internally compiled version of the standard library, so unique_ptr cannot be leveraged in this way.
### To Reproduce
You can use this repository to reproduce:
https://github.com/implausible/electron-abi-issue-demo
### Additional Information
Issue can be solved by taking these 2 patches https://github.com/nodejs/node/commit/1fe571aa0c55814e58f6efefedf69da8d358034b and https://github.com/nodejs/node/commit/bf79987433e8b2457007a8f531e4a0b3112ed466
|
https://github.com/electron/electron/issues/28043
|
https://github.com/electron/electron/pull/28067
|
32ec7e1e2161fcead85f1bbe76136d38d425189b
|
102a3740ea8be95c784de362da81bd70b9ba0c59
| 2021-03-08T15:00:25Z |
c++
| 2021-03-10T19:44:16Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 28,029 |
["shell/common/platform_util.cc", "spec-main/api-shell-spec.ts"]
|
shell.trashItem crashes the process
|
### 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:**
* 12.0.0
* **Operating System:**
* macOS 10.14
* **Last Known Working Electron version:**
* N/A
### Expected Behavior
`shell.trashItem` should just work.
### Actual Behavior
It does its job, and then immediately crashes the process.
### To Reproduce
I don't have a fiddle, but this line makes the process crash for me:
```js
return shell.trashItem ( path ).then ( () => true, () => false );
```
While this works:
```js
return Promise.resolve ( shell.moveItemToTrash ( path, false ) );
```
In addition I'm getting as output from the main process:
```
{ reason: 'crashed', exitCode: 11 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
{ reason: 'crashed', exitCode: 5 }
and so on...
```
Basically it crashes the window with exit code 11, then my app opens gain the window after it crashed, and it crashes again immediately with exit code 5.
|
https://github.com/electron/electron/issues/28029
|
https://github.com/electron/electron/pull/28748
|
d2654c652a6bc60097f24d8f4cb83fd74ec182ac
|
be3c2fd0af60622444c3491f874ad8821faf9d65
| 2021-03-06T21:26:56Z |
c++
| 2021-04-22T20:46:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,995 |
["shell/renderer/electron_render_frame_observer.cc", "shell/renderer/electron_renderer_client.cc", "shell/renderer/electron_sandboxed_renderer_client.cc", "spec-main/fixtures/crash-cases/js-execute-iframe/index.html", "spec-main/fixtures/crash-cases/js-execute-iframe/index.js", "spec-main/fixtures/crash-cases/js-execute-iframe/page2.html"]
|
Uncaught Illegal access error in circumstances of #27457
|
<!-- 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
This issue is closely related to #27457, which seems to have been partially, but not entirely fixed by #27582. Specifically, the renderer no longer entirely hangs as it used to, but still reports the error `Uncaught illegal access`, and this prevents the execution of some of the asynchronous scripts on the page.
* **Electron Version:**
* Any version that's recieved the partial fix of #27582, including the 12.0.0 release, the 13.0.0 nightly releases, and the current master branch of 10.x and 11.x. The issue in its original, worse, form affects every other version of electron from 9.x on.
* **Operating System:**
* Verified on MacOS 10.14.6, 10.15.7, 11.2, and on Linux Debian 4.19.160-2, and Debian 5.9.15
<!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->
* **Last Known Working Electron version:**
* Electron 8.5.5 did not experience this issue.
### Expected Behavior
<!-- A clear and concise description of what you expected to happen. -->
The app runs normally.
### Actual Behavior
<!-- A clear and concise description of what actually happened. -->
The app runs, but reports `Uncaught illegal access` on line 1 of the html page it's loading, and some script execution stops, such as receiving messages from node-ipc.
### To Reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide an example.
-->
The [original bug's example repo](https://github.com/Patronics/example-electron-hang) has been updated to use the new releases of electron, and to better demonstrate the current issue. It also demonstrates the error message in the console. The comments in index.html describe which lines are specifically related to the bug, and which are just to better demonstrate its effects.
<!--
For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report.
-->
<!--
If Fiddle is insufficient to produce an example, please provide an example 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/Patronics/example-electron-hang.git
$ npm install
$ npm start
```
-->
### Screenshots
<!-- If applicable, add screenshots to help explain your problem. -->
The screenshot in #27457 may still be relevant, but the current version of the issue only outputs the error `Uncaught illegal access` on line 1, without a similar stack trace
### Additional Information
<!-- Add any other context about the problem here. -->
To clarify, commit #27582 did not 'cause' this issue per se, but did not fully fix the issue either.
|
https://github.com/electron/electron/issues/27995
|
https://github.com/electron/electron/pull/29093
|
4073599f59023360fbaff0a6e90f34dc26246338
|
b7a23450b7ec345929d282dcf0e2c8a75c179d51
| 2021-03-04T00:39:53Z |
c++
| 2021-05-14T11:36:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,982 |
["lib/asar/fs-wrapper.ts", "shell/common/api/electron_api_asar.cc", "shell/common/asar/archive.cc", "shell/common/asar/archive.h", "shell/common/asar/scoped_temporary_file.cc", "shell/common/asar/scoped_temporary_file.h", "typings/internal-ambient.d.ts"]
|
Unable to read files from asar after 10+ hours of runtime
|
<!-- 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:**
11.2.3, 11.2.3, 11.3.0
* **Operating System:**
Windows 10
* **Last Known Working Electron version:**
8.5.5
### Expected Behavior
Electron should correctly load resource from asar with file protocol.
### Actual Behavior
After some runtime any file you try to load from asar fails to load with net::ERR_FILE_NOT_FOUND
### To Reproduce
Run the Electron for 10+ hours and from time to time try to read file from asar. After some time will start getting errors net::ERR_FILE_NOT_FOUND on all files.
<!--
For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report.
-->
<!--
If Fiddle is insufficient to produce an example, please provide an example 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. -->
|
https://github.com/electron/electron/issues/27982
|
https://github.com/electron/electron/pull/28137
|
b023b33c05f3b4d6825ad92282e2ebebe90b1902
|
d27ad0d1822ceb709cf0d87eb49bce8bc9c2d70d
| 2021-03-03T15:07:54Z |
c++
| 2021-03-15T18:42:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,967 |
["lib/browser/api/web-contents.ts", "lib/browser/guest-window-manager.ts", "spec-main/guest-window-manager-spec.ts"]
|
The handler of "setWindowOpenHandler" not fires on Electron 12.0.0
|
### 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:**
* 12.0.0
* **Operating System:**
* Windows 10 20H2
### Expected Behavior
Handler fires and no new window opens
### Actual Behavior
Handler fails and a new window opens
### To Reproduce
1. Write this code:
```javascript
window.webContents.setWindowOpenHandler(() => ({ action: "deny" }));
```
2. Debug or run the application.
3. Press Alt + LMB (or Scroll) on any <a> link in app.
|
https://github.com/electron/electron/issues/27967
|
https://github.com/electron/electron/pull/28498
|
3ed8da093148df2f03e2a1020d2bbebc99a58ac4
|
62b38812b629201c0ab490b73353ee4ac53212ac
| 2021-03-02T17:41:47Z |
c++
| 2021-04-06T08:04:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,957 |
["docs/fiddles/quick-start/main.js"]
|
Cannot get basic app in Quick Start Guide to work. process is not defined error.
|
<!-- 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:**
v12.0.0
* **Operating System:**
Windows 10 Enterprise
* **Last Known Working Electron version:**
None
### Expected Behavior
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
### Actual Behavior
We are using node , Chrome , and Electron .
### To Reproduce
npm init -y
npm i --save electron
Copy and paste code from Quick Start Guide into main.js and index.html
npm start
And receive the following errors with my app starts
Uncaught ReferenceError: process is not defined
at index.html:11
index.html:12 Uncaught ReferenceError: process is not defined
at index.html:12
index.html:13 Uncaught ReferenceError: process is not defined
at index.html:13
package.json
{
"name": "mea",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^12.0.0"
}
}
main.js
const { app, BrowserWindow } = require('electron')
function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
nodeIntegrationInWorker: true,
enableRemoteModule: true
}
})
win.loadFile('index.html')
}
app.whenReady().then(createWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
</head>
<body style="background: white;">
<h1>Hello World!</h1>
<p>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</p>
</body>
</html>

<!--
For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report.
-->
<!--
If Fiddle is insufficient to produce an example, please provide an example 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. -->
|
https://github.com/electron/electron/issues/27957
|
https://github.com/electron/electron/pull/27970
|
360d1b2bfdfb45ceecd1555165851a1301ba711e
|
2e091d401e1636bb91e80c9eaa09d82d15fda66e
| 2021-03-02T11:58:23Z |
c++
| 2021-03-04T00:18:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,895 |
["lib/browser/api/net.ts", "shell/browser/api/electron_api_url_loader.cc", "spec/api-net-spec.ts", "typings/internal-ambient.d.ts"]
|
net.request response is missing content-type header in 304 responses
|
### 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:**
10.1.7
* **Operating System:**
Windows 10 Enterprise 1909
When making a request with `net.request`, I can see that my response has a `content-type` header of `application/json; charset=utf-8` inside of my `webRequest.onHeadersReceived` handler:
```
electron.session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
// details.responseHeaders['content-type'] === 'application/json; charset=utf-8'
});
```
But by the time the `net.request` `request.on('response')` handler receives the headers, the content-type is gone.
```
request.on('response', (response) => {
/*
response.headers === {
// no content-type
};
*/
});
```
I haven't tested if this is an issue in all types of responses, but I can tell you this is occurring without fail for the case when the `response.statusCode === 200`, but the `response.headers.status === 304`.
### Expected Behavior
For `net.request` response handler to receive the content-type that clearly should exist on the response (proved by `webRequest.onHeadersReceived`).
### Actual Behavior
`net.request` response handler is receiving what seems to be a cached set of headers (or something?), which do not match what is seen in `webRequest.onHeadersReceived`.
|
https://github.com/electron/electron/issues/27895
|
https://github.com/electron/electron/pull/36666
|
8c837fda4f2d68d8568889cd68da801f833c862c
|
8f23b1527b1d1055d675d04e7b3ee669947ccbd4
| 2021-02-24T16:57:50Z |
c++
| 2022-12-21T22:53:29Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,891 |
["docs/api/browser-window.md", "shell/browser/api/electron_api_web_contents.cc", "spec-main/api-browser-window-spec.ts"]
|
WebContents.capturePage can freeze browser process
|
<!-- 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:**
* 13.0.0-nightly.20210223
* **Operating System:**
* Windows 10
* **Last Known Working Electron version:**
* It probably never worked
### Expected Behavior
Call to BrowserWindow.webContents.capturePage does not freeze the application.
### Actual Behavior
Call to BrowserWindow.webContents.capturePage freezes the application.
### To Reproduce
Run following app:
```
const { app, BrowserWindow } = require('electron')
function startTest() {
let win = new BrowserWindow();
win.on('hide', () => {
// We have to wait a moment as 'hide' is called too soon
// and windows isn't really hidden at this point.
setTimeout( () => {
win.webContents.capturePage();
app.quit();
}, 100);
});
win.webContents.loadURL('about:blank');
win.hide();
}
app.on('ready', startTest)
```
<!--
For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report.
-->
<!--
If Fiddle is insufficient to produce an example, please provide an example 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. -->
|
https://github.com/electron/electron/issues/27891
|
https://github.com/electron/electron/pull/27883
|
f6949dd1972f89e6b9efe2d7c87a17afa05d6b7e
|
d9997c303f6173e74444473cd1972eb4aa2b4113
| 2021-02-24T16:01:46Z |
c++
| 2021-03-09T13:51:44Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,884 |
["shell/browser/native_browser_view_mac.mm"]
|
BrowserView in BrowserWindow has phantom drag region
|
### 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:**
Electron 10 and beyond (have tried 10.2.0, 10.3.2, 10.4.0 and 11.2.0)
* **Operating System:**
* macOS 10.15.7
* **Last Known Working Electron version:**
Electron 8.5.1
### Expected Behavior
Upon upgrading from electron 8 to electron 10, we started noticing drag issues in our frameless macOS electron app. In our app, we have a BrowserWindow with a sidebar of fixed width and then there are a few overlapping browserviews that start with the x coordinate being the width of the sidebar. We started seeing a drag region appear on the righthand side of the app, the same size as the x offset and this whole entire region is draggable when it should not be.
### Actual Behavior
To not have a drag region if one is not specified
### To Reproduce
I provided a small fiddle that showcases the problem. The green section of the fiddle at the top is the only place where there is actually a drag region set, but you can observe that the entire right side (150px) is also draggable.
https://gist.github.com/08f3e56e0a4dc443621bd769e18c7cd6
### Screenshots
<img width="805" alt="Screen Shot 2021-02-23 at 5 05 35 PM" src="https://user-images.githubusercontent.com/16627655/108930247-6dd6ce80-75fa-11eb-9025-b9fff15e7d68.png">
### Additional Information
One other issue I've noticed is that a browserView on top of a browserWindow makes the overlapping part of the browserWindow lose draggability. e.g. if you set the top part of the browser window to be draggable, but then have a browserview over it, then the overlapping parts are not draggable even if the browserView does not have no-drag set. The only way I've found around this is to add another drag region at the top of the browserView, but this makes the phanton drag region at the side appear.
@codebytere
|
https://github.com/electron/electron/issues/27884
|
https://github.com/electron/electron/pull/27952
|
86e220b14df22c5f6f4384cc887b8c0fee405bc1
|
360d1b2bfdfb45ceecd1555165851a1301ba711e
| 2021-02-24T01:17:55Z |
c++
| 2021-03-03T18:37:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,877 |
["docs/api/command-line-switches.md", "shell/browser/electron_browser_main_parts.cc", "shell/browser/feature_list.cc", "shell/browser/feature_list.h"]
|
The force-fieldtrials command line swtich does not work.
|
<!-- 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:**
* 11.3.0 / 12.0.0-beta28
* **Operating System:**
* macOS 10.15.7
* **Last Known Working Electron version:**
* None
### Expected Behavior
Chrome supports the `--force-fieldrials` commadn line switch in order to force certain field trials. Passing them as follows should work: `app.commandLine.appendSwitch('force-fieldtrials', 'WebRTC-Audio-Red-For-Opus/Enabled/');`
### Actual Behavior
This doesn't seem to work in Electron. The field trial is not activated.
### To Reproduce
Check the following fiddle: https://gist.github.com/saghul/a11bc277523e55d0401c7ca4b418483d it should print true.
This can be verified by launching Chrome with `--force-fieldtrials=WebRTC-Audio-Red-For-Opus/Enabled/` and checking the output of `RTCRtpReceiver.getCapabilities("audio").codecs` - it should contain an item with `mimeType` set to `audio/red`.
### Screenshots
N/A
### Additional Information
https://github.com/electron/electron/issues/25529 and https://github.com/electron/electron/issues/13731 reported the same problem, but they are closed with no way to validate if Electron is behaving correctly. The fiddle in this issue allows to validate if field trials are properly processed.
|
https://github.com/electron/electron/issues/27877
|
https://github.com/electron/electron/pull/28305
|
521146f71ee62a769a65bee55b448719b576d868
|
2632564ccf20b31e852b57fa767e11b2a46461dc
| 2021-02-23T11:47:17Z |
c++
| 2021-03-26T00:49:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,859 |
["docs/api/crash-reporter.md", "docs/breaking-changes.md", "patches/config.json", "patches/webrtc/.patches", "patches/webrtc/add_thread_local_to_x_error_trap_cc.patch", "shell/app/electron_main.cc", "spec-main/api-crash-reporter-spec.ts"]
|
Switch to Crashpad on Linux
|
It looks like this is very nearly ready in upstream Chromium, apparently just blocked on [this CL](https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2037803), which has to do with an upload issue on Fedora.
Upstream tracking issue: https://bugs.chromium.org/p/crashpad/issues/detail?id=30
Once this CL is landed we should consider enabling Crashpad on Linux and removing our Breakpad-related code.
|
https://github.com/electron/electron/issues/27859
|
https://github.com/electron/electron/pull/30278
|
6e43b0bcbf17667e826bb64b551cb16e3f8bd9b9
|
40e76dca0719ee7d725d29898ff995b7cb2781d1
| 2021-02-22T19:09:47Z |
c++
| 2021-08-03T21:01:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,838 |
["docs/api/frameless-window.md", "shell/browser/native_window_views.cc", "shell/browser/native_window_views_win.cc"]
|
isMaximized does not reflect OS window state on windows
|
Changes to isMaximized implementation recently have made reporting of isMaximized worse as they do not use standard operating system calls to determine the window state. Maximizing a window using the windows system menu, or using WIN + Up Arrow will always return isMaximized() false.
### 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:**
Seen in 10.3.2 and 11.2.3
* **Operating System:**
Windows 10
* **Last Known Working Electron version:**
Not 100% sure as different versions have various issues with isMaximized.
### Expected Behavior
Execute
```js
const { app, BrowserWindow } = require('electron');
app.on('ready', function() {
const window = new BrowserWindow({
frame: false,
thickFrame: false,
width: 200,
height: 200
});
window.show();
setInterval(() => {
if (!window.isDestroyed()) {
console.log(window.isMaximized())
}
}, 5000);
});
```
Should return true when the window has been maximized by the operating system
### Actual Behavior
Returns false
### To Reproduce
1. Enter the code above into a file named main.js and execute with
```bash
electron main.js
```
2. maximize the window using "alt+space" menu and select maximize, or use "WIN+Up Arrow" shortcut
### Additional Information
Replacing the implementations on BrowserWindow with calls to native operating system APIs via a NAPI extension fixes this issue for me. I'd love to understand why electron does not use these standard calls as the code is simpler and should be more reliable (perhaps there were legacy issues, if so do they still apply?)
```js
isMaximized() {
return Native.getWindowPlacement(this.getNativeWindowHandle()).showCmd === 3;
},
maximize() {
Native.showWindow(window.getNativeWindowHandle(), 3);
}
```
The NAPI extension is simply a wrapper on the following two windows APIs https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getwindowplacement and https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
|
https://github.com/electron/electron/issues/27838
|
https://github.com/electron/electron/pull/28207
|
82ea8ea68cabdeea9d89a24965fd886d9233181e
|
19d7a6b76168282b9d62947702eb2ca846ccd3d7
| 2021-02-21T10:30:03Z |
c++
| 2021-04-05T23:53:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,837 |
["shell/browser/ui/file_dialog_gtk.cc"]
|
DCHECK failure dialog.showOpenDialog crashes with "Check failed: !g_blocking_disallowed.Get().Get()"
|
### 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:**
* v11.2.3 (Chromium v87.0.4280.141, Node v12.18.3, v8 v8.7.220.31-electron.0)
* **Operating System:**
* Linux
* **Last Known Working Electron version:**
* unknown
### Expected Behavior
A call to `dialog.showOpenDialog({defaultPath: "."});` shows a file picker dialog.
### Actual Behavior
Electron crashes with the following message:
```
[8880:0220/194105.782938:FATAL:thread_restrictions.cc(78)] Check failed: !g_blocking_disallowed.Get().Get(). Function marked as blocking was called from a scope that disallows blocking! If this task is running inside the ThreadPool, it needs to have MayBlock() in its TaskTraits. Otherwise, consider making this blocking work asynchronous or, as a last resort, you may use ScopedAllowBlocking (see its documentation for best practices).
g_blocking_disallowed currently set to true by
```
Backtrace from gdb:
```
#0 __restore_sigs (set=set@entry=0x7fffffff8920) at ./arch/x86_64/syscall_arch.h:40
#1 0x00007ffff7fad50d in raise (sig=sig@entry=6) at src/signal/raise.c:11
#2 0x00007ffff7f83f25 in abort () at src/exit/abort.c:11
#3 0x000055555a60d345 in base::debug::BreakDebugger() () at ../../base/debug/debugger_posix.cc:344
#4 0x000055555a57145e in logging::LogMessage::~LogMessage() (this=0x7fffe3150500)
at ../../base/logging.cc:879
#5 0x000055555a57180e in logging::LogMessage::~LogMessage() (this=0x7fffe3150500)
at ../../base/logging.cc:554
#6 0x000055555a5fb602 in base::internal::AssertBlockingAllowed() ()
at ../../base/threading/thread_restrictions.cc:78
#7 0x000055555a5f38ac in base::ScopedBlockingCall::ScopedBlockingCall(base::Location const&, base::BlockingType) (this=<optimized out>, from_here=..., blocking_type=<optimized out>)
at ../../base/threading/scoped_blocking_call.cc:44
#8 0x000055555a61534e in base::DirectoryExists(base::FilePath const&) (path=...)
at ../../base/files/file_util_posix.cc:488
#9 0x0000555556429185 in file_dialog::(anonymous namespace)::FileChooserDialog::FileChooserDialog(GtkFileChooserAction, file_dialog::DialogSettings const&)
(this=0x7fffe2055e90, action=<optimized out>, settings=...)
at ../../electron/shell/browser/ui/file_dialog_gtk.cc:78
#10 0x0000555556429565 in file_dialog::ShowOpenDialog(file_dialog::DialogSettings const&, gin_helper::Promise<gin_helper::Dictionary>) (settings=..., promise=...)
at ../../electron/shell/browser/ui/file_dialog_gtk.cc:310
#11 0x000055555629f71c in (anonymous namespace)::ShowOpenDialog(file_dialog::DialogSettings const&, gin::Arguments*) (settings=..., args=<optimized out>) at ../../electron/shell/browser/api/electron_api_dialog.cc:66
#12 0x00005555562a1c8b in base::RepeatingCallback<v8::Local<v8::Promise> (file_dialog::DialogSettings const&, gin::Arguments*)>::Run(file_dialog::DialogSettings const&, gin::Arguments*) const &
(this=0x7fffffff9250, args=..., args=0x7fffffff9260) at ../../base/callback.h:135
#13 gin_helper::Invoker<gin_helper::IndicesHolder<0ul, 1ul>, file_dialog::DialogSettings const&, gin::Arguments*>::DispatchToCallback<v8::Local<v8::Promise> >(base::RepeatingCallback<v8::Local<v8::Promise> (file_dialog::DialogSettings const&, gin::Arguments*)>) (this=0x7fffffff9280, callback=...)
at ../../electron/shell/common/gin_helper/function_template.h:220
#14 0x00005555562a1b2f in gin_helper::Dispatcher<v8::Local<v8::Promise> (file_dialog::DialogSettings const&, gin::Arguments*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) (info=<optimized out>)
at ../../electron/shell/common/gin_helper/function_template.h:262
#15 0x00005555578d1c81 in v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo)
(this=0x7fffffff94d8, handler=...) at ../../v8/src/api/api-arguments-inl.h:158
#16 0x00005555578d043c in v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
(isolate=<optimized out>, function=..., new_target=..., fun_data=..., receiver=..., args=...)
at ../../v8/src/builtins/builtins-api.cc:111
#17 0x00005555578ce66e in v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) (args=..., isolate=0x3eca00000000) at ../../v8/src/builtins/builtins-api.cc:141
#18 0x00005555578ce11b in v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*)
(args_length=6, args_object=0x7fffffff96b0, isolate=0x3eca00000000)
at ../../v8/src/builtins/builtins-api.cc:129
#19 0x0000555558b2e1bf in Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit ()
#20 0x00005555588971d8 in Builtins_InterpreterEntryTrampoline ()
```
### To Reproduce
I've compiled Electron 11.2.3 from source and reduced the crash to [this minimal example in a gist](https://gist.github.com/mkaesberger/107ca937bdf4cc94ac01a1f4605e7985). I execute the example with `electron index.js`. The crash only occurs when `defaultPath` parameter is passed _and_ a `BrowserWindow` exists. Especially if no `BrowserWindow` was created then the dialog opens and does not crash Electron.
|
https://github.com/electron/electron/issues/27837
|
https://github.com/electron/electron/pull/28478
|
e2f49edf8320be9be44c1e57dc6d6729462e4c15
|
3ed8da093148df2f03e2a1020d2bbebc99a58ac4
| 2021-02-21T04:15:33Z |
c++
| 2021-04-06T06:54:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,805 |
["lib/browser/api/net.ts"]
|
File downloads using electron.net requests piped to writable streams silently stops
|
### 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:**
* 12.0.0-beta.26
* **Operating System:**
* Windows 10 (2004)
* **Last Known Working Electron version:**
* 11.2.3
### Expected Behavior
When piping a file response stream initiated by an `electron.net.request` to a writable file stream, I expect it to successfully download and save the file using a stable internet connection.
### Actual Behavior
The download stops randomly and most often never completes.
### To Reproduce
The following gist includes an example of how the issue can be reproduced:
https://gist.github.com/c940aa29e51685fe0a7fe5b68ca247ad
### Additional Information
I've tried to find the root cause for this intermittent issue but without success so far. It seems to be a combination of the buffering inside the node Stream `pipe` method and the `electron.net.request`. Adding a couple of tests made that might give some more insight:
- By skipping buffering and using something like `response.on('data', (chunk: Buffer) => fileStream.write(chunk))` directly I cannot reproduce the issue.
- By increasing the highWaterMark (>512kb) for the writable target stream the issue happens more rarely.
- By adding an extra delay after the app ready event the issue happens more rarely.
- By using an external library (`got`) not using electron.net for making the request I'm able to pipe the response to the target stream without any issues.
- By using another session than the `defaultSession` the issue happens more rarely
|
https://github.com/electron/electron/issues/27805
|
https://github.com/electron/electron/pull/27898
|
d57fd6cef0132b0260b908e48e4264a326a2ec00
|
a9b25dda853b87a1d7bd170cce2dd8eb7df63c39
| 2021-02-18T21:26:12Z |
c++
| 2021-02-26T21:18:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,761 |
["docs/api/power-monitor.md"]
|
PowerMonitor incorrectly omits Linux for suspend, resume events
|
https://www.electronjs.org/docs/api/power-monitor#powermonitor
Previously used to be 'suspend, resume' events also for linux.
Why you remove it?
Are there alternative solutions?
I need to after sleep mode "resume" event returns sleep time.
And now if update electron, it will not work.
|
https://github.com/electron/electron/issues/27761
|
https://github.com/electron/electron/pull/27958
|
ca75bca6677ff08549424cb97654e160f4cfa195
|
d92bab0e29694ac9554b87fa29b1073b0dfe1d1f
| 2021-02-17T16:36:39Z |
c++
| 2021-03-05T01:11:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,722 |
["docs/api/web-contents.md", "shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_web_contents.cc", "spec-main/api-web-contents-spec.ts"]
|
will-prevent-unload doesn't fire for BrowserView
|
### 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:** 11.2.1
* **Operating System:** Windows 10
### Expected Behavior
I expect that `will-prevent-unload` will fire when closing a BrowserView with a page that cancels the `beforeunload` event
### Actual Behavior
`will-prevent-unload` never fires. It only fires for BrowserWindows.
### To Reproduce
1. start main.js
2. in the devtools, execute: `onbeforeunload = (e) => { e.preventDefault(); e.returnValue = false; }`
3. Close the window.
4. The window does close, but the `will-prevent-unload` handler never executes
```
const { app, BrowserWindow, BrowserView } = require('electron')
async function createWindow () {
const win = new BrowserWindow();
const view = new BrowserView();
view.setBounds({x: 0, y: 0, width: 600, height: 600});
win.setBrowserView(view);
await view.webContents.loadURL('https://google.com')
view.webContents.openDevTools();
view.webContents.on("will-prevent-unload", (e) => {
e.preventDefault();
});
}
app.whenReady().then(createWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
});
```
Related (if not a dupe) of [this issue](https://github.com/electron/electron/issues/19194)
|
https://github.com/electron/electron/issues/27722
|
https://github.com/electron/electron/pull/28382
|
e454bded3c978e792fd6c8fd647e4214719e8191
|
7d04f729d84f2da3aac1daf25b55a5070d308313
| 2021-02-12T18:55:41Z |
c++
| 2021-04-07T07:16:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 27,719 |
["patches/chromium/.patches", "patches/chromium/webview_fullscreen.patch", "shell/browser/api/electron_api_web_contents.cc", "shell/browser/api/electron_api_web_contents.h", "shell/browser/web_view_manager.h", "spec-main/fixtures/webview/fullscreen/frame.html", "spec-main/fixtures/webview/fullscreen/main.html", "spec-main/webview-spec.ts"]
|
iframe inside a webview doesn't maximize on requestFullScreen
|
<!-- 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:**
* 12.0.0-beta.21, though as far back as 5.0.13
* **Operating System:**
* Windows 10
* **Last Known Working Electron version:**
* N/A
### Expected Behavior
1. Put an iframe inside of a webview
2. Call requestFullScreen on the inner iframe
3. Expect the iframe to expand and take up the entire window
### Actual Behavior
For step 3, neither the iframe nor the webview expand fully. Only the window itself becomes full-screen.
### To Reproduce
Check the "iframe inside webview" case of this minimal repro:
[fiddle.zip](https://github.com/electron/electron/files/5968821/fiddle.zip)
<!--
Your best chance of getting this bug looked at quickly is to provide an example.
-->
<!--
For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report.
-->
<!--
If Fiddle is insufficient to produce an example, please provide an example 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
On an earlier version of the fiddle attached above:
<!-- If applicable, add screenshots to help explain your problem. -->

|
https://github.com/electron/electron/issues/27719
|
https://github.com/electron/electron/pull/29952
|
95a9ff952c231eca2f04e7f444b2e1818b4f65a0
|
6eff9231b84707b9939103019789b48ac396b307
| 2021-02-11T22:50:03Z |
c++
| 2021-07-02T00:56:29Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.