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
| 16,699 |
["BUILD.gn", "atom/browser/api/atom_api_system_preferences.cc", "atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_mac.mm", "atom/browser/mac/atom_application.h", "docs/api/system-preferences.md"]
|
Touch ID support for macOS
|
**Is your feature request related to a problem? Please describe.**
I am building an Application that requires frequent password input. It would be awesome, to have native Touch ID support on macOS.
**Describe the solution you'd like**
An easy solution to show the Touch ID authentication dialog on macOS.
**Describe alternatives you've considered**
Writing my own Node.js add-on, but I couldn't wrap my head around it
**Additional context**
Add any other context or screenshots about the feature request here.
<img width="1085" alt="touch bar bild 2019-02-02 um 09 58 04" src="https://user-images.githubusercontent.com/6825153/52162266-71285600-26d1-11e9-80a7-5f85cc50bf90.png">
|
https://github.com/electron/electron/issues/16699
|
https://github.com/electron/electron/pull/16707
|
228805353f04c7c36f077b15117b52ab76fb61f0
|
46a24c82ff115221d17f158911bb41f53a01c1e1
| 2019-02-02T09:01:29Z |
c++
| 2019-02-14T02:36:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,664 |
["atom/browser/ui/file_dialog_mac.mm"]
|
securityScopedBookmarks do not work properly (showOpenDialog())
|
* Output of `node_modules/.bin/electron --version`: v4.0.2
* Operating System (Platform and Version): OSX 10.14.1
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
```
dialog.showOpenDialog({
...
securityScopedBookmarks: <true> or <false>
})
```
MAS build
<ul>
<li><code>securityScopedBookmarks: false ==> bookmarks === []</code> </li>
<li><code>securityScopedBookmarks: true</code> </li>
<ul>
<li>Success: <code>bookmarks === ["SLKDJFLKSDJLSJDLFJSLKJFLS..SJLD"]</code> </li>
<li>Error: <code>bookmarks === ['']</code></li>
</ul>
</ul>
**Actual behavior**
I get all sorts of unexpected behaviors. Note all of these are THE EXACT SAME CALLS.
* On my development machine
* If I do a showOpenDialog() via a renderer window
* At first, it returns `[]`
* Then I try it via a main process
* Then I try again, and I get bookmarks back
* In main window
* I always get `bookmarks === []`
* For `securityScopedBookmarks: true` this is wrong! I should get `bookmarks === ['validbookmark']` or `bookmarks === [""]` (ie: empty / error)
* In renderer, after trying it in main, I get valid bookmarks returned
* EVEN IF I SET `securityScopedBookmarks: false`
* On a clean virtual machine, I always get `bookmarks === []`
Here is an example of the output of my test - I am getting a bookmark returned even when securityScopedBookmars is set to false!
```
ShowOpenDialog Results:
securityScopedBookmarks setting: false
isMas: true
filePaths: |/Users|
bookmarks: |Ym9va/wBAAAAAAQQMAAAADhIsl+6AwP9UEecjjev0G5JVbcbiOTvz+X/GU0cUJ3vHAEAAAQAAAADAwAAAAgAKAUAAAABAQAAVXNlcnMAAAAEAAAAAQYAABAAAAAIAAAABAMAACrJCQAAAAAABAAAAAEGAAAsAAAACAAAAAAEAABBvxq0KQAAABgAAAABAgAAAgAAAAAAAAAPAAAAAAAAAAAAAAAAAAAACAAAAAEJAABmaWxlOi8vLwwAAAABAQAATWFjaW50b3NoIEhECAAAAAQDAAAA4AHj6AAAAAgAAAAABAAAQb/byy9eqf0kAAAAAQEAADIwODk1QzIxLUVFRDItNEU3MS1BNzQ2LTBFMUVFMzgwMjFBQhgAAAABAgAAgQAAAAEAAADvEwAAAQAAAAAAAAAAAAAAAQAAAAEBAAAvAAAAAAAAAAEFAACoAAAA/v///wEAAAAAAAAADQAAAAQQAAAgAAAAAAAAAAUQAAA8AAAAAAAAABAQAABYAAAAAAAAAEAQAABIAAAAAAAAAAIgAAAIAQAAAAAAAAUgAAB4AAAAAAAAABAgAACIAAAAAAAAABEgAAC8AAAAAAAAABIgAACcAAAAAAAAABMgAACsAAAAAAAAACAgAADoAAAAAAAAADAgAAAUAQAAAAAAABDQAAAEAAAAAAAAAA==|
typeof bookmarks: object
isArray: true
length: 1
bookmarks ==== [""]: false
```
And here it is in a main process call (same app with same entitlements, provisioning profile, etc.). This one SHOULD succeed.
```
ShowOpenDialog Results:
securityScopedBookmarks setting: true
isMas: true
filePaths: |/Users|
bookmarks: ||
typeof bookmarks: object
isArray: true
length: 0
bookmarks ==== [""]: false
```
**To Reproduce**
Repo: https://github.com/rr326/ElectronSecurityScopedBookmarkTest
Instructions on the README
**Additional Information**
I have done EXTENSIVE testing to narrow this down. I assumed it was codesiging, or identities, or a provisioning profile, or even my virtual machine. It isn't.
For someone with a Mac setup, [this repo](https://github.com/rr326/ElectronSecurityScopedBookmarkTest) will make it easy to test.
Also, looking at the code, the results I am seeing should not happen. It shouldn't even be possible! But I don't know C++ and also can't get Electron to build, so I'm at a dead end. The only thing I can imagine is somehow the settings to `showOpenDialog()` are getting overwritten or changed somehow.
See the code here:
[atom/browser/ui/file_dialog_mac.mm](https://github.com/electron/electron/blob/c8c1be7ae546da4679a22b6872f023c9786df663/atom/browser/ui/file_dialog_mac.mm#L287-L313). Particularly [OpenDialogComplettion](https://github.com/electron/electron/blob/c8c1be7ae546da4679a22b6872f023c9786df663/atom/browser/ui/file_dialog_mac.mm#L287-L313) and [GetBookMarkDataFromNSURL](https://github.com/electron/electron/blob/c8c1be7ae546da4679a22b6872f023c9786df663/atom/browser/ui/file_dialog_mac.mm#L228-L251)
One strange thing - there are TWO `ShowOpenDialog()` in this file. Is that ok?
|
https://github.com/electron/electron/issues/16664
|
https://github.com/electron/electron/pull/17126
|
5a99ea4c4694a32618dd3e9b24e3b43900e81d12
|
42aa375497543bf606fc20879c150489bbabf5c9
| 2019-01-31T22:17:00Z |
c++
| 2019-02-27T08:14:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,660 |
["docs/api/web-request.md"]
|
Typescript error TS2339: Property 'referrer' does not exist on type 'OnCompletedDetails'.
|
* Output of `node_modules/.bin/electron --version`: v4.0.3
* Operating System (Platform and Version): OS X v10.13.6
**Expected Behavior**
in `webRequest.onCompleted()` handler, we are passed a `details` object of type `OnCompletedDetails` which contains a `referrer` attribute.
**Actual behavior**
Both the documentation for `weebRequest` and type definition of `OnCompletedDetails` omit the `referrer` attribute, but it is there.
I was initially concerned about this, because I'm updating an existing electron 2.x app to electron 4.x. The app had a webContents `did-get-response-details` event handler, which has been removed in electron 4.x, and the handler requires the `referrer` attribute to work.
However, when I added a hander for `webRequest.onCompleted` and inspected the `details` object I was happy to find that it does indeed set the `referrer` attribute. The only issue now is that the typescript compiler complains when I access it:
```
error TS2339: Property 'referrer' does not exist on type 'OnCompletedDetails'.
```
As of now, I'm just casting it as `any` to get around the compile error.
**To Reproduce**
I don't think full repo is necessary on this one. Just add this in any electron app (main process) and compile with typescript (using typescript v3.2.4 in this case)
```
import {session} from 'electron'
session.defaultSession.onCompleted((details) => {
console.log('onCompleted:', details.referrer)
})
```
**Solution**
The type definition for `OnCompletedDetails` just needs an additional line.
electron.d.ts:
```
interface OnCompletedDetails {
...
referrer: string;
}
|
https://github.com/electron/electron/issues/16660
|
https://github.com/electron/electron/pull/16661
|
31c7ed9b8c9c4444ee27fec4564ec6d4d896444a
|
bae09643c1a00389ad3eb33ffd1a0c24cd44165d
| 2019-01-31T21:10:56Z |
c++
| 2019-02-01T15:54:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,645 |
["docs/api/menu.md", "lib/browser/api/menu.js", "spec/api-menu-spec.js"]
|
Accept `MenuItem` instances in `buildFromTemplate`
|
**Is your feature request related to a problem? Please describe.**
I sometimes make `MenuItem` instances that I reuse in various parts of an app. Unfortunately, `Menu.buildFromTemplate` only accept plain objects (`MenuItemConstructorOptions` in the TS definition file) as menu items, so I can't reuse those `MenuItem` instances there directly.
**Describe the solution you'd like**
I would like it to be possible to use `MenuItem` where currently `MenuItemConstructorOptions` is accepted.
The `submenu` property already accepts both an array of plain objects and a `Menu`. So it makes sense to also support `MenuItem` instances.
In TypeScript terms, it would mean:
```diff
-submenu?: (MenuItemConstructorOptions[]) | (Menu);
+submenu?: (Array<MenuItemConstructorOptions | MenuItem>) | (Menu);
```
```diff
-static buildFromTemplate(template: MenuItemConstructorOptions[]): Menu;
+static buildFromTemplate(template: Array<MenuItemConstructorOptions | MenuItem>): Menu;
```
**Describe alternatives you've considered**
None.
**Additional context**
No.
|
https://github.com/electron/electron/issues/16645
|
https://github.com/electron/electron/pull/16697
|
4211a9c69fc40caca91bcbee46e90106d8d0ea7c
|
858781ba83d15ea1e4592a7cfa9cf33def4c4a58
| 2019-01-31T06:45:12Z |
c++
| 2019-02-06T18:04:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,632 |
["atom/browser/atom_browser_main_parts.cc", "atom/browser/browser.cc", "atom/browser/browser.h", "spec/api-app-spec.js", "spec/api-browser-view-spec.js", "spec/api-web-contents-spec.js", "spec/api-web-contents-view-spec.js"]
|
renable failing tests on Windows 32 bit
|
As part of #16610 3766bf6369e42149ffe29f54103090f2673c0050 disabled tests for 32 bit Windows because they are holding up CI on master. These tests should be fixed and renabled.
|
https://github.com/electron/electron/issues/16632
|
https://github.com/electron/electron/pull/16671
|
ab503c7e4349315f600ac3c49b43bab6f88b6f54
|
31c7ed9b8c9c4444ee27fec4564ec6d4d896444a
| 2019-01-30T22:45:33Z |
c++
| 2019-02-01T15:21:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,631 |
["BUILD.gn", "atom/app/atom_main_delegate.cc", "build/zip.py"]
|
[email protected] fails with error: No usable sandbox!
|
electron: 5.0.0-beta.1
platform: linux x64
**Actual behavior**
https://github.com/electron/electron-quick-start app fails to start with the following error:
```
[3937:0131/003107.790938:FATAL:zygote_host_impl_linux.cc(116)] No usable sandbox! Update your kernel or see https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.
```
**To Reproduce**
- `git clone https://github.com/electron/electron-quick-start.git`
- `cd electron-quick-start`
- `npm install`
- `npm add --only=dev [email protected]`
- any of the following commands fail:
- `npm start`
- `node_modules/.bin/electron --version`
**Additional Information**
Worth to mention that event just `node_modules/.bin/electron --version` execution fails with the same error.
CC @nornagon
|
https://github.com/electron/electron/issues/16631
|
https://github.com/electron/electron/pull/17269
|
890f38e8fa46edb16a42e02d0f219d274a6a01ea
|
652e232813d45280eff97524ed56688d98fc3b76
| 2019-01-30T21:44:02Z |
c++
| 2019-03-08T21:10:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,513 |
["atom/browser/atom_browser_client.cc", "atom/browser/atom_browser_client.h"]
|
getDisplayMedia with Chrome 72 throwing Not Allowed
|
* Output of `node_modules/.bin/electron --version`: v5.0.0-nightly.20190107
* Operating System (Platform and Version): macOS Mojave 10.14.2 (18C54)
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): never
**Expected Behavior**
Using navigator.mediaDevices.getDisplayMedia({ video: true }), a native screen picker should appear.
**Actual behavior**
The following error is thrown: NotAllowedError: Permission denied
**Screenshots**
Expected dialog

|
https://github.com/electron/electron/issues/16513
|
https://github.com/electron/electron/pull/16763
|
b7afec07433b79eb942ae8d6ded10c61dcdd21bb
|
ff461d9d263813774eba658db702ee4b907560c0
| 2019-01-23T17:36:12Z |
c++
| 2019-02-06T05:25:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,508 |
["atom/browser/atom_browser_client.cc", "atom/browser/atom_browser_client.h"]
|
Fix CHECK failure introduced by chromium feature navigator.webkitGetUserMedia spec
|
```
[4785:0123/172535.504545:FATAL:video_capture_device_factory_mac.mm(29)] Check failed: mode != NULL. The MacOS video capture code must be run on a CFRunLoop-enabled thread
0 Electron Framework 0x000000011a8f6b9f base::debug::StackTrace::StackTrace(unsigned long) + 31
1 Electron Framework 0x000000011a7e1664 logging::LogMessage::~LogMessage() + 228
2 Electron Framework 0x000000011c87be82 (anonymous namespace)::EnsureRunsOnCFRunLoopEnabledThread() + 130
3 Electron Framework 0x000000011c87c0f8 media::VideoCaptureDeviceFactoryMac::GetDeviceDescriptors(std::__1::vector<media::VideoCaptureDeviceDescriptor, std::__1::allocator<media::VideoCaptureDeviceDescriptor> >*) + 120
4 Electron Framework 0x000000011c8713cc media::VideoCaptureSystemImpl::ProcessDeviceInfoRequest() + 76
5 Electron Framework 0x000000011c87136b media::VideoCaptureSystemImpl::GetDeviceInfosAsync(base::OnceCallback<void (std::__1::vector<media::VideoCaptureDeviceInfo, std::__1::allocator<media::VideoCaptureDeviceInfo> > const&)>) + 171
6 Electron Framework 0x00000001187b5fb2 video_capture::DeviceFactoryMediaToMojoAdapter::GetDeviceInfos(base::OnceCallback<void (std::__1::vector<media::VideoCaptureDeviceInfo, std::__1::allocator<media::VideoCaptureDeviceInfo> > const&)>) + 146
7 Electron Framework 0x00000001187c36cd video_capture::VirtualDeviceEnabledDeviceFactory::GetDeviceInfos(base::OnceCallback<void (std::__1::vector<media::VideoCaptureDeviceInfo, std::__1::allocator<media::VideoCaptureDeviceInfo> > const&)>) + 285
8 Electron Framework 0x0000000117b2afc7 video_capture::mojom::DeviceFactoryStubDispatch::AcceptWithResponder(video_capture::mojom::DeviceFactory*, mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiverWithStatus, std::__1::default_delete<mojo::MessageReceiverWithStatus> >) + 439
9 Electron Framework 0x00000001187b9536 video_capture::mojom::DeviceFactoryStub<mojo::RawPtrImplRefTraits<video_capture::mojom::DeviceFactory> >::AcceptWithResponder(mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiverWithStatus, std::__1::default_delete<mojo::MessageReceiverWithStatus> >) + 38
10 Electron Framework 0x000000011a795b77 mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message*) + 935
11 Electron Framework 0x000000011a795456 mojo::FilterChain::Accept(mojo::Message*) + 150
12 Electron Framework 0x000000011a796f85 mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message*) + 117
13 Electron Framework 0x000000011a79d61b mojo::internal::MultiplexRouter::ProcessIncomingMessage(mojo::internal::MultiplexRouter::MessageWrapper*, mojo::internal::MultiplexRouter::ClientCallBehavior, base::SequencedTaskRunner*) + 1451
14 Electron Framework 0x000000011a79ca89 mojo::internal::MultiplexRouter::Accept(mojo::Message*) + 377
15 Electron Framework 0x000000011a795456 mojo::FilterChain::Accept(mojo::Message*) + 150
16 Electron Framework 0x000000011a7903a0 mojo::Connector::ReadSingleMessage(unsigned int*) + 576
17 Electron Framework 0x000000011a790f31 mojo::Connector::ReadAllAvailableMessages() + 97
18 Electron Framework 0x000000011a790de9 mojo::Connector::OnHandleReadyInternal(unsigned int) + 137
19 Electron Framework 0x0000000116ec0d47 mojo::SimpleWatcher::DiscardReadyState(base::RepeatingCallback<void (unsigned int)> const&, unsigned int, mojo::HandleSignalsState const&) + 103
20 Electron Framework 0x000000011a93565d mojo::SimpleWatcher::OnHandleReady(int, unsigned int, mojo::HandleSignalsState const&) + 365
21 Electron Framework 0x000000011a935b81 void base::internal::Invoker<base::internal::BindState<void (mojo::SimpleWatcher::*)(int, unsigned int, mojo::HandleSignalsState const&), base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState>, void ()>::RunImpl<void (mojo::SimpleWatcher::* const&)(int, unsigned int, mojo::HandleSignalsState const&), std::__1::tuple<base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> const&, 0ul, 1ul, 2ul, 3ul>(void (mojo::SimpleWatcher::* const&&&)(int, unsigned int, mojo::HandleSignalsState const&), std::__1::tuple<base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> const&&&, std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul>) + 193
22 Electron Framework 0x000000011a7c5fe8 base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 344
23 Electron Framework 0x000000011a8035a0 base::MessageLoopImpl::RunTask(base::PendingTask*) + 272
24 Electron Framework 0x000000011a803c13 base::MessageLoopImpl::DoWork() + 387
25 Electron Framework 0x000000011a804af9 base::MessagePumpDefault::Run(base::MessagePump::Delegate*) + 201
26 Electron Framework 0x000000011a803148 base::MessageLoopImpl::Run(bool) + 136
27 Electron Framework 0x000000011a83d319 base::RunLoop::Run() + 249
28 Electron Framework 0x000000011a2e3262 content::UtilityMain(content::MainFunctionParams const&) + 578
29 Electron Framework 0x000000011a32efc3 content::ContentMainRunnerImpl::Run(bool) + 435
30 Electron Framework 0x000000011cbfde2e service_manager::Main(service_manager::MainParams const&) + 3166
31 Electron Framework 0x000000011a32e0c4 content::ContentMain(content::ContentMainParams const&) + 68
32 Electron Framework 0x0000000116ae7f54 AtomMain + 84
33 Electron Helper 0x0000000108aef765 main + 357
34 libdyld.dylib 0x00007fff7d508ed9 start + 1
```
|
https://github.com/electron/electron/issues/16508
|
https://github.com/electron/electron/pull/16763
|
b7afec07433b79eb942ae8d6ded10c61dcdd21bb
|
ff461d9d263813774eba658db702ee4b907560c0
| 2019-01-23T11:56:45Z |
c++
| 2019-02-06T05:25:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,502 |
["atom/browser/osr/osr_render_widget_host_view.cc", "atom/browser/osr/osr_render_widget_host_view.h", "atom/browser/osr/osr_render_widget_host_view_mac.mm", "atom/browser/osr/osr_web_contents_view.cc", "atom/browser/osr/osr_web_contents_view.h", "buildflags/buildflags.gni"]
|
Enable OSR on master and 5.x
|
Got disabled in chromium 71 upgrade https://github.com/electron/electron/commit/798b2a3ffd55c477af6258f0afb71000c9f8ecde
/cc @brenca @codebytere
|
https://github.com/electron/electron/issues/16502
|
https://github.com/electron/electron/pull/16517
|
6e131f2121778c9d2a8f81293300a3fc9c4d7a62
|
c7677b23e6df4ea8244ed82ecac18a777caace5a
| 2019-01-23T09:21:34Z |
c++
| 2019-01-30T17:33:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,477 |
["patches/common/boringssl/.patches", "patches/common/boringssl/handle_pub_key_null_in_ec_key_set_public_key.patch", "spec/node-spec.js"]
|
Crash while doing setPrivateKey on ECDH
|
* Output of `node_modules/.bin/electron --version`: v4.0.1
* Operating System (Platform and Version): Windows 10 1809 (64 bit)
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): v3.1.1
**Expected Behavior**
Shouldn't crash :)
**Actual behavior**
Electron crashes (half of it, I mean the process is still going on at almost 100% CPU, in background)
**To Reproduce**
```
const dh = crypto.createECDH('prime256v1');
console.log("step1");
dh.setPrivateKey(privateKey, 'base64');
console.log("step2");
```
**Additional Information**
It works with electron 3.1.1, but not 4.0.1
Maybe an update of Node could fix the issue
|
https://github.com/electron/electron/issues/16477
|
https://github.com/electron/electron/pull/17219
|
5afb7dc715118b15c3375d344e781c3c65b6de9e
|
34fb6c2f35ba30a1eaa99d845e5209909a6178c6
| 2019-01-21T21:53:47Z |
c++
| 2019-03-08T18:50:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,475 |
["atom/renderer/api/atom_api_web_frame.cc", "docs/api/web-contents.md", "docs/api/web-frame.md", "docs/api/webview-tag.md", "lib/browser/api/web-contents.js", "lib/common/web-view-methods.js", "spec/api-web-contents-spec.js", "spec/webview-spec.js"]
|
Remove injected stylesheets
|
**Is your feature request related to a problem? Please describe.**
After webContents.insertCSS() I cant find a way to remove injected stylesheet.
**Describe the solution you'd like**
insert: webContents.insertCSS('style-id', 'body { ... }') or .inserCSS('body { ... })'
remove: webContents.removeCSS('style-id') or .removeCSS() to remove all injected stylesheets
|
https://github.com/electron/electron/issues/16475
|
https://github.com/electron/electron/pull/16579
|
deebde66f92d92aa502897a87911e24cf0d311d0
|
5a08522b9812bf9edb468fa71d8d7714f364762b
| 2019-01-21T12:44:29Z |
c++
| 2019-06-17T15:39:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,446 |
["package.json", "yarn.lock"]
|
Widevine not working on Electron 4.0.1
|
I need Widevine on electron app
I copied the widevinecdm.dll from Google Chrome. The CDM minimum version support is 68.0.3430.0
Widevine version 4.10.1224.7
On main.js
`app.commandLine.appendSwitch('widevine-cdm-path', path.join(__dirname, 'widevinecdm.dll'));
app.commandLine.appendSwitch('widevine-cdm-version', 4.10.1224.7);`
and then
`win = new BrowserWindow({
width:1000,
height:800,
webPreferences: { plugins: true}
});
win.loadURL("http://www.dash-player.com/demo/drm-test-area/")`
But this page shows NO Drm Support
|
https://github.com/electron/electron/issues/16446
|
https://github.com/electron/electron/pull/37583
|
caa5989eedd44625dad508c9665b8032df01e235
|
94f701edb8212d2bc5103bddc8077c5f5bcd2f6c
| 2019-01-18T13:54:14Z |
c++
| 2023-03-20T17:33:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,417 |
["shell/browser/native_window_mac.mm"]
|
Vibrancy should not default to active state
|
* Output of `node_modules/.bin/electron --version`: v4.0.1
* Operating System (Platform and Version): macOS 10.14.2
**Expected Behavior**
The default behavior of native macOS apps with vibrancy is to disable the vibrancy when the window is inactive. This makes it easier for the user to see the active app.
**Actual behavior**
Electron apps have the vibrancy forced to always be active since Electron manually sets the state to [`NSVisualEffectStateActive`](https://developer.apple.com/documentation/appkit/nsvisualeffectstate/nsvisualeffectstateactive?language=objc): https://github.com/electron/electron/blob/52fe92d02ef94712fc7b19b3f03d3363cfa71a4d/atom/browser/native_window_mac.mm#L1272
Electron should instead default to `NSVisualEffectStateFollowsWindowActiveState`, which is the default.
Electron could let the user optionally override this behavior through `BrowserWindow({vibrancyState: 'active'})` and `win.setVibrancy('sidebar', {state: 'active'})`.
**To Reproduce**
Nothing to reproduce. The docs are clear on this one.
**Additional Information**
More info here: https://github.com/sindresorhus/caprine/issues/701
|
https://github.com/electron/electron/issues/16417
|
https://github.com/electron/electron/pull/24471
|
b02748e6076bd9f3802b7a4af1532d7e663381f5
|
f0a0e10bd1bff06a9baf7c2c7c1504dbd3683f65
| 2019-01-16T08:36:13Z |
c++
| 2020-07-13T19:40:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,394 |
["lib/browser/chrome-extension.js", "lib/renderer/chrome-api.js"]
|
chrome.runtime.onmessage.addListener::sendResponse does not work
|
* Output of `node_modules/.bin/electron --version`:
* Operating System (Platform and Version):
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
`chrome.runtime.onmessage.addListener` callback (`(message, sender, sendResponse) => void`)'s `sendResponse` callback fn should deliver response to caller.
**Actual behavior**
It does not.
**To Reproduce**
Clone `https://github.com/kwonoj/electron-quick-start/pull/4`
1. `npm start`
2. open `chrome://inspect` on chrome browser, inspect `chrome-extension://test-extension/_generated_background_page.html`
background script received initial message from content script, and content script does not receives response from it.
**Screenshots**
**Electron 4.0.1**

**Chrome**

**Additional Information**
This is technically dupe of https://github.com/electron/electron/issues/11341, while it is just closed even though it's electron specific. Feel free to close this one and reopen existing or either.
|
https://github.com/electron/electron/issues/16394
|
https://github.com/electron/electron/pull/16945
|
8497bb13277d17a3eeb11a244d86d6827aacdcf9
|
84ef9cae6cf88ace34f8d823f6a09a7c5a8880ca
| 2019-01-14T18:10:49Z |
c++
| 2019-02-14T16:07:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,391 |
["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"]
|
Vibrancy Support for Windows
|
**Is your feature request related to a problem? Please describe.**
MacOS has support for the `vibrancy` field, there's been quite a few Windows versions, yet there's still no official support in Electron.
**Describe the solution you'd like**
An official Windows solution to vibrancy, using acrylic or any other background blurring method.
**Describe alternatives you've considered**
https://github.com/arkenthera/electron-vibrancy
https://github.com/23phy/electron-acrylic
https://github.com/sylveon/windows-blurbehind
All require a lower version of Electron than 4.0, and/or to be building on Windows.
|
https://github.com/electron/electron/issues/16391
|
https://github.com/electron/electron/pull/38163
|
c2d7164021011df7c31bbc09f824311535323793
|
e19500fa03bf08af1466dac5dbca39f1b4281d9c
| 2019-01-14T13:32:33Z |
c++
| 2023-05-15T20:31:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,303 |
["lib/browser/api/menu-item-roles.js"]
|
v4: MenuItems with roles default registerAccelerator to false, breaking all default shortcuts
|
* Output of `node_modules/.bin/electron --version`: v4.0.1
* Operating System (Platform and Version): Ubuntu 18.04
**Expected Behavior**
The default keyboard shortcuts for menu item roles should be registered (except in special cases where they're handled elsewhere - cut/copy/etc).
**Actual behavior**
As of v4, the keyboard shortcuts for any menu item with a role are not registered by default.
**To Reproduce**
In a v4 electron app, adding the below menu item will show a Ctrl/Cmd+R accelerator in the menu, but won't actually register it, so it won't work:
```
{
role: 'reload'
}
```
this menu item does work:
```
{
role: 'reload',
registerAccelerator: true
}
```
I think this is caused by https://github.com/electron/electron/pull/15723, specifically https://github.com/electron/electron/blob/a1a431eb8735ed677b2ba980ef77549230c6363b/lib/browser/api/menu-item-roles.js#L256-L258
I.e. `registerAccelerator` defaults to `true` only if there's no role for the menu item. If there is a role set, it instead uses the `registerAccelerator` setting for that role, but for almost all roles this is `undefined`.
|
https://github.com/electron/electron/issues/16303
|
https://github.com/electron/electron/pull/16309
|
30c670bd83170b25120d554fb2de5bd5bb2eec58
|
b71a5a5955520fac7c54141f975a6c226cd1cb1e
| 2019-01-07T14:43:08Z |
c++
| 2019-01-08T00:01:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,300 |
["atom/browser/common_web_contents_delegate.cc"]
|
macOS html file picker dialog behaviour confusing
|
* Output of `node_modules/.bin/electron --version`: 4.0.1
* Operating System (Platform and Version): macOS Mojave
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.16
**Expected Behavior**
When we open the file picker using the html input file tag, we expect to see a modal or a dialog that is always on top unless closed (like in Chrome).
**Actual behavior**
In the 3.x & 4.x versions of Electron, the dialog that appears for file picking using html input file tag is a dialog that behaves more like a regular window. Problem with this is that if the window is put to the background and we focus on our main app window, then try file selection again, the existing window file picker window doesn't come to the foreground either or a new dialog is created. This is very confusing for a user who assumes that the file picking html button is not working.
Please see video below to understand better.
**To Reproduce**
```sh
$ git clone $https://github.com/VishwasShashidhar/electron-quick-start -b file-picker
$ npm install
$ npm start || electron .
```
**Screenshots**

**Additional Information**
This seems to be a behavioural change from https://github.com/electron/electron/commit/c50a460ce68d4b1e938e898c1b6a4d0db31164b9#diff-68a7264c657f5cfda99d3cdd12649277
I've also tested by reversing the above change and things work as expected.
|
https://github.com/electron/electron/issues/16300
|
https://github.com/electron/electron/pull/16329
|
f72d5a4184638af8578e640eb41e461c4bd84e54
|
744f737cba67cd6f59ea598aa00795fa4375a929
| 2019-01-07T13:09:45Z |
c++
| 2019-01-09T17:55:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,264 |
["docs/api/browser-window.md", "yarn.lock"]
|
Guidance on fixing TypeScript type-definitions
|
* Output of `node_modules/.bin/electron --version`: v1.8.8
* Operating System (Platform and Version): macOS
**Expected Behavior**
When reading up the docs for [BrowserWindow.setBounds](https://electronjs.org/docs/api/browser-window#winsetboundsbounds-animate) I expected the function to take a `Partial<Rectangle>` as first argument
**Actual behavior**
but instead the generated type definitions are:
```typescript
/**
* Resizes and moves the window to the supplied bounds
*/
setBounds(bounds: Rectangle, animate?: boolean): void;
```
Now what I'd be really looking for is some minor instruction on how to contribute such fixes by myself. Looking through the [package.json of electron](https://github.com/electron/electron/blob/master/package.json#L57) I noticed the use of a [custom dependency](https://github.com/electron/electron-typescript-definitions) to generate the definitions out of a previously generated api.json from this [module](electron-docs-linter). Now the later kinda sounds like the fix needs to be done inside the documentation. So after digging around [the docs for the BrowserWindow](https://raw.githubusercontent.com/electron/electron/5ae3d1a1b2dbe11d3091d366467591d9cb21fdfe/docs/api/browser-window.md) show this content to define the method:
```
#### `win.setBounds(bounds[, animate])`
* `bounds` [Rectangle](structures/rectangle.md)
* `animate` Boolean (optional) _macOS_
```
Am I on the right track with my assumptions? If so how would I mark the Rectangle of the bounds property to be Partial. Are there any docs to see all the available constructs to be used as annotation or which features of TS are supported (think of Unions, Conditional Types etc.)
|
https://github.com/electron/electron/issues/16264
|
https://github.com/electron/electron/pull/19416
|
bb90a36701e6490238ab85a471eb2f0a4eb49d3a
|
b7f554f1dc220b92b7e12712b9cf6119c28a4167
| 2019-01-04T07:44:18Z |
c++
| 2019-07-24T06:51:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,256 |
["atom/browser/api/atom_api_app.cc", "atom/browser/api/atom_api_app.h", "docs/api/app.md"]
|
app quits immediately if setAccessibilitySupportEnabled is called
|
* Output of `node_modules/.bin/electron --version`: v4.0.0
* Operating System (Platform and Version): macOS 10.14.2
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.7
### Expected behavior
I should be able to call `app.setAccessibilitySupportEnabled(true)` during initialization, and the application should start and stay open.
### Actual behavior
The application starts and exits immediately if `app.setAccessibilitySupportEnabled(true)` is called during initialization. Same for passing in `false`.
### How to reproduce
Here is a simple project that shows this error. The application behaves as expected (does not exit immediately) when this line is commented out:
https://github.com/marisademeglio/electron4-setA11yTreeEnabled/blob/master/src/main/main.js#L27
$ git clone https://github.com/marisademeglio/electron4-setA11yTreeEnabled.git
$ yarn install
$ yarn start
|
https://github.com/electron/electron/issues/16256
|
https://github.com/electron/electron/pull/16261
|
211752410295287b2d47423c1bbfebc9d4805bd9
|
de0e4735de60adaa575f18491ec1b62a2d75b60b
| 2019-01-03T21:17:27Z |
c++
| 2019-01-04T15:20:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,246 |
["atom/browser/api/atom_api_system_preferences.cc", "atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_mac.mm", "atom/browser/mac/atom_application.h", "docs/api/system-preferences.md"]
|
system color API for macOS
|
It would be great to add macOS support to the [`systemPreferences.getColor` method](https://github.com/electron/electron/blob/master/docs/api/system-preferences.md#systempreferencesgetcolorcolor-windows) to allow electron apps to fetch the [system colors](https://developer.apple.com/design/human-interface-guidelines/macos/visual-design/color#system-colors) and [dynamic system colors](https://developer.apple.com/design/human-interface-guidelines/macos/visual-design/color#dynamic-system-colors). This would be a pretty big deal for apps that are trying to fit in with the OS, especially since the colors change depending on several factors and Apple strongly discourages hardcoding them:
>**Don't hard code system color values in your app.** The color values provided below are intended for reference during your app design process. The actual color values will fluctuate from release to release, based on a variety of environmental variables. Always use the API to apply system colors.
>**Don't try to replicate dynamic system colors.** Dynamic system colors—some of which may be patterns—fluctuate from release to release, based on a variety of environmental variables. Instead of trying to create custom colors that match the dynamic system colors, use the dynamic system colors.
I am very unfamiliar with how most of this stuff works, but based on the docs I linked it seems like this could be a relatively simple interface to NSColor...?
|
https://github.com/electron/electron/issues/16246
|
https://github.com/electron/electron/pull/16248
|
439ba5116f5332d60c4bcd99eb921334bdc4eaef
|
03892153debabc5a418571d56e39cccc1fc63dba
| 2019-01-03T04:25:55Z |
c++
| 2019-01-03T22:30:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,244 |
["docs/development/build-instructions-macos.md"]
|
doubt when compile electron on macOS 10.14
|
Following the official docs:
https://github.com/electron/electron/blob/master/docs/development/build-instructions-macos.md
it told me that I should use Xcode 8.2.1 and macOS 10.10 SDK
> For certain features (e.g. pinch-zoom) to work properly, you must target the macOS 10.10 SDK.
> Official Electron builds are built with Xcode 8.2.1, which does not contain the 10.10 SDK by default. To obtain it, first download and mount the Xcode 6.4 DMG.
but after I install Xcode 8.2.1, and try to run Xcode. Xcode directly crash when start on my macOS 10.14.1.
So my doubt is why it's so strictly. must I use Xcode 8.2.1 to make electron work properly? can I use Xcode 9.4 or Xcode 10 with the macOS 10.10 SDK?
- crash logs like this
```
Process: Xcode [1887]
Path: /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: com.apple.dt.Xcode
Version: 8.2.1 (11766.1)
Build Info: IDEFrameworks-11766001000000000~5
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Xcode [1887]
User ID: 502
Date/Time: 2019-01-03 10:31:59.162 +0800
OS Version: Mac OS X 10.14.1 (18B75)
Report Version: 12
Anonymous UUID: 0958AB3D-9120-BC65-16A0-8DE0CB0DE909
Time Awake Since Boot: 2800 seconds
System Integrity Protection: disabled
Crashed Thread: 0
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Reason: DYLD, [0x4] Symbol missing
Application Specific Information:
dyld: launch, loading dependent libraries
Dyld Error Message:
Symbol not found: _OBJC_IVAR_$_NSTextViewIvars.sharedData
Referenced from: /Applications/Xcode.app/Contents/MacOS/../SharedFrameworks/DVTKit.framework/Versions/A/DVTKit
Expected in: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
in /Applications/Xcode.app/Contents/MacOS/../SharedFrameworks/DVTKit.framework/Versions/A/DVTKit
```
|
https://github.com/electron/electron/issues/16244
|
https://github.com/electron/electron/pull/16267
|
849dd0db64b382de1baf428813b51a25aeb444e1
|
50010934d1ef192cd6887e3b5e2263da24eedfb5
| 2019-01-03T02:23:20Z |
c++
| 2019-01-04T18:05:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,202 |
["atom/browser/api/atom_api_browser_window.cc"]
|
Crash: Electron version greater than v3.0.5 crashes with EXC_BAD_ACCESS
|
* Output of `node_modules/.bin/electron --version`: v4.0.0
* Operating System (Platform and Version): macOS Mojave (version 10.14.2)
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): < v3.0.5
**Note: This crash happens electron version greater than v3.0.5**
**Expected Behavior**
Electron application should not crash on closing the pop-out window(window created by window.open)
**Actual behavior**
Electron application crashes on closing the pop-out window(window created by window.open)
**To Reproduce**
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
**Screen cast**

### Crash report
<details>
<summary>Expand</summary>
Process: Electron [51628]
Path: /Users/USER/Documents/*/Electron.app/Contents/MacOS/Electron
Identifier: com.github.Electron
Version: 4.0.0 (4.0.0)
Code Type: X86-64 (Native)
Parent Process: webstorm [9579]
Responsible: Electron [51628]
User ID: 501
Date/Time: 2018-12-27 16:37:05.940 +0530
OS Version: Mac OS X 10.14.2 (18C54)
Report Version: 12
Anonymous UUID: F2BAC63D-0F2D-38C2-BF1C-8B9A5C760250
Sleep/Wake UUID: 228FDDFF-FB64-4651-BCA0-FF82B929F4CE
Time Awake Since Boot: 95000 seconds
Time Since Wake: 28000 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 0x0000000000000028
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [51628]
VM Regions Near 0x28:
-->
__TEXT 000000010ee20000-000000010ee21000 [ 4K] r-x/rwx SM=COW /Users/USER/Documents/*/Electron.app/Contents/MacOS/Electron
Application Specific Information:
objc_msgSend() selector name: retain
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libobjc.A.dylib 0x00007fff6b558a1d objc_msgSend + 29
1 com.github.Electron.framework 0x0000000113046616 0x11133c000 + 30451222
2 com.github.Electron.framework 0x000000011301d7f2 0x11133c000 + 30283762
3 com.github.Electron.framework 0x0000000113002a6d 0x11133c000 + 30173805
4 com.github.Electron.framework 0x000000011204ff26 0x11133c000 + 13713190
5 com.github.Electron.framework 0x000000011204ec10 0x11133c000 + 13708304
6 com.github.Electron.framework 0x00000001137352cb 0x11133c000 + 37720779
7 com.github.Electron.framework 0x00000001130ed05b 0x11133c000 + 31133787
8 com.github.Electron.framework 0x00000001131074af 0x11133c000 + 31241391
9 com.github.Electron.framework 0x0000000113107968 0x11133c000 + 31242600
10 com.github.Electron.framework 0x00000001131abf0a 0x11133c000 + 31915786
11 com.github.Electron.framework 0x00000001131af1ca 0x11133c000 + 31928778
12 com.github.Electron.framework 0x00000001131ab82f 0x11133c000 + 31914031
13 com.apple.CoreFoundation 0x00007fff3f415475 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
14 com.apple.CoreFoundation 0x00007fff3f41541b __CFRunLoopDoSource0 + 108
15 com.apple.CoreFoundation 0x00007fff3f3f8f0d __CFRunLoopDoSources0 + 283
16 com.apple.CoreFoundation 0x00007fff3f3f845e __CFRunLoopRun + 1219
17 com.apple.CoreFoundation 0x00007fff3f3f7d48 CFRunLoopRunSpecific + 463
18 com.apple.HIToolbox 0x00007fff3e68eab5 RunCurrentEventLoopInMode + 293
19 com.apple.HIToolbox 0x00007fff3e68e7eb ReceiveNextEventCommon + 618
20 com.apple.HIToolbox 0x00007fff3e68e568 _BlockUntilNextEventMatchingListInModeWithFilter + 64
21 com.apple.AppKit 0x00007fff3c949363 _DPSNextEvent + 997
22 com.apple.AppKit 0x00007fff3c948102 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1362
23 com.apple.AppKit 0x00007fff3c942165 -[NSApplication run] + 699
24 com.github.Electron.framework 0x00000001131ac66c 0x11133c000 + 31917676
25 com.github.Electron.framework 0x00000001131ab34e 0x11133c000 + 31912782
26 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
27 com.github.Electron.framework 0x0000000111d4cb53 0x11133c000 + 10554195
28 com.github.Electron.framework 0x0000000111d4c940 0x11133c000 + 10553664
29 com.github.Electron.framework 0x0000000111d4ee72 0x11133c000 + 10563186
30 com.github.Electron.framework 0x0000000111d48d98 0x11133c000 + 10538392
31 com.github.Electron.framework 0x0000000112f98e28 0x11133c000 + 29740584
32 com.github.Electron.framework 0x00000001143919ad 0x11133c000 + 50682285
33 com.github.Electron.framework 0x0000000112f97ed4 0x11133c000 + 29736660
34 com.github.Electron.framework 0x000000011133ed94 AtomMain + 84
35 com.github.Electron 0x000000010ee20f10 0x10ee20000 + 3856
36 libdyld.dylib 0x00007fff6c635ed9 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff6c8283f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 2:
0 libsystem_pthread.dylib 0x00007fff6c8283f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 3:: Chrome_IOThread
0 libsystem_kernel.dylib 0x00007fff6c775716 kevent + 10
1 com.github.Electron.framework 0x00000001131b23b9 0x11133c000 + 31941561
2 com.github.Electron.framework 0x00000001131afe9d 0x11133c000 + 31932061
3 com.github.Electron.framework 0x00000001131a6162 0x11133c000 + 31891810
4 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
5 com.github.Electron.framework 0x0000000111d554b4 0x11133c000 + 10589364
6 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 4:: Dispatch queue: NSCGSDisableUpdates
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.apple.SkyLight 0x00007fff65555bc5 CGSUpdateManager::enable_updates_common() + 577
3 com.apple.SkyLight 0x00007fff654f8e3b CGSUpdateManager::enable_update(unsigned long long) + 317
4 libdispatch.dylib 0x00007fff6c5e6d53 _dispatch_call_block_and_release + 12
5 libdispatch.dylib 0x00007fff6c5e7dcf _dispatch_client_callout + 8
6 libdispatch.dylib 0x00007fff6c5ee124 _dispatch_lane_serial_drain + 618
7 libdispatch.dylib 0x00007fff6c5eebdc _dispatch_lane_invoke + 388
8 libdispatch.dylib 0x00007fff6c5f7090 _dispatch_workloop_worker_thread + 603
9 libsystem_pthread.dylib 0x00007fff6c82860b _pthread_wqthread + 409
10 libsystem_pthread.dylib 0x00007fff6c828405 start_wqthread + 13
Thread 5:
0 libsystem_pthread.dylib 0x00007fff6c8283f8 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 6:
0 libsystem_kernel.dylib 0x00007fff6c775716 kevent + 10
1 com.github.Electron.framework 0x000000011621eb4f 0x11133c000 + 82717519
2 com.github.Electron.framework 0x000000011620f4f3 uv_run + 355
3 com.github.Electron.framework 0x0000000116188a12 0x11133c000 + 82102802
4 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
6 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff6c7727de __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6c82c593 _pthread_cond_wait + 724
2 com.github.Electron.framework 0x000000011621a789 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000116188c08 0x11133c000 + 82103304
4 com.github.Electron.framework 0x0000000116186978 0x11133c000 + 82094456
5 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
7 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff6c7727de __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6c82c593 _pthread_cond_wait + 724
2 com.github.Electron.framework 0x000000011621a789 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000116188c08 0x11133c000 + 82103304
4 com.github.Electron.framework 0x0000000116186978 0x11133c000 + 82094456
5 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
7 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 9:
0 libsystem_kernel.dylib 0x00007fff6c7727de __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6c82c593 _pthread_cond_wait + 724
2 com.github.Electron.framework 0x000000011621a789 uv_cond_wait + 9
3 com.github.Electron.framework 0x0000000116188c08 0x11133c000 + 82103304
4 com.github.Electron.framework 0x0000000116186978 0x11133c000 + 82094456
5 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
7 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff6c76f1b6 semaphore_wait_trap + 10
1 com.github.Electron.framework 0x000000011621a630 uv_sem_wait + 16
2 com.github.Electron.framework 0x00000001161dfb73 0x11133c000 + 82459507
3 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
5 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 11:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3f3f90c2 __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff3f3f8611 __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff3f3f7d48 CFRunLoopRunSpecific + 463
5 com.apple.Foundation 0x00007fff4175e4aa -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.github.Electron.framework 0x00000001131ac40d 0x11133c000 + 31917069
7 com.github.Electron.framework 0x00000001131ab34e 0x11133c000 + 31912782
8 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
9 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
10 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
11 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
13 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 12:: DnsConfigService
0 libsystem_kernel.dylib 0x00007fff6c775716 kevent + 10
1 com.github.Electron.framework 0x00000001131b23b9 0x11133c000 + 31941561
2 com.github.Electron.framework 0x00000001131afe9d 0x11133c000 + 31932061
3 com.github.Electron.framework 0x00000001131a617b 0x11133c000 + 31891835
4 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
5 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
6 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
7 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 13:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff6c770e5e read + 10
1 com.github.Electron.framework 0x000000011302ddef 0x11133c000 + 30350831
2 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
3 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
5 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 14:: TaskSchedulerServiceThread
0 libsystem_kernel.dylib 0x00007fff6c775716 kevent + 10
1 com.github.Electron.framework 0x00000001131b23b9 0x11133c000 + 31941561
2 com.github.Electron.framework 0x00000001131afe9d 0x11133c000 + 31932061
3 com.github.Electron.framework 0x00000001131a6162 0x11133c000 + 31891810
4 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
5 com.github.Electron.framework 0x0000000113155b47 0x11133c000 + 31562567
6 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 15:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 16:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 17:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 18:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 19:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x0000000113151eb3 0x11133c000 + 31547059
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 20:: TaskSchedulerBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x0000000113151eb3 0x11133c000 + 31547059
6 com.github.Electron.framework 0x0000000113151d24 0x11133c000 + 31546660
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 21:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151d24 0x11133c000 + 31546660
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 22:: TaskSchedulerSingleThreadSharedBackgroundBlocking0
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x0000000113128a0f 0x11133c000 + 31377935
4 com.github.Electron.framework 0x0000000113151b6a 0x11133c000 + 31546218
5 com.github.Electron.framework 0x0000000113151eb3 0x11133c000 + 31547059
6 com.github.Electron.framework 0x0000000113151d54 0x11133c000 + 31546708
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 23:: CompositorTileWorker1/30979
0 libsystem_kernel.dylib 0x00007fff6c7727de __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff6c82c593 _pthread_cond_wait + 724
2 com.github.Electron.framework 0x000000011319fb68 0x11133c000 + 31865704
3 com.github.Electron.framework 0x0000000113e81988 0x11133c000 + 45373832
4 com.github.Electron.framework 0x0000000113164534 0x11133c000 + 31622452
5 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
6 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 24:: AudioThread
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x0000000113128a0f 0x11133c000 + 31377935
4 com.github.Electron.framework 0x000000011310834d 0x11133c000 + 31245133
5 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
6 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 25:
0 libsystem_kernel.dylib 0x00007fff6c7765aa __select + 10
1 com.github.Electron.framework 0x00000001130a6ae2 0x11133c000 + 30845666
2 com.github.Electron.framework 0x00000001130a628f 0x11133c000 + 30843535
3 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
5 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 26:: TaskSchedulerSingleThreadForegroundBlocking1
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x0000000113128a0f 0x11133c000 + 31377935
4 com.github.Electron.framework 0x0000000113151b6a 0x11133c000 + 31546218
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151e14 0x11133c000 + 31546900
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 27:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151d24 0x11133c000 + 31546660
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 28:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3f3f90c2 __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff3f3f8611 __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff3f3f7d48 CFRunLoopRunSpecific + 463
5 com.apple.Foundation 0x00007fff4175e4aa -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.github.Electron.framework 0x00000001131ac40d 0x11133c000 + 31917069
7 com.github.Electron.framework 0x00000001131ab34e 0x11133c000 + 31912782
8 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
9 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
10 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
11 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
13 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 29:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x0000000113151eb3 0x11133c000 + 31547059
6 com.github.Electron.framework 0x0000000113151d24 0x11133c000 + 31546660
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 30:: CacheThread_BlockFile
0 libsystem_kernel.dylib 0x00007fff6c775716 kevent + 10
1 com.github.Electron.framework 0x00000001131b23b9 0x11133c000 + 31941561
2 com.github.Electron.framework 0x00000001131afe9d 0x11133c000 + 31932061
3 com.github.Electron.framework 0x00000001131a6162 0x11133c000 + 31891810
4 com.github.Electron.framework 0x0000000113129315 0x11133c000 + 31380245
5 com.github.Electron.framework 0x0000000113164d2d 0x11133c000 + 31624493
6 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
7 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 31:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3f3f90c2 __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff3f3f8611 __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff3f3f7d48 CFRunLoopRunSpecific + 463
5 com.apple.AppKit 0x00007fff3c951f89 _NSEventThread + 160
6 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 32:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 33:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 34:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 35:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x00000001131520e8 0x11133c000 + 31547624
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 36:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff6c76f17a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff6c76f6d0 mach_msg + 60
2 com.github.Electron.framework 0x000000011313e21d 0x11133c000 + 31466013
3 com.github.Electron.framework 0x000000011313e311 0x11133c000 + 31466257
4 com.github.Electron.framework 0x0000000113151b78 0x11133c000 + 31546232
5 com.github.Electron.framework 0x0000000113151eb3 0x11133c000 + 31547059
6 com.github.Electron.framework 0x0000000113151db4 0x11133c000 + 31546804
7 com.github.Electron.framework 0x00000001131a64b7 0x11133c000 + 31892663
8 libsystem_pthread.dylib 0x00007fff6c829305 _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff6c82c26f _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff6c828415 thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000116f22fa0 rbx: 0x00007fec2bedff20 rcx: 0x0000000000000001 rdx: 0x0000000000000000
rdi: 0x00007fec2bedc6c0 rsi: 0x00007fff3d533e56 rbp: 0x00007ffee0ddd3a0 rsp: 0x00007ffee0ddd388
r8: 0x0000000000000004 r9: 0x00007fec2e542c70 r10: 0x0000000000000010 r11: 0x00007fff3d533e56
r12: 0x00007fec2bee4c88 r13: 0x0000000000000000 r14: 0x00007fec2bedfe00 r15: 0x00007ffee0ddd458
rip: 0x00007fff6b558a1d rfl: 0x0000000000010202 cr2: 0x0000000000000028
Logical CPU: 3
Error Code: 0x00000004
Trap Number: 14
Binary Images:
0x10ee20000 - 0x10ee20ffb +com.github.Electron (4.0.0 - 4.0.0) <0B17EBD3-270D-3C7F-A47F-A50793EC943D> /Users/USER/Documents/*/Electron.app/Contents/MacOS/Electron
0x10ee23000 - 0x10ee3efff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Users/USER/Documents/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x10ee60000 - 0x10eec3ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/Documents/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10ef35000 - 0x10ef49fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/Documents/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x10ef5b000 - 0x10f1bbfff +libffmpeg.dylib (0) <6B8F69C1-3C1E-377C-A700-3AC73CD590D2> /Users/USER/Documents/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x110e31000 - 0x110e34047 libobjc-trampolines.dylib (750.1) <0D004834-E2EB-3066-8598-6F413521157F> /usr/lib/libobjc-trampolines.dylib
0x11125b000 - 0x1112d9a67 dyld (640.2) <289AB27E-F09F-3384-A14A-100431139559> /usr/lib/dyld
0x11133c000 - 0x116e57fd7 +com.github.Electron.framework (4.0.0) <F065D6ED-07EF-3C41-9E7D-98CC8F2E3BEE> /Users/USER/Documents/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x7fff36e2a000 - 0x7fff36f28ff7 com.apple.driver.AppleIntelBDWGraphicsMTLDriver (12.4.7.1 - 12.0.4) <21128297-4983-32C6-B1B7-37C08D033133> /System/Library/Extensions/AppleIntelBDWGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsMTLDriver
0x7fff3b31d000 - 0x7fff3b50bfff com.apple.avfoundation (2.0 - 1544.5) <BC32B996-F411-3CA0-B9FB-8CEBA2DD356D> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3b50c000 - 0x7fff3b5dbfff com.apple.audio.AVFAudio (1.0 - ???) <9C4C64BB-E751-3BB3-B4D0-233ADD48A029> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff3b6e9000 - 0x7fff3b6e9fff com.apple.Accelerate (1.11 - Accelerate 1.11) <A09CB6D5-3F8A-3E05-B0EB-63878296A059> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff3b6ea000 - 0x7fff3b700fef libCGInterfaces.dylib (506.19.1) <55B9EFFF-6719-381E-B7F3-C3AA07F5D78F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff3b701000 - 0x7fff3bda1fe3 com.apple.vImage (8.1 - ???) <BDA40EB0-9B20-3ACF-BE37-199578FA84F4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff3bda2000 - 0x7fff3c019fd7 libBLAS.dylib (1243.200.4) <0ADBEAE3-6636-33E5-AC9F-11C2249E19D3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff3c01a000 - 0x7fff3c08cfe7 libBNNS.dylib (38.200.5) <CC93B9B5-2A8C-3D42-9234-75DD41EC8C0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff3c08d000 - 0x7fff3c433fff libLAPACK.dylib (1243.200.4) <45722A8A-5788-3C4C-ADD9-1812763FA635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff3c434000 - 0x7fff3c449ffb libLinearAlgebra.dylib (1243.200.4) <3923AB79-213E-32FD-AC87-8B1A1A832336> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff3c44a000 - 0x7fff3c44fff3 libQuadrature.dylib (3.200.2) <4FBCAC0A-81A4-3C53-8458-27F3569C809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff3c450000 - 0x7fff3c4cdffb libSparse.dylib (79.200.5) <2D650C50-E87E-3F24-9BFA-C8EB6DE1A6E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff3c4ce000 - 0x7fff3c4e1ffb libSparseBLAS.dylib (1243.200.4) <6F8C78BE-A0FD-3507-8A95-541AFC57F1EE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff3c4e2000 - 0x7fff3c6c6ff3 libvDSP.dylib (671.220.1) <2F576522-08B1-3C65-8F00-3427E938ADDA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff3c6c7000 - 0x7fff3c77cff3 libvMisc.dylib (671.220.1) <D7B5F89D-3310-31F4-B8BF-42DA300ABE64> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff3c77d000 - 0x7fff3c77dfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <221E4FEF-0431-3316-8281-22B6F8315A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff3c77e000 - 0x7fff3c7e1ffb com.apple.Accounts (113 - 113) <F40D3A96-AFE7-33BA-9666-C41B0B381715> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff3c7e4000 - 0x7fff3c92dff7 com.apple.AddressBook.framework (11.0 - 1890) <BC45996B-00E0-3881-A6EB-8A63B9A0B76F> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff3c92e000 - 0x7fff3d74fffb com.apple.AppKit (6.9 - 1671.20.108) <0C441020-D10E-3CE0-B320-527E50EADBEC> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff3d7a1000 - 0x7fff3d7a1fff com.apple.ApplicationServices (50.1 - 50.1) <50496459-FFDD-3A78-8D3D-A252BD9B9DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff3d7a2000 - 0x7fff3d80dff7 com.apple.ApplicationServices.ATS (377 - 453.11) <4080F8BE-F2A2-3707-8754-436FBDB1DAF1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff3d8a6000 - 0x7fff3d9c5fff libFontParser.dylib (228.6) <BBCBEE2C-5B55-3278-B81D-22D72466753E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff3d9c6000 - 0x7fff3da11fff libFontRegistry.dylib (228.12) <1CC4D486-74F8-3459-BBA1-F68A36C5CAF8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff3da70000 - 0x7fff3daa3ff7 libTrueTypeScaler.dylib (228.6) <760BF895-3D7A-36E2-B97C-6775C3615A1D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff3db0d000 - 0x7fff3db11ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <4B1238CC-9B77-3AA5-8329-EE3C736F07EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff3dbae000 - 0x7fff3dc00ff3 com.apple.HIServices (1.22 - 627.14.2) <1F851BF9-AD29-3558-9EA5-AAD9BAAAC823> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff3dc01000 - 0x7fff3dc0fff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <5654723A-7B3B-391F-B9F7-0DE4D5940185> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff3dc10000 - 0x7fff3dc5cfff com.apple.print.framework.PrintCore (14.2 - 503.8) <F1246C9A-2216-3390-8DF1-89304F47CE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff3dc5d000 - 0x7fff3dc98ff7 com.apple.QD (3.12 - 407.2) <F6B648DA-DA39-3EB4-B593-1B7E316661CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff3dc99000 - 0x7fff3dca5ff7 com.apple.speech.synthesis.framework (8.1.0 - 8.1.0) <CF19C8B6-AAD5-3DCF-ABD0-3BABB44D119C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff3dca6000 - 0x7fff3df43fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <5D484151-F269-3D98-B507-0544A6B950AC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff3df45000 - 0x7fff3df45fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <91100E0A-C14D-3E6C-B095-0C4109AC6694> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff3e2a9000 - 0x7fff3e66afff com.apple.CFNetwork (976 - 976) <10F464AD-6687-3012-A2AA-0453629CA968> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff3e67f000 - 0x7fff3e67ffff com.apple.Carbon (158 - 158) <D6170F31-7A8A-3D4F-91DA-E11CF33E62B4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff3e680000 - 0x7fff3e683ffb com.apple.CommonPanels (1.2.6 - 98) <775C94BE-EC00-315F-96E0-F0C1CD6EE3F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff3e684000 - 0x7fff3e98bff7 com.apple.HIToolbox (2.1.1 - 917.3) <B2FEF0F3-CBA0-3FD9-93FC-E3A13DCB8C49> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff3e98c000 - 0x7fff3e98fffb com.apple.help (1.3.8 - 66) <0C6CC127-A860-30D2-8434-6CC3CAFFB030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff3e990000 - 0x7fff3e995ff7 com.apple.ImageCapture (9.0 - 1530.1) <72ABBF32-531B-3B04-926D-E14B8D9003A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff3e996000 - 0x7fff3ea2aff3 com.apple.ink.framework (10.9 - 225) <344AACCC-E997-3498-8B1D-2EFD3A889205> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff3ea2b000 - 0x7fff3ea45fff com.apple.openscripting (1.7 - 179) <A57FC4DB-4C51-3ABB-842F-9578991043E3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff3ea66000 - 0x7fff3ea67fff com.apple.print.framework.Print (14.2 - 267.4) <618D290C-2EA0-3959-A2A8-FB7B61DA92DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff3ea68000 - 0x7fff3ea6aff7 com.apple.securityhi (9.0 - 55006) <2FE1EB07-F717-3E89-9662-8BA7C17C6AEC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff3ea6b000 - 0x7fff3ea71ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <F7E95C56-19E8-30A1-9594-84D4DD89F6D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff3eb9a000 - 0x7fff3eb9afff com.apple.Cocoa (6.11 - 23) <D0BED932-C061-33E9-9F59-ECE0BA9F7EEB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff3eba8000 - 0x7fff3ec74fff com.apple.ColorSync (4.13.0 - 3340) <2F45EB01-0C51-3D25-9836-18F99222E1C7> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff3ec75000 - 0x7fff3ed69ff3 com.apple.contacts (1.0 - 2901) <CCA1647C-9A78-31AD-A300-53F5797DBDF9> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
0x7fff3ee0f000 - 0x7fff3ee9ffff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E7EF105-B843-370D-884E-0A43E1A5800B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff3ef05000 - 0x7fff3ef30ff7 com.apple.CoreBluetooth (1.0 - 1) <F041753E-7709-3FA4-ADA3-6B37296D92FB> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff3ef31000 - 0x7fff3f2d2fef com.apple.CoreData (120 - 866.1) <18CD58FD-513E-385B-B43C-08EEB909709C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff3f2d3000 - 0x7fff3f3bcff7 com.apple.CoreDisplay (101.3 - 106.2) <EE0D334B-8B71-3A70-9F90-677171D6762F> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff3f3bd000 - 0x7fff3f80aff7 com.apple.CoreFoundation (6.9 - 1561) <AC90EE38-93D9-35EF-8359-9FE3A42500D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff3f80c000 - 0x7fff3fe99ff7 com.apple.CoreGraphics (2.0 - 1249.2) <3AC6DEB1-245B-3E3A-B5CF-791A37237775> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff3fe9b000 - 0x7fff401c4fff com.apple.CoreImage (14.2.0 - 720.0.130) <8C8BC619-7084-3F58-BBFC-4A97BD330787> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff40247000 - 0x7fff402a3ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <77ADAD48-D83F-30E2-A3C1-3DADA381D4D4> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x7fff402a6000 - 0x7fff40514ff7 com.apple.CoreML (1.0 - 1) <B2D4BE60-846A-3809-886B-F9FE70FE95AB> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff40515000 - 0x7fff40616ff7 com.apple.CoreMedia (1.0 - 2284.9) <4662B44E-F463-3FC8-A643-2195FF10A3E4> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff40617000 - 0x7fff40679fff com.apple.CoreMediaIO (900.0 - 5025) <7200894C-68E6-396A-90F1-389BB32EAC86> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff4067a000 - 0x7fff4067afff com.apple.CoreServices (941 - 941) <950D3EAF-C98E-3BCB-8FD9-43EEA0E48988> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff4067b000 - 0x7fff406f9ffb com.apple.AE (771 - 771) <4B009524-699E-3891-98DD-E3B6BB433C8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff406fa000 - 0x7fff409d2ff7 com.apple.CoreServices.CarbonCore (1178.16 - 1178.16) <17FC2B9E-EB6C-3768-A2D0-6E086F2563D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff409d3000 - 0x7fff40a1dff7 com.apple.DictionaryServices (1.2 - 284.16.3) <1DAC9153-FB5A-3798-8797-CBFEFF227F71> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff40a1e000 - 0x7fff40a26ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8E1507EA-F0A8-3845-B32D-4FBC1381E89C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff40a27000 - 0x7fff40bf2fff com.apple.LaunchServices (941 - 941) <98B7E20E-5D0A-3A71-A019-346A145A1A5E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff40bf3000 - 0x7fff40c95fff com.apple.Metadata (10.7.0 - 1191.53) <E4C1B7AB-677B-32B2-918C-CD445A0D0D91> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff40c96000 - 0x7fff40ce1ff7 com.apple.CoreServices.OSServices (941 - 941) <DFA21754-BFE4-367C-9303-739F5D3E9DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff40ce2000 - 0x7fff40d50ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <CEC29BB5-D28E-3424-84FE-70756E521F3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff40d51000 - 0x7fff40d75ffb com.apple.coreservices.SharedFileList (71.27 - 71.27) <6389B59D-DDAC-3C97-A982-137B9B1FB734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff410bd000 - 0x7fff41222ffb com.apple.CoreText (352.0 - 584.26) <5F61037C-825D-37A4-9091-0047413CC213> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff41223000 - 0x7fff41260fff com.apple.CoreVideo (1.8 - 0.0) <34EC73F1-F0ED-32F5-B96E-7683B1F9A7A2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff41261000 - 0x7fff412f7ffb com.apple.framework.CoreWLAN (13.0 - 1370.8) <32426190-3455-3049-8C09-0EC04D9C1279> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff41487000 - 0x7fff41492ffb com.apple.DirectoryService.Framework (10.14 - 207.200.4) <14C33C2D-0D4E-3A86-ABD3-CA6893B7145E> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff41493000 - 0x7fff4154dff7 com.apple.DiscRecording (9.0.3 - 9030.4.5) <D3B4878A-60DF-3B9E-BF29-D02B5CDA7738> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff41574000 - 0x7fff41579fff com.apple.DiskArbitration (2.7 - 2.7) <97707A79-30E7-3D99-AA20-B992B0900BC4> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff4173f000 - 0x7fff41741ff7 com.apple.ForceFeedback (1.0.6 - 1.0.6) <42A74696-FDA2-3F33-872A-A452D246B80C> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x7fff41742000 - 0x7fff41b10fff com.apple.Foundation (6.9 - 1561) <27FD022F-F0E3-3053-BADA-DF9BF856CA85> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff41b81000 - 0x7fff41bb1ff3 com.apple.GSS (4.0 - 2.0) <86D07291-5DFC-30C2-9A18-5FCEDB0BE621> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff41bb2000 - 0x7fff41bcbff7 com.apple.GameController (1.0 - 1) <31A8F1DC-DF50-31D0-8182-4666D3D13F96> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff41ccb000 - 0x7fff41dd5ff3 com.apple.Bluetooth (6.0.9 - 6.0.9f2) <CD9FA230-8BBB-307C-8FFF-86B1B7078D05> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff41e37000 - 0x7fff41ec9ff7 com.apple.framework.IOKit (2.0.2 - 1483.230.1) <AAAF13D1-80E5-3079-98C1-FA3C3FC47B40> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff41ecb000 - 0x7fff41ed5ff7 com.apple.IOSurface (255.1 - 255.1) <58826B1A-38E8-3C76-8FFC-76C9282DA893> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff41ed6000 - 0x7fff41f2bff3 com.apple.ImageCaptureCore (1.0 - 1530.1) <37ACF858-C897-390C-BF3B-A66E47618E41> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff41f2c000 - 0x7fff420cafff com.apple.ImageIO.framework (3.3.0 - 1822.1) <908907D5-5C29-32F7-ACD9-C6A6D51C4D15> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff420cb000 - 0x7fff420cfffb libGIF.dylib (1822.1) <35E37B95-1962-3A25-9C9E-CADD161152B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff420d0000 - 0x7fff421b5fe7 libJP2.dylib (1822.1) <BDBCBF28-12DB-3D63-B6F0-A559D1839F81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff421b6000 - 0x7fff421dbff7 libJPEG.dylib (1822.1) <D443C754-4AFC-38E1-9E45-D309ACBCE17B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff424ae000 - 0x7fff424d4fe7 libPng.dylib (1822.1) <28FE6E2C-1A17-3A84-AAF3-76014DEADDD4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff424d5000 - 0x7fff424d7ff7 libRadiance.dylib (1822.1) <687906E3-4EC2-3CE9-B7EA-34418239EE1B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff424d8000 - 0x7fff42526ffb libTIFF.dylib (1822.1) <0A1C083B-CE2F-3A00-8E45-EB58DCA2FF34> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff42828000 - 0x7fff435b8fff com.apple.JavaScriptCore (14606 - 14606.3.4) <1ED1116C-80DA-3C92-92A3-8F166773751B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff435d0000 - 0x7fff435e9fff com.apple.Kerberos (3.0 - 1) <5D1B0593-3C0E-32D5-AAE5-ABC22A98B639> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff435ea000 - 0x7fff4361fffb com.apple.LDAPFramework (2.4.28 - 194.5) <50FCA7E8-3A67-39B2-B504-6CB32FA8611F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff4366f000 - 0x7fff4368dff3 com.apple.CoreAuthentication.SharedUtils (1.0 - 425.230.2) <FC792E7F-0D30-39FE-86BC-8AC990D3FD45> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
0x7fff4368e000 - 0x7fff436a4fff com.apple.LocalAuthentication (1.0 - 425.230.2) <CD7EF5CD-768F-3925-BBE1-40C4AE39241B> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x7fff438a7000 - 0x7fff438b1fff com.apple.MediaAccessibility (1.0 - 114.4) <C0584BAA-27BC-30F4-8B0C-5043559995AA> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff4396b000 - 0x7fff44009fff com.apple.MediaToolbox (1.0 - 2284.9) <AD1C6882-F6FC-3114-9517-CCF9402A30B1> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff4400b000 - 0x7fff4409efff com.apple.Metal (158.5 - 158.5) <219312CC-0DE5-3E8D-9F62-393D0C35B0FD> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff440a0000 - 0x7fff440baff3 com.apple.MetalKit (1.0 - 113) <E885A008-79EC-33BF-BB03-5586DA6569DA> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff440bb000 - 0x7fff440dbff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <18281B14-0C6A-38F8-AB80-2D4BB0743C88> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff440dc000 - 0x7fff4415aff7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <BEAF764B-362B-3C45-86F5-2AFBA5FA0F47> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff4415b000 - 0x7fff44183fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <116D6C1A-2FD7-3743-95A0-CDDA3D459529> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff44184000 - 0x7fff442b6ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <88E80BEE-3D2B-328B-80D4-F4717BDB2E9F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff442b7000 - 0x7fff442d2ff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <E0E652B0-1624-3435-AD60-83A9C4B59852> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff442d3000 - 0x7fff442d3ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <1BBA8BC8-49C6-3C9B-B985-7CE4373E3553> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff454d0000 - 0x7fff454dcffb com.apple.NetFS (6.0 - 4.0) <918DF6CD-2DB0-36A8-B869-5EF637A06C0D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff47f9c000 - 0x7fff47ff4fff com.apple.opencl (2.15.1 - 2.15.1) <E628D178-3846-373A-9482-CF680BD1E240> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff47ff5000 - 0x7fff48011ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <2CB1F122-2FA0-347C-8454-9CE0FA150832> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff48012000 - 0x7fff4801effb com.apple.OpenDirectory (10.14 - 207.200.4) <A3FB0F0C-57F4-3F89-A4B1-63DA1F7C9E8E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff48981000 - 0x7fff48983fff libCVMSPluginSupport.dylib (17.3.1) <4D6061EC-CFCD-3C0E-90E4-51644DC5F76A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff48984000 - 0x7fff48989ff3 libCoreFSCache.dylib (163.20) <566DB80E-F1D6-3AEC-AF06-08955507AFEE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff4898a000 - 0x7fff4898efff libCoreVMClient.dylib (163.20) <B9A89373-BDCD-3003-9A82-6D73B930A122> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff4898f000 - 0x7fff48997ffb libGFXShared.dylib (17.3.1) <902F535E-E411-3C3B-B980-0A7DB40EA5B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff48998000 - 0x7fff489a3fff libGL.dylib (17.3.1) <87F8CCDB-2D7D-3B01-AA6F-6C7A4B1CA11E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff489a4000 - 0x7fff489defef libGLImage.dylib (17.3.1) <B5464F1A-B936-3BEE-97CF-3806AD1A9E68> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff48b52000 - 0x7fff48b8ffff libGLU.dylib (17.3.1) <C46D4335-4CE2-3FFB-930D-E48D7A3B5B4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff4953f000 - 0x7fff4954eff3 com.apple.opengl (17.3.1 - 17.3.1) <78BDC7C4-87AD-33CA-BFAC-A9CC5F605B5D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff498d0000 - 0x7fff49a1afff com.apple.QTKit (7.7.3 - 3034) <AC7659AF-7C10-3B3A-9F8B-DCDB0CA4A7A3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff49a1b000 - 0x7fff49c76fff com.apple.imageKit (3.0 - 1067) <11CB6270-C823-37F7-AC3B-6D968234C1B2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff49c77000 - 0x7fff49d63fff com.apple.PDFKit (1.0 - 737.3) <04B606F5-0895-38FC-9AD1-50F55FEBF091> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff49d64000 - 0x7fff4a27aff7 com.apple.QuartzComposer (5.1 - 370) <308E8021-B380-3C4C-96CF-FDAE19DABCD1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff4a27b000 - 0x7fff4a2a1ff3 com.apple.quartzfilters (1.10.0 - 83) <0DE04622-B09F-3BB4-885A-DD3335641F28> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff4a2a2000 - 0x7fff4a3a8ff7 com.apple.QuickLookUIFramework (5.0 - 775.3) <2495B91A-484A-3EF7-9554-38B168D856C8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff4a3a9000 - 0x7fff4a3a9fff com.apple.quartzframework (1.5 - 23) <E30BB2B1-985E-3DD4-B123-9C749820B896> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff4a3aa000 - 0x7fff4a603fff com.apple.QuartzCore (1.11 - 695.4) <6692906D-9EF7-3EA0-96D3-3766567AE7F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff4a604000 - 0x7fff4a65dff7 com.apple.QuickLookFramework (5.0 - 775.3) <9A3F3BE7-49B1-3F53-BFC0-42F41EE363B9> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff4a824000 - 0x7fff4a83cffb com.apple.SafariServices.framework (14606 - 14606.3.4) <FFEBDEBE-4310-3A43-8B57-BD6552D841C1> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff4ae57000 - 0x7fff4b17ffff com.apple.security (7.0 - 58286.230.21) <5ADE179E-87D5-3B90-9172-D183D4665037> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff4b180000 - 0x7fff4b20ffff com.apple.securityfoundation (6.0 - 55185.200.14) <A57F481C-73B9-33C4-9093-9A06DBBFEDE5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff4b210000 - 0x7fff4b240ffb com.apple.securityinterface (10.0 - 55109.200.8) <0BB040DA-B3AF-37B1-AC17-C9639BE00094> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff4b241000 - 0x7fff4b245ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <16FA4DAF-A0BE-34C0-B5F1-5C30BE3DCD2D> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff4b4b5000 - 0x7fff4b4caffb com.apple.StoreKit (1.0 - 1) <6BDBCDD3-8806-312F-9282-F5B3B9547F36> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x7fff4b602000 - 0x7fff4b672ff3 com.apple.SystemConfiguration (1.17 - 1.17) <A8FD596E-C858-397F-836C-978038B97AC0> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff4b8d3000 - 0x7fff4bc35fff com.apple.VideoToolbox (1.0 - 2284.9) <695514F0-08C8-3065-B9A2-DA3B43E6682F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff4e8dd000 - 0x7fff4e982ff7 com.apple.APFS (1.0 - 1) <5CA4B73F-3F5D-3289-9145-520FFDFD6813> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff4f254000 - 0x7fff4f3b0ffb com.apple.AddressBook.core (1.0 - 1) <1A4C4333-099D-3E2F-AD6B-FD31BE6B1904> /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore
0x7fff4f3cc000 - 0x7fff4f3cdff3 com.apple.AggregateDictionary (1.0 - 1) <EBA6443E-6CF0-34F6-B77A-3FCEC57F8F80> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff4f77a000 - 0x7fff4f8c3ff3 com.apple.AnnotationKit (1.0 - 232.3.27) <E653A08F-5AEA-3314-9971-3FAEFC74812D> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff4f9ca000 - 0x7fff4f9f6ff7 com.apple.framework.Apple80211 (13.0 - 1376.2) <A71EADCB-7582-3D1B-9122-356F03E11594> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff4fcd2000 - 0x7fff4fce1fcf com.apple.AppleFSCompression (96.200.3 - 1.0) <78D538DD-1D24-34FC-AFB3-10411494870D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff4fddf000 - 0x7fff4fdeafff com.apple.AppleIDAuthSupport (1.0 - 1) <E41452B2-3AFB-3493-BB82-0CE6D04DF424> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff4fe2b000 - 0x7fff4fe74ff3 com.apple.AppleJPEG (1.0 - 1) <EC4C49F1-C060-3C0F-910F-3620985D4F12> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff4fe75000 - 0x7fff4fe85ff3 com.apple.AppleLDAP (10.14 - 46.200.2) <08628E1D-0F03-356F-85C3-B0BA3F5EE8AC> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
0x7fff500a1000 - 0x7fff500c1ffb com.apple.aps.framework (4.0 - 4.0) <5BA14EE2-0E89-372D-96BE-F42D8C94267C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff500c2000 - 0x7fff500c6ff7 com.apple.AppleSRP (5.0 - 1) <B16080FC-44D7-3E35-A151-A0DCE1764277> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff500c7000 - 0x7fff500efff7 com.apple.applesauce (1.0 - ???) <58654BC0-9243-39D1-BC43-B7F2E37A3A44> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff501b6000 - 0x7fff501b9ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <C6C7880A-5E69-3ADF-8D88-8DFA87FD6701> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff501ba000 - 0x7fff5020afff com.apple.AppleVAFramework (5.0.44 - 5.0.44) <0338350C-F366-3C0D-B7C1-6E8FFAB92E98> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff50255000 - 0x7fff5026bffb com.apple.AssertionServices (1.0 - 1) <3F767D20-FE14-35CF-A089-E0445375ECFB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff505a7000 - 0x7fff5084aff7 com.apple.AuthKit (1.0 - 1) <4FF8DA76-2250-39B9-B6A9-0E584C8B988F> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff50a1b000 - 0x7fff50a24ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <05CF66F0-9650-3F75-9857-F8D186043866> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff50a25000 - 0x7fff50ac7fff com.apple.backup.framework (1.10.2 - ???) <7C865F13-12F9-3E38-A4A3-31516EA869B2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff50ac8000 - 0x7fff50b39ffb com.apple.BaseBoard (360.24 - 360.24) <04AF4372-C5D3-3F0A-A688-68D888D6D138> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff50b42000 - 0x7fff50b48ff3 com.apple.BezelServicesFW (317 - 317) <331A9918-8D47-33C3-BA21-D88ECA9B9FA3> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff50bc3000 - 0x7fff50bffffb com.apple.bom (14.0 - 197) <6C1B9A69-C04A-3506-BD00-C116199AE635> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff512cd000 - 0x7fff512fbfff com.apple.CalendarAgentLink (8.0 - 250) <F4DFEE68-4243-3330-A650-794C208006A9> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
0x7fff519de000 - 0x7fff51a2bfff com.apple.ChunkingLibrary (194 - 194) <8FEA3C6E-D9D0-3F12-9ACA-77E58B26019F> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff526ed000 - 0x7fff526f6fff com.apple.CommonAuth (4.0 - 2.0) <090893E5-BB65-39DA-A174-EAB2C7191EFE> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff5270a000 - 0x7fff52720ffb com.apple.commonutilities (8.0 - 900) <17C61424-5518-3C7A-84E6-B26D2FA3573A> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff529d4000 - 0x7fff52a3eff7 com.apple.AddressBook.ContactsFoundation (8.0 - ???) <9FE9B96C-C422-3E52-B2CF-B53409096BA0> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff52a3f000 - 0x7fff52a63ffb com.apple.contacts.ContactsPersistence (1.0 - ???) <E9B42022-FEB0-397C-A626-F4E966193A04> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
0x7fff52bb4000 - 0x7fff52f8bfef com.apple.CoreAUC (273.0.0 - 273.0.0) <FE2B4D86-2C83-3FE2-A427-54DA2170E980> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff52f8c000 - 0x7fff52fbdfff com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <B15A24E4-2A92-3FD7-8F20-C372E4115FA7> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff53055000 - 0x7fff530a7ffb com.apple.corebrightness (1.0 - 1) <9D3B952F-088D-3A13-879C-6070588DB336> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff531eb000 - 0x7fff531f4fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <7440BF22-4197-33A4-9213-9F9CEC4526EC> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff53406000 - 0x7fff5341afff com.apple.CoreEmoji (1.0 - 69.19.8) <26BC0F82-08C1-3EBD-9299-D3CC5091C467> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff535e0000 - 0x7fff536d4ff7 com.apple.CoreHandwriting (161 - 1.2) <5454430E-F94B-3BBD-BCF2-6AFD00D526E0> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff53897000 - 0x7fff538adffb com.apple.CoreMediaAuthoring (2.2 - 958) <485EEE74-7F68-3132-97E1-1098E5BBA2C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff539f0000 - 0x7fff53a62ff7 com.apple.CoreNLP (1.0 - 130.15.22) <D0A3E880-CDEA-360A-9838-220D76BAECC6> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff53bea000 - 0x7fff53c77ff7 com.apple.CorePDF (4.0 - 414) <70F8B93B-78D5-326C-98B2-DAF2572E0F53> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff53d2b000 - 0x7fff53d33ffb com.apple.CorePhoneNumbers (1.0 - 1) <2D9AF545-ED3C-3EC1-887F-86922652EC57> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff53ec2000 - 0x7fff53ef3fff com.apple.CoreServicesInternal (357 - 357) <789E57F4-5A14-3220-93DF-1D4FEE315431> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff542c8000 - 0x7fff54356ff7 com.apple.CoreSymbolication (10.1 - 64460.6) <133D09A5-39F7-301D-B019-B6685B80A2CB> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff543e6000 - 0x7fff54512fff com.apple.coreui (2.1 - 498.46) <5EFE2CDC-897C-3A6B-A60B-4E0FB1D1ECA9> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff54513000 - 0x7fff54698fff com.apple.CoreUtils (5.7.4 - 574.17) <DEF9C8A6-DDF1-37F4-A7F0-7DFAA95E8451> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff546ef000 - 0x7fff54752ffb com.apple.framework.CoreWiFi (13.0 - 1370.8) <818F8915-BA51-3145-9C40-C9B8D7BE2DBD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff54753000 - 0x7fff54764ffb com.apple.CrashReporterSupport (10.13 - 938.23) <D8D105F5-B6FB-3E91-A116-7CD92171E5C5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff547e7000 - 0x7fff547f6ff3 com.apple.framework.DFRFoundation (1.0 - 211) <B72944ED-E4E8-3479-B832-8D50C4E30386> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff547f7000 - 0x7fff547fbff7 com.apple.DSExternalDisplay (3.1 - 380) <76449D22-BA27-3FB1-AD25-A290936E6DEA> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff5487e000 - 0x7fff548f5ffb com.apple.datadetectorscore (7.0 - 590.24) <3A49EC90-2081-3031-8CAE-3A6D5F7BFA1E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff54943000 - 0x7fff54984fff com.apple.DebugSymbols (185 - 185) <64F5F9D6-401D-388B-82AD-A48B56413556> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff54985000 - 0x7fff54adeff7 com.apple.desktopservices (1.13.1 - ???) <AD61A660-0218-327E-8963-A1A170EC2C20> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff54ce3000 - 0x7fff54da7fff com.apple.DiskManagement (12.0 - 1530) <C4614030-06E0-31BE-9083-C90786880D1F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff54da8000 - 0x7fff54dacff7 com.apple.DisplayServicesFW (3.1 - 380) <D62A344B-DC4B-3C5D-A16F-7057B36F2767> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff54e50000 - 0x7fff54e53fff com.apple.EFILogin (2.0 - 2) <0C9EC3A1-43A5-3F43-AA6D-007A520929C3> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff55631000 - 0x7fff55964fff com.apple.vision.EspressoFramework (1.0 - 120) <8BB244CA-4901-364B-B353-EEE075F2A0EA> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff55b20000 - 0x7fff55f48fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <41218EB7-19C9-3813-A793-B0623387CADF> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff5986a000 - 0x7fff5986bfff libmetal_timestamp.dylib (902.2.2) <55E0B1F2-94F0-3A77-9DB3-152F44848DA5> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff5af15000 - 0x7fff5af1aff7 com.apple.GPUWrangler (3.28.4 - 3.28.4) <14D6FE7D-38D7-3F6C-9BCE-A228D6697A08> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff5b2ca000 - 0x7fff5b2efff7 com.apple.GenerationalStorage (2.0 - 285.101) <549328C8-3D7D-3DE6-A9D0-CB8CEC4EB81F> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff5bd84000 - 0x7fff5bd93fff com.apple.GraphVisualizer (1.0 - 5) <CAFE626E-9738-3C14-88AA-B6A9182F2C39> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff5bee4000 - 0x7fff5bf59fff com.apple.Heimdal (4.0 - 2.0) <D99FF31F-6310-3D80-8AE3-64934385AC11> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff5d349000 - 0x7fff5d350ffb com.apple.IOAccelerator (404.2.2 - 404.2.2) <7421825E-13D4-3C74-932D-34E8A605C281> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff5d354000 - 0x7fff5d36dfff com.apple.IOPresentment (1.0 - 42.6) <87D19032-52DB-34A5-A554-23B3464EFC82> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff5d782000 - 0x7fff5d7b1ff7 com.apple.IconServices (379 - 379) <694E17A6-471B-3C57-92D6-ECC4295FB859> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff5d8dd000 - 0x7fff5d8e1fff com.apple.InternationalSupport (1.0 - 10.15.6) <D319CB1C-5339-30EB-93EA-3CFB328BEC9A> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff5d94e000 - 0x7fff5d95bfff com.apple.IntlPreferences (2.0 - 227.15.8) <94B5C14D-E635-3722-9BD3-E17ECDD72DB1> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff5da51000 - 0x7fff5da64fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <02ECB210-513F-3BDE-8150-A828E901FA02> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff5da7f000 - 0x7fff5db76fff com.apple.LanguageModeling (1.0 - 159.15.15) <34609F31-4DA1-3881-8947-85BEA7AFC938> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff5db77000 - 0x7fff5dbb8ff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <07E008F3-E823-333B-8B41-A46024AB0561> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff5dbbf000 - 0x7fff5dbc5ff7 com.apple.LinguisticData (1.0 - 238.23.4) <37948616-56E6-3758-BEFE-28586FF99E12> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff5e424000 - 0x7fff5e427fff com.apple.Mangrove (1.0 - 25) <8DF73279-BCEB-38CE-AE83-571C1B3FF45B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff5e4b5000 - 0x7fff5e4dcffb com.apple.MarkupUI (1.0 - 232.3.27) <5D7DBEC5-BC74-3D4D-B035-41AAF8190B7F> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff5e545000 - 0x7fff5e578ff3 com.apple.MediaKit (16 - 906) <AA899ADE-7163-3F27-9996-14FFA6506BFD> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff5e922000 - 0x7fff5e94affb com.apple.spotlight.metadata.utilities (1.0 - 1191.53) <09C6DCF6-F87D-3D03-8BD5-FD1DCF90949F> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff5e94b000 - 0x7fff5e9ddfff com.apple.gpusw.MetalTools (1.0 - 1) <B77258A5-909F-37F7-8F1A-2085F7916DD4> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff5eb88000 - 0x7fff5eba3ff3 com.apple.MobileKeyBag (2.0 - 1.0) <26347762-AF60-3412-A951-33BF85244D84> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff5ebb4000 - 0x7fff5ec30ff7 com.apple.Montreal (1.0 - 42.15.8) <2A0EA5B7-4D5E-3048-90CB-686D146A2385> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff5ec31000 - 0x7fff5ec5bff7 com.apple.MultitouchSupport.framework (2410.5 - 2410.5) <3A712911-F672-3BB3-B62B-A2A7BADF3578> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff5eece000 - 0x7fff5eed8fff com.apple.NetAuth (6.2 - 6.2) <E191D736-A442-31BA-B823-EE75DC316D22> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff5f7a5000 - 0x7fff5f7fbfff com.apple.OTSVG (1.0 - ???) <F020144A-D840-390D-A87F-29E8095C78AF> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff6085e000 - 0x7fff60965ff7 com.apple.PencilKit (1.0 - 1) <EA31C4A8-5F3C-3FF4-B48F-DB6882B2273E> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff60966000 - 0x7fff60975ff3 com.apple.PerformanceAnalysis (1.217 - 217) <AA34989F-7E01-303E-8134-5BB37CE82DDF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff60bd0000 - 0x7fff60bd0fff com.apple.PhoneNumbers (1.0 - 1) <23149929-F14F-3495-82AD-F82B97327AFC> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff628dc000 - 0x7fff62933ff3 com.apple.ProtectedCloudStorage (1.0 - 1) <509FC423-3CA1-35C5-8DDC-0DC0DE87760F> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff62934000 - 0x7fff62952ff7 com.apple.ProtocolBuffer (1 - 263.1) <D70A1E3D-D2F7-3765-861C-173F5BBC848B> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff62ae6000 - 0x7fff62ae9ff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <F76FCC02-E537-3CAF-ABD2-0B342BFA6BF8> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff62aea000 - 0x7fff62b00ff3 com.apple.QuickLookThumbnailing (1.0 - 1) <D81BC846-29B5-34FE-8154-1D18EC79B39D> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff62b01000 - 0x7fff62b59f0f com.apple.ROCKit (24 - 24) <FA6B086A-1841-3A5E-800B-CE7A52C3DAF1> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff62c5a000 - 0x7fff62c66ff3 com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.220.5) <096B06A9-2C3F-3515-8241-5292B0658984> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff62c79000 - 0x7fff62c9cffb com.apple.RemoteViewServices (2.0 - 128) <55D89BC9-0613-3910-B63E-9A146D35D91A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff62c9d000 - 0x7fff62cb1fff com.apple.xpc.RemoteXPC (1.0 - 1336.220.5) <208540F3-3FEC-32EE-B010-B73CE4A3609A> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff64611000 - 0x7fff6472ffff com.apple.Sharing (1214.18 - 1214.18) <E6302F6F-2940-3DDB-ADA7-EE123DD6D027> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff654e9000 - 0x7fff6579bff3 com.apple.SkyLight (1.600.0 - 337.5) <52BC8AB1-3518-3E4C-B1B1-0A8A8067574F> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff65f6c000 - 0x7fff65f79fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <FABB97BC-9555-33FE-B6C5-606CC403CE16> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff66dda000 - 0x7fff66e67ff7 com.apple.Symbolication (10.1 - 64460.8) <7DDC5C90-947F-34FF-864D-5ED3C2B746A9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff67370000 - 0x7fff6737dffb com.apple.TCC (1.0 - 1) <81F88B91-49C1-36E7-8A39-C4BD654EE942> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff675f0000 - 0x7fff676b7ff7 com.apple.TextureIO (3.8.4 - 3.8.1) <83CDF659-E5B3-381F-BDA1-FF0BFA17B5EE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff67715000 - 0x7fff67730fff com.apple.ToneKit (1.0 - 1) <650551BF-1E2D-39B1-9412-886B9194FA68> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff67731000 - 0x7fff67759ffb com.apple.ToneLibrary (1.0 - 1) <D4F26E76-D04A-3D04-817D-0C8B5E68D5C5> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff67778000 - 0x7fff67932fff com.apple.UIFoundation (1.0 - 551) <65A80450-7A24-3366-B521-4D02C4DB5094> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff68621000 - 0x7fff6870aff7 com.apple.ViewBridge (401.1 - 401.1) <E76BC854-5B08-3FFF-AA2C-9679754FCAF0> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff68f30000 - 0x7fff68f33fff com.apple.dt.XCTTargetBootstrap (1.0 - 1) <5F779D77-4AB1-3CCD-9AAF-101EC7E4905B> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff69364000 - 0x7fff69366ff3 com.apple.loginsupport (1.0 - 1) <67BC49D6-320F-33ED-912E-16E5A342F385> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff69367000 - 0x7fff6937cfff com.apple.login (3.0 - 3.0) <D6486C5A-E644-3F43-AD27-5E14685CD8D6> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff693b3000 - 0x7fff693e5ffb com.apple.contacts.vCard (1.0 - ???) <E616D166-8B7D-3C5E-89AA-7E6957B804DD> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff69621000 - 0x7fff69659fff libCRFSuite.dylib (41.15.4) <92752A96-D1CF-3CA1-837A-1E075AE4C642> /usr/lib/libCRFSuite.dylib
0x7fff6965c000 - 0x7fff69667ff7 libChineseTokenizer.dylib (28.15.3) <55572692-4918-3C54-AD35-726E03EC47D5> /usr/lib/libChineseTokenizer.dylib
0x7fff69668000 - 0x7fff696f4ff7 libCoreStorage.dylib (546.50.1) <F2BECC83-911F-31AB-A776-7DB8049F15B3> /usr/lib/libCoreStorage.dylib
0x7fff696f8000 - 0x7fff696f9ff7 libDiagnosticMessagesClient.dylib (107) <15210AC0-61F9-3F9D-A159-A009F62EB537> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff69730000 - 0x7fff698f3ff7 libFosl_dynamic.dylib (18.3.2) <D67B74E9-EB95-38BC-995C-5F4CC044C3F7> /usr/lib/libFosl_dynamic.dylib
0x7fff69914000 - 0x7fff6991bfff libMatch.1.dylib (31.200.1) <5F633A34-4719-3E14-8384-B43F5DF1F514> /usr/lib/libMatch.1.dylib
0x7fff69949000 - 0x7fff69968ff7 libMobileGestalt.dylib (645.220.9) <C2C55511-993B-34D2-9040-902BFDA38141> /usr/lib/libMobileGestalt.dylib
0x7fff69969000 - 0x7fff69969fff libOpenScriptingUtil.dylib (179) <441A2E60-5D5C-3567-9B00-AA22E6EE5358> /usr/lib/libOpenScriptingUtil.dylib
0x7fff69aaa000 - 0x7fff69aabffb libSystem.B.dylib (1252.200.5) <25F4A1F5-6551-312F-B397-C8D45ACC530A> /usr/lib/libSystem.B.dylib
0x7fff69b35000 - 0x7fff69b36fff libThaiTokenizer.dylib (2.15.1) <F09EB0BB-1E8A-3391-BEF5-7D91F0715A62> /usr/lib/libThaiTokenizer.dylib
0x7fff69b49000 - 0x7fff69b5fffb libapple_nghttp2.dylib (1.24.1) <71C126C5-D869-3E67-9778-058FA7F3CA74> /usr/lib/libapple_nghttp2.dylib
0x7fff69b60000 - 0x7fff69b89ffb libarchive.2.dylib (54.200.3) <32B8634D-E465-3F6D-B254-A20D44504508> /usr/lib/libarchive.2.dylib
0x7fff69b8a000 - 0x7fff69c09fef libate.dylib (1.13.8) <C7F1CEC4-467F-34B2-92FF-6482460A39E1> /usr/lib/libate.dylib
0x7fff69c0d000 - 0x7fff69c0dff3 libauto.dylib (187) <003DEF68-0C59-3AFB-A7B7-A1B5ED301AF2> /usr/lib/libauto.dylib
0x7fff69ce4000 - 0x7fff69cf4ff3 libbsm.0.dylib (39.200.18) <58A9ACEC-BF46-3A4E-86F5-3DD9AD7095B4> /usr/lib/libbsm.0.dylib
0x7fff69cf5000 - 0x7fff69d03fff libbz2.1.0.dylib (38.200.3) <4DEC3797-087F-3C8D-815B-48E895813251> /usr/lib/libbz2.1.0.dylib
0x7fff69d04000 - 0x7fff69d5bff7 libc++.1.dylib (400.9.4) <B260AC33-EB9A-30C6-8746-D011B3B02B08> /usr/lib/libc++.1.dylib
0x7fff69d5c000 - 0x7fff69d71fff libc++abi.dylib (400.17) <446F4748-8A89-3D2E-AE1C-27EEBE93A8AB> /usr/lib/libc++abi.dylib
0x7fff69d72000 - 0x7fff69d72ff3 libcharset.1.dylib (51.200.6) <43F7E100-F5D1-36AB-A26E-CF94196A19C0> /usr/lib/libcharset.1.dylib
0x7fff69d73000 - 0x7fff69d83ffb libcmph.dylib (6.15.1) <CEDA6538-C071-3B5A-948E-DF61E2878983> /usr/lib/libcmph.dylib
0x7fff69d84000 - 0x7fff69d9cffb libcompression.dylib (52.200.13) <05A2A91B-D24D-39E8-A071-261CBC5BB158> /usr/lib/libcompression.dylib
0x7fff6a047000 - 0x7fff6a05dfff libcoretls.dylib (155.220.1) <1229F9EA-C070-3D03-9DC6-F548C59F9FD5> /usr/lib/libcoretls.dylib
0x7fff6a05e000 - 0x7fff6a05fff3 libcoretls_cfhelpers.dylib (155.220.1) <33661841-3C3B-3608-86AC-C88D1CD6FE98> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff6a6c2000 - 0x7fff6a6cdff7 libcsfde.dylib (546.50.1) <2E741DA2-B368-3913-9F45-6F7B8B85B1CF> /usr/lib/libcsfde.dylib
0x7fff6a6d6000 - 0x7fff6a72dffb libcups.2.dylib (462.10) <29B6D106-A5F2-321D-8916-90F595545D88> /usr/lib/libcups.2.dylib
0x7fff6a865000 - 0x7fff6a865fff libenergytrace.dylib (17.200.1) <F5BA8134-16F9-31CD-90E1-D1EBEBADA4AE> /usr/lib/libenergytrace.dylib
0x7fff6a866000 - 0x7fff6a87fffb libexpat.1.dylib (16.1.1) <E07F7B76-4030-3CAF-9F41-FCE38957915C> /usr/lib/libexpat.1.dylib
0x7fff6a897000 - 0x7fff6a89cff7 libgermantok.dylib (17.15.2) <9381B152-5CFD-3D23-A5A7-4D64EE55B85E> /usr/lib/libgermantok.dylib
0x7fff6a89d000 - 0x7fff6a8a2ff7 libheimdal-asn1.dylib (520.220.2) <D851A47D-E162-35F8-B8D4-6ABEA7FFDAD7> /usr/lib/libheimdal-asn1.dylib
0x7fff6a8ce000 - 0x7fff6a9bfff7 libiconv.2.dylib (51.200.6) <9FB95807-7C62-32B7-A19F-946D7FB7CCA6> /usr/lib/libiconv.2.dylib
0x7fff6a9c0000 - 0x7fff6ac23ffb libicucore.A.dylib (62109.0.1) <FEB89BD3-79C4-3208-A754-7E6BC4D38548> /usr/lib/libicucore.A.dylib
0x7fff6ac70000 - 0x7fff6ac71fff liblangid.dylib (128.15.1) <663D0A24-7260-31D1-9BFE-74D67B6F72F6> /usr/lib/liblangid.dylib
0x7fff6ac72000 - 0x7fff6ac8afff liblzma.5.dylib (10.200.3) <9A52A949-0CB1-39B6-9244-D079FB609559> /usr/lib/liblzma.5.dylib
0x7fff6aca2000 - 0x7fff6ad52fff libmecab.1.0.0.dylib (779.24.1) <590BC39C-2A3E-368B-9499-C808B84C4955> /usr/lib/libmecab.1.0.0.dylib
0x7fff6ad53000 - 0x7fff6af90ff7 libmecabra.dylib (779.24.1) <22BFD5A8-EA42-3DC3-8910-F27DCFB1B631> /usr/lib/libmecabra.dylib
0x7fff6b168000 - 0x7fff6b4c0ffb libnetwork.dylib (1229.230.4) <B76F8990-85CD-382D-BDF4-58C4AD4CE6C4> /usr/lib/libnetwork.dylib
0x7fff6b551000 - 0x7fff6bcd7fe7 libobjc.A.dylib (750.1) <804715F4-F52D-34D0-8FEC-A25DC08513C3> /usr/lib/libobjc.A.dylib
0x7fff6bcea000 - 0x7fff6bceeffb libpam.2.dylib (22.200.1) <85253002-89F2-3872-9C8A-1801303A2EBB> /usr/lib/libpam.2.dylib
0x7fff6bcf1000 - 0x7fff6bd27ff7 libpcap.A.dylib (79.200.4) <6D25197A-2F7C-3147-A45A-F6F13E55909F> /usr/lib/libpcap.A.dylib
0x7fff6be41000 - 0x7fff6be59ffb libresolv.9.dylib (65.200.2) <A1A77B4E-1AF0-3039-9945-D05440494E00> /usr/lib/libresolv.9.dylib
0x7fff6be5b000 - 0x7fff6be97ff7 libsandbox.1.dylib (851.230.3) <F9A8198C-9FE6-3DE0-8D4C-FA09B4F348D3> /usr/lib/libsandbox.1.dylib
0x7fff6be98000 - 0x7fff6beaaff7 libsasl2.2.dylib (211) <4A339F6D-927B-31C2-AAC5-896094D7A0B7> /usr/lib/libsasl2.2.dylib
0x7fff6beab000 - 0x7fff6beacff7 libspindump.dylib (267.1) <9DEA015B-410E-3D6E-A3EE-54E046092EA9> /usr/lib/libspindump.dylib
0x7fff6bead000 - 0x7fff6c084fe7 libsqlite3.dylib (274.20) <7B202039-5DDF-3140-808C-521E8F11394E> /usr/lib/libsqlite3.dylib
0x7fff6c311000 - 0x7fff6c314ffb libutil.dylib (51.200.4) <10C5E165-0939-363A-9D13-7076F3B513EC> /usr/lib/libutil.dylib
0x7fff6c315000 - 0x7fff6c322fff libxar.1.dylib (404) <16E875B3-CF89-3059-87BB-36D301B32E7B> /usr/lib/libxar.1.dylib
0x7fff6c327000 - 0x7fff6c40afff libxml2.2.dylib (32.8) <3E7875AC-3195-3800-AC48-8AA3B7BE51E4> /usr/lib/libxml2.2.dylib
0x7fff6c40b000 - 0x7fff6c433ff3 libxslt.1.dylib (16.1) <D6EBFEBB-F88E-398F-B1B5-66F413C2CD32> /usr/lib/libxslt.1.dylib
0x7fff6c434000 - 0x7fff6c446ffb libz.1.dylib (70.200.4) <15F7B40A-424C-33BB-BF2C-7E8195128B78> /usr/lib/libz.1.dylib
0x7fff6c4b7000 - 0x7fff6c4bbff3 libcache.dylib (81) <704331AC-E43D-343A-8C24-39201142AF27> /usr/lib/system/libcache.dylib
0x7fff6c4bc000 - 0x7fff6c4c6ff3 libcommonCrypto.dylib (60118.220.1) <9C865644-EE9A-3662-AB77-7C8A5E561784> /usr/lib/system/libcommonCrypto.dylib
0x7fff6c4c7000 - 0x7fff6c4cefff libcompiler_rt.dylib (63.4) <817772E3-E836-3FFD-A39B-BDCD1C357221> /usr/lib/system/libcompiler_rt.dylib
0x7fff6c4cf000 - 0x7fff6c4d8ff3 libcopyfile.dylib (146.200.3) <5C5C4F35-DAB7-3CF1-940F-F47192AB8289> /usr/lib/system/libcopyfile.dylib
0x7fff6c4d9000 - 0x7fff6c55dfdf libcorecrypto.dylib (602.230.1) <C78D1A87-5543-3561-BEB4-3B480BA94ECB> /usr/lib/system/libcorecrypto.dylib
0x7fff6c5e4000 - 0x7fff6c61eff7 libdispatch.dylib (1008.220.2) <2FDB1401-5119-3DF0-91F5-F4E105F00CD7> /usr/lib/system/libdispatch.dylib
0x7fff6c61f000 - 0x7fff6c64eff3 libdyld.dylib (640.2) <376E3F3A-6942-3B0E-AD5E-4B97E8255CF5> /usr/lib/system/libdyld.dylib
0x7fff6c64f000 - 0x7fff6c64fffb libkeymgr.dylib (30) <A4EFD9A4-2EF3-3E18-B325-F527E3821939> /usr/lib/system/libkeymgr.dylib
0x7fff6c650000 - 0x7fff6c65cff7 libkxld.dylib (4903.231.4) <7275D7AD-54CE-30BF-9459-18EA77E28ACC> /usr/lib/system/libkxld.dylib
0x7fff6c65d000 - 0x7fff6c65dff7 liblaunch.dylib (1336.220.5) <8563299C-2493-3DBD-8E88-3FC673DB47DD> /usr/lib/system/liblaunch.dylib
0x7fff6c65e000 - 0x7fff6c663fff libmacho.dylib (921) <6ADB99F3-D142-3A0A-B3CE-031354766ACC> /usr/lib/system/libmacho.dylib
0x7fff6c664000 - 0x7fff6c666ffb libquarantine.dylib (86.220.1) <58524FD7-63C5-38E0-9D90-845A79551C14> /usr/lib/system/libquarantine.dylib
0x7fff6c667000 - 0x7fff6c668ff3 libremovefile.dylib (45.200.2) <BA53CA8A-9974-3A43-9265-B110B1AE470F> /usr/lib/system/libremovefile.dylib
0x7fff6c669000 - 0x7fff6c680ff3 libsystem_asl.dylib (356.200.4) <33C62769-1242-3BC1-9459-13CBCDECC7FE> /usr/lib/system/libsystem_asl.dylib
0x7fff6c681000 - 0x7fff6c681fff libsystem_blocks.dylib (73) <152EDADF-7D94-35F2-89B7-E66DCD945BBA> /usr/lib/system/libsystem_blocks.dylib
0x7fff6c682000 - 0x7fff6c70afff libsystem_c.dylib (1272.200.26) <D6C701A2-9F17-308D-B6AC-9E17EF31B7DF> /usr/lib/system/libsystem_c.dylib
0x7fff6c70b000 - 0x7fff6c70eff7 libsystem_configuration.dylib (963.200.27) <94898525-ECC8-3CC9-B312-CBEAAC305E32> /usr/lib/system/libsystem_configuration.dylib
0x7fff6c70f000 - 0x7fff6c712ff7 libsystem_coreservices.dylib (66) <10818C17-70E1-328E-A3E3-C3EB81AEC590> /usr/lib/system/libsystem_coreservices.dylib
0x7fff6c713000 - 0x7fff6c719ffb libsystem_darwin.dylib (1272.200.26) <07468CF7-982F-37C4-83D0-D5E602A683AA> /usr/lib/system/libsystem_darwin.dylib
0x7fff6c71a000 - 0x7fff6c720ff7 libsystem_dnssd.dylib (878.230.2) <FF9D5025-F060-334B-B6D8-C5D0BB6A55E3> /usr/lib/system/libsystem_dnssd.dylib
0x7fff6c721000 - 0x7fff6c76dff3 libsystem_info.dylib (517.200.9) <54B65F21-2E93-3579-9B72-6637A03245D9> /usr/lib/system/libsystem_info.dylib
0x7fff6c76e000 - 0x7fff6c796ff7 libsystem_kernel.dylib (4903.231.4) <ABDAABCA-C22A-3960-AA4E-E91A9FF34929> /usr/lib/system/libsystem_kernel.dylib
0x7fff6c797000 - 0x7fff6c7e2ff7 libsystem_m.dylib (3158.200.7) <AF25F8E8-194C-314F-A2D3-A424853EE796> /usr/lib/system/libsystem_m.dylib
0x7fff6c7e3000 - 0x7fff6c807ff7 libsystem_malloc.dylib (166.220.1) <4777DC06-F9C6-356E-82AB-86A1C6D62F3A> /usr/lib/system/libsystem_malloc.dylib
0x7fff6c808000 - 0x7fff6c813ff3 libsystem_networkextension.dylib (767.220.1) <74818C3D-9B68-3823-A737-6A4B782618F2> /usr/lib/system/libsystem_networkextension.dylib
0x7fff6c814000 - 0x7fff6c81bfff libsystem_notify.dylib (172.200.21) <65B3061D-41D7-3485-B217-A861E05AD50B> /usr/lib/system/libsystem_notify.dylib
0x7fff6c81c000 - 0x7fff6c825fef libsystem_platform.dylib (177.200.16) <83DED753-51EC-3B8C-A98D-883A5184086B> /usr/lib/system/libsystem_platform.dylib
0x7fff6c826000 - 0x7fff6c830fff libsystem_pthread.dylib (330.230.1) <BA382BFC-6A17-3940-B417-D090EF2AF4F4> /usr/lib/system/libsystem_pthread.dylib
0x7fff6c831000 - 0x7fff6c834ff7 libsystem_sandbox.dylib (851.230.3) <4D0CB1CA-160C-3C29-BE5D-131D68D43B1B> /usr/lib/system/libsystem_sandbox.dylib
0x7fff6c835000 - 0x7fff6c837ff3 libsystem_secinit.dylib (30.220.1) <5964B6D2-19D4-3CF9-BDBC-4EB1D42348F1> /usr/lib/system/libsystem_secinit.dylib
0x7fff6c838000 - 0x7fff6c83fff7 libsystem_symptoms.dylib (820.237.2) <487E1794-4C6E-3B1B-9C55-95B1A5FF9B90> /usr/lib/system/libsystem_symptoms.dylib
0x7fff6c840000 - 0x7fff6c855ff7 libsystem_trace.dylib (906.220.1) <4D4BA88A-FA32-379D-8860-33838723B35F> /usr/lib/system/libsystem_trace.dylib
0x7fff6c857000 - 0x7fff6c85cffb libunwind.dylib (35.4) <EF1A77FD-A86B-39F5-ABEA-6100AB23583A> /usr/lib/system/libunwind.dylib
0x7fff6c85d000 - 0x7fff6c88dfff libxpc.dylib (1336.220.5) <DC50F33E-C47D-3256-BFE0-F8E9B5AEBE17> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 881381
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=528.5M resident=0K(0%) swapped_out_or_unallocated=528.5M(100%)
Writable regions: Total=340.6M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=340.6M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 2
Activity Tracing 256K 2
CG backing stores 248K 3
CG image 60K 10
CoreAnimation 148K 18
CoreGraphics 8K 2
CoreImage 8K 3
CoreServices 140K 2
CoreUI image data 396K 10
CoreUI image file 404K 6
Dispatch continuations 8192K 2
Foundation 4K 2
IOKit 7940K 2
Kernel Alloc Once 8K 2
MALLOC 61.6M 23
MALLOC guard page 32K 9
Memory Tag 242 12K 2
Memory Tag 255 137.8M 47
PROTECTED_MEMORY 4K 2
STACK GUARD 56.1M 38
Stack 242.8M 40
VM_ALLOCATE 15.1M 37
__DATA 39.7M 324
__FONT_DATA 4K 2
__LINKEDIT 218.4M 10
__TEXT 310.1M 326
__UNICODE 564K 2
mapped file 72.1M 30
shared memory 672K 15
=========== ======= =======
TOTAL 1.1G 944
</details>
### Branch
[Repo](https://github.com/KiranNiranjan/electron-bugs/tree/crash)
### Steps to repoduce the crash
```sh
$ git clone https://github.com/KiranNiranjan/electron-bugs -b crash
$ npm install
$ npm start || electron .
$ Click on `open window` button (did not crash?! try again)
$ Electron crashes
```
**Additional Information**
I think this is because the window is closed even befor its task is complete?
CC: @VishwasShashidhar @zcbenz
|
https://github.com/electron/electron/issues/16202
|
https://github.com/electron/electron/pull/16472
|
0b0679e065230b1d73dda656c3947a92abdcafd8
|
ac65f3884225971c1c1f8b62fa8f49d44873abe2
| 2018-12-27T11:13:09Z |
c++
| 2019-01-21T22:56:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,199 |
["docs/api/webview-tag.md"]
|
Webview autosize attribute removed but docs remain.
|
Support for the webview `autosize` attribute was removed (#13869), but the [webview documentation](https://github.com/electron/electron/blob/master/docs/api/webview-tag.md#autosize) still references the feature.
|
https://github.com/electron/electron/issues/16199
|
https://github.com/electron/electron/pull/16884
|
c92233cbc811b6a81cdd6f0deff748a7ccc82d5c
|
7baa218ca904b72b350391adcae4c208562d6e41
| 2018-12-27T01:03:02Z |
c++
| 2019-02-11T22:15:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,187 |
["patches/common/boringssl/.patches", "patches/common/boringssl/expose_aes-cfb.patch", "spec/node-spec.js"]
|
openpgp in 4.0 not working
|
* Output of `node_modules/.bin/electron --version`: v4.0.0
* Operating System (Platform and Version): win
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 3.1.0-beta.4
**Expected Behavior**
const openpgp = require('openpgp')
async function readKey() {
let armored = await openpgp.key.readArmored(pubkey);
console.log(armored);
publicKeys = armored.keys;
}
readKey();
should print '{keys: [Object]}'
**Actual behavior**
It will print
```
{ keys: [],
err:
[ TypeError: (var).countUse is not a function
at Object.transformPair (C:\Users\Jan\Documents\editor\node_modules\openpgp\dist\openpgp.js:23051:20)
at Promise (C:\Users\Jan\Documents\editor\node_modules\openpgp\dist\openpgp.js:29722:65)
at new Promise (<anonymous>)
at Object.dearmor [as decode] (C:\Users\Jan\Documents\editor\node_modules\openpgp\dist\openpgp.js:29710:10)
at Object.readArmored (C:\Users\Jan\Documents\editor\node_modules\openpgp\dist\openpgp.js:32247:41)
at readKey (C:\Users\Jan\Documents\editor\config\pgp.js:53:35)
at Object.<anonymous> (C:\Users\Jan\Documents\editor\config\pgp.js:57:1)
at Object.<anonymous> (C:\Users\Jan\Documents\editor\config\pgp.js:75:3)
at Module._compile (internal/modules/cjs/loader.js:693:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:704:10) ] }
```
instead. Note that countUse does not occur anywhere in openpgp package. It must come from Electron 4.0
|
https://github.com/electron/electron/issues/16187
|
https://github.com/electron/electron/pull/16573
|
c7677b23e6df4ea8244ed82ecac18a777caace5a
|
9ed89ace976682809f97e165430d65cde493cb4a
| 2018-12-24T08:29:01Z |
c++
| 2019-01-30T18:34:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,173 |
["npm/package.json"]
|
Electron 3 and 4 package.json contains @types/node ^8.0.24 but release notes mention note 10.11
|
* Output of `node_modules/.bin/electron --version`: v4.0.0
* Operating System (Platform and Version): Windows 10
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
v2
**Expected Behavior**
Unable to use the latest additions on node v10 using typescript
**Actual behavior**
We can only use note v8 features.
Please update @types/node version in electron package.json
|
https://github.com/electron/electron/issues/16173
|
https://github.com/electron/electron/pull/16174
|
51cfb5cff1ae5176ac991ec4f084b818f050387d
|
18ca4b6a3a23d522d28e16ff6d408a7a41bb7bbf
| 2018-12-21T15:29:20Z |
c++
| 2018-12-21T17:59:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,168 |
["atom/browser/api/atom_api_power_monitor.cc", "atom/browser/api/atom_api_screen.cc", "docs/api/power-monitor.md", "docs/api/screen.md", "filenames.gni", "lib/browser/api/power-monitor.ts", "lib/browser/api/screen.js", "lib/browser/api/screen.ts", "lib/browser/utils.ts", "spec-main/events-helpers.ts"]
|
require screen module before app ready causes error
|
Affects all supported Electron versions and platforms and has been reported and closed before [here](https://github.com/electron/electron/issues/5897) in 2016.
**Expected Behavior**
This should not have any side effects:
```typescript
const { screen } = require('electron');
```
**Actual behavior**
However it gives an error:
`Error: Cannot require "screen" module before app is ready`
As well as the undesired side effects, the error is pretty poor as we're not even requiring the screen module, we're simply accessing the property.
This also means the docs ask developers to do unnecessary complicated things like:
```
const electron = require('electron')
const { app, BrowserWindow } = require('electron')
app.on('ready', () => {
let displays = electron.screen.getAllDisplays()
```
**Additional Information**
The session API cannot be used before app ready, but can be required without side effects:
```
// This doesn't result in an error
const { session } = require('electron');
```
The APIs that are unavailable before app ready should at least behave consistently.
|
https://github.com/electron/electron/issues/16168
|
https://github.com/electron/electron/pull/17496
|
4ee201c56e22f0319b8c1700efaaa10804f095db
|
7b55ee9d36b84230d2a63c7ce230b02b08ee17f0
| 2018-12-21T03:44:23Z |
c++
| 2019-04-30T00:46:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,160 |
["atom/common/keyboard_util.cc", "docs/api/accelerator.md"]
|
Enable "Scroll Lock" for globalShortcut.register
|
For our project, we want to open our electron app from tray with a keypress on "Scroll Lock" (js keycode 145) but this is no registered accelerator that we can use.
|
https://github.com/electron/electron/issues/16160
|
https://github.com/electron/electron/pull/16873
|
d57b9cb47fc38903453a1839ebe5da8fa17f4c6d
|
3effa6f20c48219bebea66a4b6f3250697be199d
| 2018-12-20T14:54:40Z |
c++
| 2019-02-11T19:13:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,090 |
["atom/browser/api/atom_api_system_preferences.cc", "atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_mac.mm", "docs/api/system-preferences.md"]
|
macOS: Expose APIs to check an Accessibility consent in "Privacy & Security"
|
**Is your feature request related to a problem? Please describe.**
It's mostly related to #14837. Without "Accessibility" consent in "Privacy and Security" since Mojave electron will crash on unregisterAll and return incorrect result in register (true even if it actually wasn't registered) for media shortcuts.
It also will be good to be able to ask for this consent manually or check it's presence.
**Describe the solution you'd like**
Expose [AXIsProcessTrustedWithOptions](https://developer.apple.com/documentation/applicationservices/1459186-axisprocesstrustedwithoptions) with both popup showing and not and add these checks to register/unregister/unregisterAll for Mojave.
**Describe alternatives you've considered**
I've created [a small node.js package](https://github.com/4ndv/node-mac-accessibility-features-check) to perform this checks on my app side, but it's still an incorrect behavior to crash on unregisterAll
|
https://github.com/electron/electron/issues/16090
|
https://github.com/electron/electron/pull/16119
|
dc93d94bc82a5f52c1899888ffb0727ba8957b33
|
a58d989b60ef3b34181a34fae58e35a1212b02ee
| 2018-12-16T05:47:51Z |
c++
| 2018-12-18T16:15:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,078 |
["atom/common/native_mate_converters/gfx_converter.cc", "docs/api/structures/display.md", "spec/api-screen-spec.js"]
|
Expose internal/external and primary/secondary status of Display
|
I need [Display](https://github.com/electron/electron/blob/master/docs/api/structures/display.md) to expose a boolean (at least) indicating whether the display is the primary or a secondary display, and whether it is a laptop's internal or external display.
The current documentation for [screen](https://github.com/electron/electron/blob/master/docs/api/screen.md) suggests finding the primary display by finding the display with its top left corner at the origin of the coordinate space, but I do not expect this to work in unusual display layouts. There appears to be no current method for determining which display(s) are internal or external.
On Mac the primary display is always NSScreen.screens()[0] and other screens are non-primary, which I think can already be detected in Electron from the ordering of electron.screen.getAllDisplays(). On Windows screens can appear in arbitrary order and [Screen.Primary](https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.screen.primary) indicates whether a screen is primary or secondary.
On Mac the internal-ness of a display can be determined with [CGDisplayIsBuiltin](https://developer.apple.com/documentation/coregraphics/1454566-cgdisplayisbuiltin?language=objc). On Windows... I'm not sure if/how this can be accomplished.
|
https://github.com/electron/electron/issues/16078
|
https://github.com/electron/electron/pull/16870
|
5a44cc50cf5ad4ab40d1faf954def7509ce89904
|
bf276ecc69fdf5c7fe25c6c236ca799381f951ec
| 2018-12-14T21:11:26Z |
c++
| 2019-02-12T15:34:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,019 |
["spec/api-content-tracing-spec.js"]
|
An app crashes when `contentTracing.stopRecording` is called with an empty string as its first argument
|
* Electron 3 - all versions
* Windows 10
* Works in Electron 2 - all versions
**Expected Behavior**
ContentTracing example code from the Electron documentation should not crash.
**Actual behavior**
ContentTracing api crashes after startRecording is called. It looks like some issue with the callback.
```javascript
const { app, contentTracing } = require('electron')
app.on('ready', () => {
const options = {
categoryFilter: '*',
traceOptions: 'record-until-full,enable-sampling'
}
contentTracing.startRecording(options, () => {
console.log('Tracing started')
setTimeout(() => {
// *** Following line crashes ***
contentTracing.stopRecording('', (path) => {
console.log('Tracing data recorded to ' + path)
})
}, 5000)
})
})
```
|
https://github.com/electron/electron/issues/16019
|
https://github.com/electron/electron/pull/18391
|
72b1c018369895391ef1900d9e782b306769693c
|
b48dd6a11cd6d9be2cb08536b71cc1378e8d7ab3
| 2018-12-11T15:07:19Z |
c++
| 2019-05-23T17:15:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 16,006 |
["electron_paks.gni"]
|
4.0 regression: chrome://resources/js/util.js fails to load (net::ERR_FAILED) on chrome://webrtc-internals/
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-beta.8 x86
* Operating System (Platform and Version): win7 sp1 x64
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): v3.1.0-beta.2 x86
**Expected Behavior**
chrome://webrtc-internals/ loading without errors
**Actual behavior**
chrome://resources/js/util.js fails to load
**To Reproduce**
run
```js
'use strict';
const {app, BrowserWindow} = require('electron');
let win;
app.on('ready', async () => {
win = new BrowserWindow({
width: 1440,
height: 900,
useContentSize: true,
webPreferences: {
nodeIntegration: false,
},
});
win.loadURL('chrome://webrtc-internals/');
win.webContents.openDevTools({mode: 'right'});
});
```
**Screenshots**

|
https://github.com/electron/electron/issues/16006
|
https://github.com/electron/electron/pull/16009
|
e383aa31c81671d40a824e9a76b8d7f57359ca08
|
f3c64ea9d8e3b0170a39fbb676b3867a64d4bf36
| 2018-12-10T23:43:03Z |
c++
| 2018-12-11T17:07:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,912 |
["atom/browser/ui/cocoa/atom_menu_controller.mm", "lib/browser/api/menu-item-roles.js", "spec/api-menu-item-spec.js"]
|
The `windowMenu` MenuItem role is incorrect on macOS
|
* Output of `node_modules/.bin/electron --version`: v3.0.10
* Operating System (Platform and Version): macOS 10.14.1
**Expected Behavior**
I expected the `windowMenu` role to make the menu look like a native macOS app.
Here's how it should look like (From a new Xcode macOS project):
<img width="170" alt="fresh xcode project" src="https://user-images.githubusercontent.com/170270/49296966-23824800-f4ec-11e8-8b12-738311cee241.png">
**Actual behavior**
Here's how it actually looks like (In Electron):
<img width="170" alt="windowmenu" src="https://user-images.githubusercontent.com/170270/49296869-f59d0380-f4eb-11e8-9ff1-2eee8b49d558.png">
Notice how it's missing the `Zoom` menu item and the list of windows. It should also not have a `Close Window` menu item, that should be in the `File` menu.
|
https://github.com/electron/electron/issues/15912
|
https://github.com/electron/electron/pull/16387
|
df62e78b711ecf97d6c3f494ece1d30a8092337b
|
52e257668dd55a78dec0cac3427e7002f441baef
| 2018-12-01T13:54:38Z |
c++
| 2019-01-14T16:27:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,911 |
["atom/browser/api/atom_api_top_level_window.cc", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "atom/browser/native_window_views.cc", "atom/browser/native_window_views.h", "spec/api-browser-window-spec.js", "spec/package-lock.json", "spec/package.json"]
|
BrowserWindow.getNativeWindowHandle() returns same value in different BrowserWindow
|
* Output of `node_modules/.bin/electron --version`: 4.0.0-beta.8
* Operating System (Platform and Version): Windows 10 1803
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 4.0.0-beta.7
**Expected Behavior**
`BrowserWindow.getNativeWindowHandle()` should return different value for different window
**Actual behavior**
`BrowserWindow.getNativeWindowHandle()` returns same value for different window, which is not true nativeWindowHandle for any of them.
**To Reproduce**
Open two `BrowserWindow`, and run `getNativeWindowHandle` on both `BrowserWindow`
```js
const { remote } = require('electron')
w1 = new remote.BrowserWindow()
w2 = new remote.BrowserWindow()
console.log(w1.getNativeWindowHandle(), w2.getNativeWindowHandle())
```

|
https://github.com/electron/electron/issues/15911
|
https://github.com/electron/electron/pull/16014
|
f3c64ea9d8e3b0170a39fbb676b3867a64d4bf36
|
624ade2c257f5dd6e915023f261d829e36540333
| 2018-12-01T13:10:27Z |
c++
| 2018-12-11T17:45:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,877 |
["atom/browser/api/atom_api_app.cc", "atom/browser/api/atom_api_app.h", "atom/browser/api/atom_api_app_mac.mm", "atom/browser/atom_browser_main_parts.cc", "atom/browser/atom_browser_main_parts.h", "atom/browser/atom_browser_main_parts_mac.mm", "docs/api/app.md", "filenames.gni"]
|
`app.getPath('logs')` throws error on Ubuntu
|
* Output of `node_modules/.bin/electron --version`: v3.0.10
* Operating System (Platform and Version): Ubuntu 18.04.1 LTS
**Expected Behavior**
Executing `app.getPath('logs')` returns path to the log folder of the application.
**Actual behavior**
Throws an error:
```
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Failed to get 'logs' path
at Object.<anonymous> (/home/pawel/workspace/electron-quick-start/main.js:4:21)
at Object.<anonymous> (/home/pawel/workspace/electron-quick-start/main.js:55:3)
at Module._compile (internal/modules/cjs/loader.js:711:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10)
at Module.load (internal/modules/cjs/loader.js:620:32)
at tryModuleLoad (internal/modules/cjs/loader.js:559:12)
at Function.Module._load (internal/modules/cjs/loader.js:551:3)
at loadApplicationPackage (/home/pawel/workspace/electron-quick-start/node_modules/electron/dist/resources/default_app.asar/main.js:287:12)
at Object.<anonymous> (/home/pawel/workspace/electron-quick-start/node_modules/electron/dist/resources/default_app.asar/main.js:328:5)
at Object.<anonymous> (/home/pawel/workspace/electron-quick-start/node_modules/electron/dist/resources/default_app.asar/main.js:365:3)
```
**To Reproduce**
Repo: https://github.com/jarrodek/electron-quick-start/tree/get-path-log
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
```sh
$ git clone https://github.com/jarrodek/electron-quick-start.git -b get-path-log
$ npm install
$ npm start || electron .
```
**Additional Information**
It works on macOS. I haven't tested it on windows or other Linux systems.
|
https://github.com/electron/electron/issues/15877
|
https://github.com/electron/electron/pull/17841
|
841e31b7e63c9eddabc5f2cf0b89a46dbf545b02
|
0749dc4cc1bc4bfd4b9aa27ec51d72007d67d699
| 2018-11-29T06:18:32Z |
c++
| 2019-04-19T05:04:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,834 |
["script/upload-symbols.py"]
|
[Windows] Debugging symbols not found (on Symbol Server?)
|
### Setup
Windows 7 SP 1
Electron v3.0.10
Visual Studio Community 2017 v15.8.8
.NET Framework v4.7.03062
### Description
I am investigating a crash with an Electron based app. To get a proper stack trace, I followed the [guide to set up the symbol server](https://github.com/electron/electron/blob/master/docs/development/setting-up-symbol-server.md). When I run the Electron app in Visual Studio, I see that some symbols are not loaded:
```
'[appname].exe' (Win32): Loaded 'C:\Users\[username]\AppData\Local\[appname]\app-[version]\[appname].exe'. Cannot find or open the PDB file.
'[appname].exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Symbols loaded.
'[appname].exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Symbols loaded.
'[appname].exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Symbols loaded.
'[appname].exe' (Win32): Loaded 'C:\Users\[username]\AppData\Local\[appname]\app-[version]\node.dll'. Cannot find or open the PDB file.
'[appname].exe' (Win32): Loaded 'C:\Windows\SysWOW64\psapi.dll'. Symbols loaded.
[...]
```
### Further settings
My symbol location settings are as follows:

And after the crash I get the following information in Visual Studio:

### Question
Did I miss something for automatic symbol loading? Or is the server not behaving correctly?
|
https://github.com/electron/electron/issues/15834
|
https://github.com/electron/electron/pull/16908
|
cfba59929a2e669eccd9e013384f6e22ff72df0c
|
cd9bf72ee895202071c268911e0208fbd43018cd
| 2018-11-26T13:25:21Z |
c++
| 2019-02-12T22:10:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,816 |
["atom/browser/native_window.cc", "atom/browser/native_window_views.cc", "atom/browser/native_window_views.h", "atom/browser/native_window_views_win.cc", "atom/browser/ui/views/root_view.cc", "atom/browser/ui/views/root_view.h"]
|
BrowserWindow size changed on its own
|
* Output of `node_modules/.bin/electron --version`: v3.0.10
* Operating System (Platform and Version): Windows 10 x64 (1803 17134.345)
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
v3.0.10
**Expected Behavior**
I would like to see the window move across the screen.
**Actual behavior**
The window moves around the screen. But first, the height of the window decreases.
**To Reproduce**
Write simple program that contains code:
`
mainWindow = new BrowserWindow({ width: 370,
height: 270,
x: 100,
y: 100,
resizable: false,
});
`
Start app. Grab the window with the mouse for its title and drag across the screen.
**Additional Information**
This error occurs when explicitly specifying the x, y coordinates of the window and the option "resizable: false".
|
https://github.com/electron/electron/issues/15816
|
https://github.com/electron/electron/pull/16596
|
49ec7e1582147ad1c617438a325e4c12dc602a75
|
cbb5164cc83ae14c16e72b199c10168fbc95240a
| 2018-11-23T13:00:11Z |
c++
| 2019-01-31T02:19:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,815 |
["electron_paks.gni", "spec/chromium-spec.js"]
|
Remote debugging not working with Electron 4.x
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-beta.7
* Operating System (Platform and Version): Windows 7/10 x64, Linux
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 3.0.10
**Expected Behavior**
Remote debugging from Chromium is available for the render processes of applications started with _**--remote-debugging-port=<_port>**_ and Chromium Dev Tools are available and work correctly.
**Actual behavior**
The remote debugger is probably connected to the render process, but no debug tools are available. Chromium shows a blank page.
**To Reproduce**
Start Electron with the remote debuging option (**electron . --remote-debugging-port=<_port>**) and connect to it from Chromium by navigating to 127.0.0.1:<_port>.
With Electron 4.x you will see a blank page. With version 3.x you will see the Chromium Dev Tools UI.
**Additional Information**
Part of the remote debugging functionality still works, e.g. with JetBrains IDEs you can connect to the render process add get console output, variables, and set breakpoints (sometimes 🤣 ).
|
https://github.com/electron/electron/issues/15815
|
https://github.com/electron/electron/pull/15844
|
5bb35bbdafab3b9e930978f632e3f82ab143e93f
|
455f0669e77cee9655188c7a09dd532a1f8b85eb
| 2018-11-23T12:52:06Z |
c++
| 2018-11-27T19:18:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,792 |
["atom/browser/ui/file_dialog_gtk.cc"]
|
Ubuntu file picker doesn't show file preview
|
* Output of `node_modules/.bin/electron --version`: 3.0.10, 4.0.0-beta.7
* Operating System (Platform and Version): Ubuntu 18.04
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): N/A
**Expected Behavior**
When picking a file to upload, the file picker should show a preview of the file when applicable
**Actual behavior**
It does not show a preview...
Chrome shows a preview of the image (tested with 70 and 69).

Electron shows no preview

**To Reproduce**
Nothing special, click on a file upload form element...
```html
<input type="file" />
```
Example here: https://cgi-lib.berkeley.edu/ex/fup.html
|
https://github.com/electron/electron/issues/15792
|
https://github.com/electron/electron/pull/16447
|
c363eed543e7532aeddb36525006d7e4cb76bc88
|
46f818b0c319f714586ae0a6ffe5e34385e89191
| 2018-11-21T11:34:02Z |
c++
| 2019-02-13T16:52:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,789 |
["atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_mac.mm", "docs/api/system-preferences.md"]
|
Notifications posted by systemPreferences.postNotification are not delivered immediately
|
* Output of `node_modules/.bin/electron --version`: Affects all Electron versions
* Operating System (Platform and Version): macOS 10.13.6
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): Affects all Electron versions
**Expected Behavior**
Notifications posted by [systemPreferences.postNotification](https://electronjs.org/docs/api/system-preferences#systempreferencespostnotificationevent-userinfo-macos) should be delivered to subscribers immediately no matter whether subscriber app is active or not.
**Actual behavior**
Notifications are suspended until the receiving app gets activated.
**To Reproduce**
Fiddle:
- https://gist.github.com/turbobabr/e4021ab39126e3afc8ea1cc01e99b5d0
(can be opened by [Electron Fiddle](https://github.com/electron/fiddle))
**Screenshots**
A tiny screencast explaining the problem (using the same electron app as a notification subscriber and emulating issue by deactivating the app and posting notification using global shortcut) :

**Additional Information**
[systemPreferences.postNotification](https://electronjs.org/docs/api/system-preferences#systempreferencespostnotificationevent-userinfo-macos) method uses [NSDistributedNotificationCenter](https://developer.apple.com/documentation/foundation/nsdistributednotificationcenter#1651293?language=objc) behind the scene, but it uses a wrong selector to post notifications to it.
Instead of using this selector (✅):
- [-NSDistributedNotificationCenter.postNotificationName:object:userInfo:deliverImmediately:](https://developer.apple.com/documentation/foundation/nsdistributednotificationcenter/1418360-postnotificationname?language=objc), where `deliverImmediately` is set to `TRUE`
It uses an inherited selected from a parent class (🚫):
- [-NSNotificationCenter.postNotificationName:object:userInfo:](https://developer.apple.com/documentation/foundation/nsnotificationcenter/1410608-postnotificationname?language=objc)
All this makes the powerful tool called `NSDistributedNotificationCenter`, widely used for inter-process communications - completely useless, since all the posted notifications are suspended by default and can reach external applications only in case they are active.
**Possible solution**
I suggest that this method should use a correct `NSDistributedNotificationCenter`'s selected by default:
- https://github.com/electron/electron/blob/ec38561254c22f18166558be9737e558ad5382a0/atom/browser/api/atom_api_system_preferences_mac.mm#L86
Alternatively, it's a good idea to add additional parameter to `postNotification` method to avoid breaking changes in the behavior:
```js
systemPreferences.postNotification(event,userInfo,deliverImmediately)
// deliverImmediately: Bool - defaults to false
```
|
https://github.com/electron/electron/issues/15789
|
https://github.com/electron/electron/pull/16060
|
c7aa747891a850c3192b9bf0de8c82b356c02e0d
|
280f9bf49cf6ecaa9492c2984fc0b1ba71e99899
| 2018-11-21T05:14:45Z |
c++
| 2018-12-14T21:46:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,778 |
["atom/browser/native_browser_view_views.cc"]
|
BrowserView setBackgroundColor Does Not Work on Windows
|
* Output of `node_modules/.bin/electron --version`: v3.0.9
* Operating System (Platform and Version): Windows 10 Pro
**Expected Behavior**
Using the `.setBackgroundColor` BrowserView instance method should apply the specified background color to the BrowserView object.
**Actual behavior**
The background color does not get applied.
**To Reproduce**
Use `.setBackgroundColor` to define a background color on a BrowserView object under the Windows version of the application.
**Additional Information**
Using `.setBackgroundColor` works fine on Mac OS
|
https://github.com/electron/electron/issues/15778
|
https://github.com/electron/electron/pull/15784
|
0b0a17ff911731ed088d72eed92ab77c30b0e5b3
|
5db8197a5d5f4cb918844866ef99841654db2be4
| 2018-11-20T18:20:12Z |
c++
| 2018-11-21T19:04:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,719 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "atom/browser/ui/accelerator_util.cc", "atom/browser/ui/atom_menu_model.cc", "atom/browser/ui/atom_menu_model.h", "docs/api/menu-item.md", "lib/browser/api/menu-item-roles.js", "lib/browser/api/menu-item.js", "lib/browser/api/menu.js"]
|
pasteAndMatchStyle() results in two events
|
* Output of `node_modules/.bin/electron --version`: 3.0.9 (and up)
* Operating System (Platform and Version): Windows 10
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.x
**Expected Behavior**
Pressing `Ctrl + Shift + V` should result in one paste event only.
**Actual behavior**
Pressing `Ctrl + Shift + V` results in two paste events only.
**To Reproduce**
@brenca was nice enough to make a Fiddle (https://gist.github.com/brenca/e0ca153755979bed51a991e9d8c185bb).
**Additional Notes**
A few notes that are interesting:
* This bug is Windows-only.
* Not registering a `paste` handler: No issue
* Not calling `event.preventDefault()` or `event.returnValue = false`: No issue
* Just clicking on a `MenuItem` that calls `webContents.pasteAndMatchStyle()`: No issue
* Not registering a `MenuItem` with an accelerator: No issue
* Chromium 66 does not have this issue
|
https://github.com/electron/electron/issues/15719
|
https://github.com/electron/electron/pull/15723
|
3748ee49ea41b4d0defb6e937d44e561352543c7
|
0242818f39ddfb0852d5705b7cae5fe264d38117
| 2018-11-14T20:04:02Z |
c++
| 2018-11-26T18:43:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,714 |
["BUILD.gn", "build/mac/make_locale_dirs.py", "tools/mac/apply_locales.py", "tools/mac/copy-locales.py", "tools/mac/create-framework-subdir-symlinks.sh", "tools/mac/find_sdk.py", "tools/mac/make_locale_dirs.sh"]
|
Electron 4.0@beta does not includes language (lproj) resources in prebuilt
|
* Output of `node_modules/.bin/electron --version`: `[email protected]`
* Operating System (Platform and Version): Mac OS
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
Expect `.lproj` resources are packaged under `Resources`
**Actual behavior**
Does not exist.
**To Reproduce**
Extrace 4.0.0-beta.7 package (https://github.com/electron/electron/releases/download/v4.0.0-beta.7/electron-v4.0.0-beta.7-darwin-x64.zip), navigate to `Contents->Resources` and check contents.
**Screenshots**
Left side is contents of 3.0.8, Rigit side is 4.0.0-beta.7

**Additional Information**
Add any other context about the problem here.
|
https://github.com/electron/electron/issues/15714
|
https://github.com/electron/electron/pull/15721
|
b53a858400c2b51b96581dddb877f04f16d12a21
|
c8860d006b7ec65b40f8e66f4c448f6d2b6258a5
| 2018-11-14T18:23:45Z |
c++
| 2018-11-15T17:30:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,653 |
["atom/browser/ui/cocoa/atom_menu_controller.mm", "default_app/menu.js", "docs/api/menu.md"]
|
The `services` MenuItem role should not require a `submenu`
|
**Is your feature request related to a problem? Please describe.**
The `role` property of `MenuItem` is meant to make it easier to do the correct thing. For the `services` role, it's easy to forget to add the `submenu` property, and if you don't add it, there's just not a menu. I remember seeing multiple Electron apps where this was the case. The `submenu` property is also useless boilerplate as it's just supposed to be an empty array.
**Describe the solution you'd like**
The `submenu` property should be added automatically for the `services` role.
Before:
```js
// …
{
type: 'separator'
},
{
role: 'services',
submenu: []
},
{
type: 'separator'
},
{
role: 'hide'
},
// …
```
After:
```js
// …
{
type: 'separator'
},
{
role: 'services'
},
{
type: 'separator'
},
{
role: 'hide'
},
// …
```
**Describe alternatives you've considered**
None.
**Additional context**
No.
|
https://github.com/electron/electron/issues/15653
|
https://github.com/electron/electron/pull/15656
|
025aa49f6780b8cf238b6ac7567d720ef7708438
|
9fd98bb27bbcefa8f1822ee64f06e56d9fb349a0
| 2018-11-09T08:25:50Z |
c++
| 2018-11-10T17:47:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,603 |
["atom/browser/lib/bluetooth_chooser.cc", "atom/browser/lib/bluetooth_chooser.h", "electron_paks.gni"]
|
Electron bluetooth errors
|
* Output of `node_modules/.bin/electron --version`: 4.0.0-beta.7
* Operating System (Platform and Version): OS X Mojave 10.14.1
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): Never seen it work in any version available
**Expected Behavior**
webContents select-bluetooth-device should allow to select a device from the list and pair it.
**Actual behavior**
- When you try to pair a device in a webview, electron throws an error and force exit.
- The deviceList only contains/shows 1 device, even when there's multiple BLE devices (Chrome shows all of them).
**To Reproduce**
https://gist.github.com/4eveRS/9ade679271cc536da97b692492e048af
**Additional Information**
If there's no easy fix for this issue, is it possible to disable bluetooth support at all ?
Tried with
```
app.commandLine.appendSwitch('enable-web-bluetooth', false);
app.commandLine.appendSwitch("enable-experimental-web-platform-features", false);
```
and it didn't work.
|
https://github.com/electron/electron/issues/15603
|
https://github.com/electron/electron/pull/15805
|
55808dffcd4f618a9f3c9323353c71f61bca0a75
|
8f04def7b204e024a4109176122572e052065d16
| 2018-11-06T19:52:25Z |
c++
| 2018-11-28T16:36:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,594 |
["lib/common/parse-features-string.js", "spec/internal-spec.js"]
|
Inconsistencies in webview webpreferences parsing may expose unexpected security attack surface
|
I found inconsistencies in webview webpreferences parsing that may expose unexpected attack surface of an electron application. The root of the issue in implementation of https://github.com/electron/electron/blob/176a76217c5f70d92bf21f6782a0c838a1e5058e/lib/common/parse-features-string.js
1. For example if a webview is declared as:
```html
<webview src="view.html" webpreferences = " nodeIntegration =no, javascript =no"></webview>
```
Despite it looks like `nodeIntegration` is disabled for the view, it is not, because a white space symbol before `nodeIntegration`.
However it is silently broken only for the first item in comma separated list. In the example below `nodeIntegration` is disabled no matter how many spaces are between the name:
```html
<webview src="view.html" webpreferences="javascript =no, nodeIntegration =no"></webview>
```
2. While for Boolean settings possible values are only `1`, `0`, `yes` or `no` there is no [warning](https://electronjs.org/docs/all#electron-security-warnings) or secure fallback if it fails to parse the value:
```html
<webview src="view.html" webpreferences="nodeIntegration = no"></webview>
```
`nodeIntegration` won't be set neither to `true` nor `false`, but will be silently set to " no" and the actual behavior depends on the implementation of the code that reads and compares the value I didn't investigate.
Impact:
While a non-working setting can be easily detected during development if it is meant to enable some feature, a non-working security related setting that was meant to "sandbox" the view like `nodeIntegration=no` may slip unnoticed.
|
https://github.com/electron/electron/issues/15594
|
https://github.com/electron/electron/pull/15602
|
c52cf01a3c70b0f6279c2bba80284d1db8f00c41
|
10969b8c3c8b862fabbb88b8512d30b5eefbed97
| 2018-11-06T17:04:40Z |
c++
| 2018-11-06T23:52:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,592 |
["atom/browser/api/atom_api_app.cc", "docs/api/app.md"]
|
Add method to show the macOS 'About' window
|
**Is your feature request related to a problem? Please describe.**
Currently, the only way to show the About panel on macOS is by creating a `{role: 'about'}` menu item and click it. I need to be able to show it manually.
**Describe the solution you'd like**
Electron already has the method, so it's just about exposing this to JS and documenting it:
https://github.com/electron/electron/blob/8ba271efba691357ab1970c1a553b4e019125574/atom/browser/browser_mac.mm#L376
Would also be useful to be able to pass in the panel options directly to the method to override the defaults.
I would call the method: `app.showAboutPanel(options)`
**Describe alternatives you've considered**
None.
|
https://github.com/electron/electron/issues/15592
|
https://github.com/electron/electron/pull/15674
|
1cf28e8b75d4ea13f4c0749e58eef9ec7c22c248
|
a54dd1085a128f51de6123dc9bc9d80cc0d2b0b1
| 2018-11-06T15:25:10Z |
c++
| 2018-11-12T03:52:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,591 |
["docs/api/app.md", "shell/browser/api/atom_api_app.cc", "shell/browser/browser.h", "shell/browser/browser_win.cc"]
|
Cross-platform 'About' window
|
**Is your feature request related to a problem? Please describe.**
An 'About' window is something every app needs, yet Electron only has a native About window for macOS (the default one). For Windows and Linux, every Electron app has to reinvent the wheel, usually badly, and not adhering to platform-specific behavior nor style.
**Describe the solution you'd like**
GTK actually has a widget specifically for this: https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html
For Windows, from what I can tell, there's no standard, so here it could just be a simple native modal window with the icon and a few labels for the information.
**Describe alternatives you've considered**
The alternative is for every app to create a custom browser window and style it with CSS. The problem is that it's hard to imitate the platform native style on Windows, and near impossible to do it on Linux, as every desktop manager has their own style.
|
https://github.com/electron/electron/issues/15591
|
https://github.com/electron/electron/pull/19420
|
ef03c4b7bb532ed91bfc4e7b9c5073f74688637e
|
f654da9f56901e37c7ef408c6ccacd0a7425cd48
| 2018-11-06T14:33:59Z |
c++
| 2019-08-12T23:32:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,567 |
["BUILD.gn"]
|
Can not sign MAS because incorrect the Login Item App in the Mas source 4.0.0
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-beta.6
* Operating System (Platform and Version): MacOS
We expect an '**Electron Login Helper.app**' in the **LoginItems** folder.
But the mas source (https://github.com/electron/electron/releases/download/v4.0.0-beta.6/electron-v4.0.0-beta.6-mas-x64.zip) contains only the **Content** folder.
<img width="544" alt="screen shot 2018-11-05 at 4 52 31 pm" src="https://user-images.githubusercontent.com/4363415/48001967-36873f80-e11b-11e8-9f89-239dd071262a.png">
|
https://github.com/electron/electron/issues/15567
|
https://github.com/electron/electron/pull/15610
|
10969b8c3c8b862fabbb88b8512d30b5eefbed97
|
bf3edf8f8700fb40197bd509618d8284e7c88f95
| 2018-11-05T13:57:41Z |
c++
| 2018-11-07T04:15:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,561 |
["atom/renderer/atom_sandboxed_renderer_client.cc", "lib/sandboxed_renderer/init.js"]
|
enableMixedSandbox blocks devtools extension context
|
* Output of `node_modules/.bin/electron --version`:
* Operating System (Platform and Version):
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 3.0.4
**Expected Behavior**
devtools extension's page (`manifest.json`'s `devtools_page`) have electron's global `chrome.*` extension api context constructed.
**Actual behavior**
`devtools_page` doesn't have context, any calls to `chrome.*` will fail
**To Reproduce**
```
const {app, BrowserWindow} = require('electron')
//enable mixed sandbox asap
app.enableMixedSandbox();
let mainWindow
function createWindow () {
mainWindow = new BrowserWindow({width: 1024, height: 768})
mainWindow.loadURL('https://reactjs.org')
//other devtools extension can be used instead as long as `devtools_page` access chrome.* api
require('devtron').install();
mainWindow.webContents.openDevTools()
mainWindow.on('closed', function () {
mainWindow = null
})
}
app.on('ready', createWindow)
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
if (mainWindow === null) {
createWindow()
}
})
```
devtron is used for simplified repro, but any other devtools (i.e react devtools) will have same symptoms.
launch electron, then open devtools will emit console logs like
```
[10800:1104/011325.639:ERROR:CONSOLE(7)] "Uncaught ReferenceError: chrome is not defined", source: chrome-extension://devtron/static/devtron.html (7)
```
**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/15561
|
https://github.com/electron/electron/pull/15563
|
a68e3371f3bec4e1de3ea33b4edcd09ed3db2ed9
|
0b0a17ff911731ed088d72eed92ab77c30b0e5b3
| 2018-11-04T09:25:19Z |
c++
| 2018-11-21T17:56:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,543 |
["lib/common/asar_init.js"]
|
`createWriteStream` in `original-fs` is broken
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-beta.6
* Operating System (Platform and Version): Windows 10 x64 Build 17134
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): v3.0.7
**Expected Behavior**
`require('original-fs').createWriteStream('some/asar/file.asar')` should not error.
**Actual behavior**
The write stream fails with error: `Error: Invalid package some/asar/file.asar`
**To Reproduce**
I've forked `electron-quick-start` with the most trivial repro: https://github.com/adill/electron-quick-start/tree/demo-create-write-stream
|
https://github.com/electron/electron/issues/15543
|
https://github.com/electron/electron/pull/16028
|
c65a0d90b8e4bf1925f28776d70774da344840b1
|
f7528a0204826bc7a93878f7f20498f85b5c3f5c
| 2018-11-02T06:09:05Z |
c++
| 2018-12-12T21:32:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,540 |
["shell/browser/atom_browser_client.cc"]
|
Dark mode support via @media (prefers-color-scheme: dark)
|
Safari Technology Preview now supports dark mode via `@media (prefers-color-scheme: dark)` in CSS media queries.
Same should be supported in Electron apps to enable automatic light/dark mode switching.
|
https://github.com/electron/electron/issues/15540
|
https://github.com/electron/electron/pull/19228
|
079a173a72b8fda85f58772f3a13a287694ff90b
|
ab8b940151fa862485df08192016ef21b81b5d60
| 2018-11-02T05:27:17Z |
c++
| 2019-07-15T08:22:25Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,535 |
["docs/api/menu-item.md", "lib/browser/api/menu-item-roles.ts", "shell/browser/ui/cocoa/electron_menu_controller.mm", "spec-main/api-menu-item-spec.ts"]
|
Text replacements / expansions doesn't work on MacOS
|
on iOS and macOS there is a feature called Text replacements. If I type `:)` it could be replaced with 😊, or if I type**n@** it could expand to **[email protected]**. It works in all applications, native or otherwise except Chrome and Electron apps (except Typora actually where it does work).
Would it be possible to bypass what seems to be a chromium "bug" and still make it possible in Electron? I believe the native property is `automaticTextReplacementEnabled` on the NSTextView class.

|
https://github.com/electron/electron/issues/15535
|
https://github.com/electron/electron/pull/32024
|
d44a187d0b226800fe0cb4f7a0d2b36c871b27cd
|
5af6b898d92432369ce9495e75d75b02af651531
| 2018-11-02T00:25:54Z |
c++
| 2022-01-06T18:41:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,508 |
["docs/api/web-contents.md", "docs/api/webview-tag.md"]
|
printToPdf pageSize with only string on TypeScript
|
* Output of `node_modules/.bin/electron --version`: **v3.0.6**
* Operating System (Platform and Version): **Windows 10 Home**
### Expected behavior
Print to pdf using custom page size in TypeScript code.
### Actual behavior
When I try to put my custom height and width and build the typescript code an error occurred with the next message:
`Type '{ height: number; width: number; }' is not assignable to type 'string'.`
### How to reproduce
Using the next code and build the project shows the error:
```javascript
mainWindow.webContents.printToPDF({
pageSize: {
height: 400,
width: 400
}
}, (error, data) => {
if (error) throw error
fs.writeFile('./print.pdf', data, (error) => {
if (error) throw error
console.log('PDF escrito con éxito.')
});
});
```
|
https://github.com/electron/electron/issues/15508
|
https://github.com/electron/electron/pull/15519
|
6ed70327f55b18ea1d0803fb5eb861f33c4eeb27
|
bdef03345904c6a918114ccdbf2ed909738a17a3
| 2018-10-31T22:31:59Z |
c++
| 2018-11-01T13:00:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,496 |
["patches/common/chromium/.patches", "patches/common/chromium/fix_zoom_display.patch"]
|
The "Zoom In" shortcut doesn't work
|
* Output of `node_modules/.bin/electron --version`: **3.0.6**, **4.0.0-beta.4**
* Operating System (Platform and Version): **Mac** at least
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): **2.0.11**
**Expected Behavior**
Behaviour in Electron 2:
1) "View > Zoom In" menu item shows "⌘+" as a shortcut.
2) Pressing "⌘+" increases a page's zoom.
**Actual behavior**
1) For Electron 3 the app "View" menu shows "⌘+" as a shortcut for the "Zoom In" item.
For Electron 4 it shows "⇧⌘+".
2) The "⌘ and +" shortcut doesn't work but "Shift and ⌘ and +" does the job in both Electron 3 and 4.
The other zoom shortcuts "⌘ and -" and "⌘ and 0" work as expected.
**To Reproduce**
Open any webpage in Electron, e.g. `$ ...Electron.app/Contents/MacOS/Electron https://youtube.com`, try to Zoom in and Zoom out with a keyboard.
Can be reproduced even with the default app.
|
https://github.com/electron/electron/issues/15496
|
https://github.com/electron/electron/pull/15502
|
e9ba26f50ed2a38ada19469951c1eeaf346ef152
|
833269ffde5e8ccceeeb685ea0aaa03aefdc4b3b
| 2018-10-31T10:51:02Z |
c++
| 2018-11-07T21:42:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,495 |
["lib/renderer/chrome-api.js"]
|
chrome-api: Uncaught TypeError: ipcRenderer._sendInternalToAll is not a function
|
* Output of `node_modules/.bin/electron --version`: `4.0.0-nightly.20181010,4.0.0-beta.5`
* Operating System (Platform and Version): `Ubuntu v18.10`
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):`3.0.6`
**Expected Behavior**
A clear and concise description of what you expected to happen.
**Actual behavior**
A clear and concise description of what actually happened.
**To Reproduce**
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
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/Akumzy/electron-bug-report.git
$ npm install
$ npm run dev
```
**Screenshots**
If applicable, add screenshots to help explain your problem.


**Additional Information**
The error always being logged out when I opens Vue devtools
Which I believed made Vue devtools not to work
|
https://github.com/electron/electron/issues/15495
|
https://github.com/electron/electron/pull/15518
|
bdef03345904c6a918114ccdbf2ed909738a17a3
|
fe8965efa284b20c241ef3117a50965abee66708
| 2018-10-31T10:36:42Z |
c++
| 2018-11-01T14:16:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,494 |
["shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm"]
|
Simple fullscreen: is not properly sizing the window when display metrics change
|
* Output of `node_modules/.bin/electron --version`: 2.0.12
* Operating System (Platform and Version): macOS 10.14
**Expected Behavior**
When having a window in simple fullscreen and you change display metrics or change from 1 monitor to 2 the window should size according to the new dimensions.
**Actual behavior**
The window size does not change when display metrics change.
**To Reproduce**
* Run Fiddle: https://gist.github.com/bpasero/e4013ea83033a8c231f58f94c0df57c3
* Change display metrics or change monitor count
=> the window is wrongly sized now and needs a transition from normal back to fullscreen to recover.
|
https://github.com/electron/electron/issues/15494
|
https://github.com/electron/electron/pull/28150
|
b045d42b0e19eeb86d6ca6f211c23017125ad20f
|
fdc2e2bc57792f7faaf6c1ed6a2ff4e6f0fb0103
| 2018-10-31T10:26:51Z |
c++
| 2021-03-16T09:41:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,489 |
["atom/browser/api/atom_api_top_level_window.cc", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "atom/browser/native_window_views.cc", "atom/browser/native_window_views.h"]
|
BrowserWindow.getNativeWindowHandle() always returns a null NSView* on macOS
|
* Output of `node_modules/.bin/electron --version`:
v3.0.6
v4.0.0-beta.5
* Operating System (Platform and Version):
macOS High Siearra 10.13.6
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
v2.0.11
**Expected Behavior**
BrowserWindow.getNativeWindowHandle() must return non-nullable result.
**Actual behavior**
BrowserWindow.getNativeWindowHandle() returns null.
**To Reproduce**
***Sample code***
```
const { app, BrowserWindow } = require('electron');
let win
app
.on('ready', () => {
win = new BrowserWindow({width: 800, height: 600})
win.loadURL('https://www.google.com')
win.on('closed', () => win = null);
const handle = win.getNativeWindowHandle();
console.log('Current window: ' + handle.toString('hex'));
})
.on('window-all-closed', () => app.quit());
```
***Expected output***
Something different than `Current window: 0000000000000000`
***Actual output***
`Current window: 0000000000000000`
|
https://github.com/electron/electron/issues/15489
|
https://github.com/electron/electron/pull/15521
|
746beb0d8b28809ec96d6ce9ad1ee252402584a7
|
9aed2a465f998849921a3ab3df70bc15357332e8
| 2018-10-31T07:49:44Z |
c++
| 2018-11-08T17:03:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,481 |
["BUILD.gn", "atom/browser/atom_browser_client.cc", "atom/browser/font_defaults.cc", "atom/browser/font_defaults.h", "electron_paks.gni", "filenames.gni", "spec/chromium-spec.js"]
|
Default fonts should match Chrome
|
Chrome has default font fallbacks set up on a per-script, per-OS basis. See for example https://chromium.googlesource.com/chromium/src/+/master/chrome/app/resources/locale_settings_mac.grd#160, which is the default font for characters in the Japanese-language script.
Electron does not set up these font fallbacks, and as a result, font rendering in those scripts does not match that of Chrome. Further, it's impossible to set it up on the app side to use the appropriate font fallbacks, because of #15480.
|
https://github.com/electron/electron/issues/15481
|
https://github.com/electron/electron/pull/15486
|
ca2d74e1185626f6c9179bf0cf7382e010a49bf0
|
7e0e12b8a36490e2c54a16b46ca0aca1e74e2ac3
| 2018-10-30T19:28:57Z |
c++
| 2018-11-08T14:51:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,467 |
["npm/cli.js"]
|
Electron window does not appear with Node.js v11.0.0
|
* `[email protected]`
* `Windows 7 Professional 32bit`
* `node v11.0.0`
## Behavior
```shell
# CommandPrompt
> electron
Electron 4.0.0-beta.5 - Build cross platform desktop apps with JavaScript, HTML,
and CSS
Usage: electron [options] [path]
A path to an Electron app may be specified. It must be one of the following:
- index.js file.
- Folder containing a package.json file.
- Folder containing an index.js file.
- .html/.htm file.
- http://, https://, or file:// URL.
Options:
-i, --interactive Open a REPL to the main process.
-r, --require Module to preload (option can be repeated).
-v, --version Print the version.
-a, --abi Print the Node ABI version.
```
After this, the focus is out of the CMD window, but Electron window does not appear.
## Cause
Node.js `v11.0.0` later, the default for the `windowsHide` option has become `true`.
* [child_process.spawn() - Node.js](https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options)
As a result, it will be activated in hidden state with proc.spawn () in cli.js.
```javascript
// node_modules/electron/cli.js
var child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit' })
```
## To Fix
```javascript
// node_modules/electron/cli.js
var child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false })
```
Could you please fix the branch?
Thank you.
|
https://github.com/electron/electron/issues/15467
|
https://github.com/electron/electron/pull/15469
|
feb31d088ba55b598425baad0eca7010ee1e5f4f
|
e9fab747ec145d88bb7a37956ac8f40010d19eed
| 2018-10-30T01:33:19Z |
c++
| 2018-10-31T23:53:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,459 |
["atom/renderer/api/atom_api_web_frame.cc", "atom/renderer/api/atom_api_web_frame.h", "filenames.gni", "lib/renderer/api/web-frame.js", "spec/api-web-frame-spec.js"]
|
Memory leak with use sandbox true and webFrame.setSpellCheckProvider
|
* Output of `node_modules/.bin/electron --version`: v3.0.5
* Operating System (Platform and Version): macOS 10.14
**Expected Behavior**
When webPreferences.sandbox is set to true and webFrame is using a provider for spell checking, the memory must be released after page reload.
**Actual behavior**
The memory isn't released and caused memory leak
**To Reproduce**
- Clone https://github.com/vrbsm/example-memory-leak-electron
- Run npm run start
Memory usage of electron process will be increasing in task manager after reloading the page several times
**Screenshots**

|
https://github.com/electron/electron/issues/15459
|
https://github.com/electron/electron/pull/16770
|
3f52e18a387da3ee413044fdd807a5d60e34a658
|
d16b5811409445724c1db9d5f95b5aa9ad236be8
| 2018-10-29T19:44:33Z |
c++
| 2019-02-08T21:38:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,448 |
["shell/browser/electron_browser_client.cc"]
|
Support Chromium's command-line switch --unsafely-treat-insecure-origin-as-secure
|
**Is your feature request related to a problem? Please describe.**
Notifications, Geolocation, Device motion/orientation, EME, getUserMedia, AppCache require a secure origin to work in Chromium. HTTP URLs are not considered secure.
That's why Chromium provides the command-line switch
`--unsafely-treat-insecure-origin-as-secure="$url"` to circumvent this problem.
Unfortunately it's not working in Electron.
**Describe the solution you'd like**
Please make it work. In the renderer. I'd suggest simply like
```
new BrowserWindow({
webPreferences: {
additionalArguments: {
'--unsafely-treat-insecure-origin-as-secure', 'http://insecure-origin'
}
}
```
Or a new option `considerSecure: String[]` to `BrowserWindow.webPreferences`.
I guess it should be not too hard to implement since Chromium already supports it and it seems to get lost only in the process of Electron integration.
**Describe alternatives you've considered**
- `app.commandLine.appendSwitch('unsafely-treat-insecure-origin-as-secure', $url)` in the main thread
- Invisible [BrowserWindow](https://github.com/electron/electron/blob/master/docs/api/browser-window.md) with secure origin + IPC
- `<iframe>` on a secure origin
- localhost-Proxy
- Using Data URLs in [loadURL](https://github.com/electron/electron/blob/master/docs/api/browser-window.md#winloadurlurl-options): `data:text/html,<script>new Notification("hi")</script>`
- webFrame.registerURLSchemeAsPrivileged
**Additional context**
'Deprecating Powerful Features on Insecure Origins' https://goo.gl/rStTGz
When the flag is set in Chromium a message appears under the address bar, saying that
'You are using an unsupported command-line flag'.

Nonetheless the features are then working on the origin treated securely.
|
https://github.com/electron/electron/issues/15448
|
https://github.com/electron/electron/pull/33189
|
865a29ed17d498335790c2c6998578e1e76c5513
|
ebfcf89a0b554804fc8707215752a1130dc10182
| 2018-10-29T09:42:35Z |
c++
| 2022-03-09T15:15:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,392 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "patches/common/chromium/accelerator.patch", "spec/api-menu-item-spec.js"]
|
Accelerator "Shift+Backspace" show as "Shift+Shift+Backspace" in menu
|
* Output of `node_modules/.bin/electron --version`: v3.0.6
* Operating System (Platform and Version): Windows 10 (October Update)
**Expected Behavior**
When using the accelerator "Shift+Backspace" in a `Menu`, the accelerator should be displayed as "Shift+Backspace"
**Actual behavior**
"Shift+Shift+Backspace" is displayed as accelerator in the menu.
**To Reproduce**
See: https://github.com/torjusb/electron-accelerator-bug
**Screenshots**
<img width="385" alt="accelerator" src="https://user-images.githubusercontent.com/53583/47494149-49635f80-d851-11e8-8178-eed38f22e0e2.png">
**Additional info**
This only appears to affect "Shift+Backspace" from limited testing. Accelerators such as "Alt+Backspace", "Shift+M" etc. appears to work fine.
|
https://github.com/electron/electron/issues/15392
|
https://github.com/electron/electron/pull/15400
|
1d81d1a706ababc799e27cc6a06e76fed6171508
|
aa6f7a5d9f11acb1c7c10f324c7617878570dccc
| 2018-10-25T10:28:35Z |
c++
| 2018-10-31T14:13:44Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,370 |
["shell/common/platform_util_win.cc", "spec-main/api-shell-spec.ts"]
|
shell.moveItemToTrash() does not properly return false if file path is in use
|
* Output of `node_modules/.bin/electron --version`: 2.0.12
* Operating System (Platform and Version): Windows 10
**Expected Behavior**
`moveItemToTrash` should return `false` if the file is locked.
**Actual behavior**
`moveItemToTrash` does not return `false` when a file is locked.
**To Reproduce**
* open a folder in a command prompt (cd into it)
* run `shell.moveItemToTrash(path of folder)`
* observe the returned value is `true` indicating this operation was successful
|
https://github.com/electron/electron/issues/15370
|
https://github.com/electron/electron/pull/25124
|
443540fd133fff3dd730a1c995cda4b343fdc7ab
|
bab69ae4d2769de5018921f0557de62835027703
| 2018-10-24T16:03:49Z |
c++
| 2020-08-27T16:55:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,365 |
["atom/browser/net/url_request_context_getter.cc", "patches/common/chromium/.patches", "patches/common/chromium/ensure_cookie_store.patch", "spec/api-session-spec.js", "spec/fixtures/api/cookie-app/main.js", "spec/fixtures/api/cookie-app/package.json"]
|
webview cookies are not persisted
|
* Output of `node_modules/.bin/electron --version`: 4.0.0-beta.5
* Operating System (Platform and Version): macOS 10.14
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): There is no issue with Electron v3.
**Expected Behavior**
Cookies should be persisted in a webview that uses partition.
**Actual behavior**
Cookies are lost after relaunching app.
**To Reproduce**
1. Create webview with partition: `<webview partition="persist:webview"/>`
2. Sign in to GitHub to create a cookie.
3. Relaunch app.
4. When webview opens again, the cookies are lost.
|
https://github.com/electron/electron/issues/15365
|
https://github.com/electron/electron/pull/15836
|
165d168ee51943dc9a91c5d54770a08417f0b039
|
78b88a70bb9c6e52ac98d38ef52a8778c80b6dd5
| 2018-10-24T13:37:54Z |
c++
| 2018-11-29T18:51:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,347 |
["build/zip.py"]
|
Linux builds include "pyproto" folder with scripts
|
* Output of `node_modules/.bin/electron --version`: 4.0.0-beta1 through 4.0.0-beta.5
* Operating System (Platform and Version): Linux
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 0.x through 3.x
**Expected Behavior**
Electron releases only contain required files
**Actual behavior**
https://github.com/electron/electron/releases/download/v4.0.0-beta.5/electron-v4.0.0-beta.5-linux-x64.zip (and other Linux targets) contains a folder `pyproto` with a bunch of Python scripts in them.
**To Reproduce**
Download and extract the release build.
**Additional Information**
This looks like a tiny issue, but various security protocols will keep us from using Electron with these scripts packaged.
|
https://github.com/electron/electron/issues/15347
|
https://github.com/electron/electron/pull/15348
|
40874ddec69de66a5de222a7f3fd1093c5c5cd67
|
d03527ae4770017b4524cf3ff5a42f19dfff3722
| 2018-10-23T20:53:22Z |
c++
| 2018-10-24T00:19:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,317 |
["atom/browser/ui/message_box_gtk.cc"]
|
Alert Box showing broken icon image
|
* Output of `node_modules/.bin/electron --version`: v2.0.5
* Operating System (Platform and Version): Ubuntu 18.04LTS
### Expected behavior
alert box should show the app Icon.
### Actual behavior
alert box is showing no icon even though an app icon is set.

### How to reproduce
* Open any electron app in debug mode (or run the app directly from the source).
* in the developer console, type `alert('some_string')`
* A dialog box appears with 'some_string' in it and a placeholder for the icon instead of the icon itself.
Refer the image above.
|
https://github.com/electron/electron/issues/15317
|
https://github.com/electron/electron/pull/15326
|
260778e0fbcb5cdd53e3c062b465e353a0950b42
|
869e0ab14d225ebf8945e9febfa73b896e16271f
| 2018-10-22T13:21:42Z |
c++
| 2018-10-23T17:44:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,316 |
["docs/api/system-preferences.md", "shell/browser/api/atom_api_system_preferences.cc"]
|
Windows support for `systemPreferences.isDarkMode()` API
|
**Is your feature request related to a problem? Please describe.**
Electron has an API which works on macOS for detecting when the system is in Dark Mode.
[Windows 10 also has a dark mode setting](https://www.digitaltrends.com/computing/how-to-enable-dark-mode-in-windows-10/). It would be useful if the same Electron API also worked on Windows.
**Describe the solution you'd like**
1. The `systemPreferences.isDarkMode()` method should work on Windows.
2. Ideally a way of subscribing to change events, equivalent to `systemPreferences.subscribeNotification('AppleInterfaceThemeChangedNotification', callback)`. Or perhaps the `color-changed` event (or another event) would be fired by `systemPreferences`.
**Additional context**
On Windows the state of the dark mode setting [is stored in the](https://stackoverflow.com/a/51336913/365069) `HKCU(HKLM)\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize\AppsUseLightTheme` registry key.
|
https://github.com/electron/electron/issues/15316
|
https://github.com/electron/electron/pull/19217
|
4439249617f40a13d9283b729f050b29d8bbe40f
|
da672a3b5cf93392d36c00bb6f92f8e930ed4ae5
| 2018-10-22T01:03:10Z |
c++
| 2019-07-15T21:37:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,314 |
["lib/common/asar.js", "spec/asar-spec.js"]
|
fs.stat - should work with options parameter
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-nightly.20181010
* Operating System (Platform and Version): Windows 64
process.versions:
```
{
http_parser: '2.8.0',
node: '10.11.0',
v8: '6.9.427.24',
uv: '1.23.0',
zlib: '1.2.11',
ares: '1.14.0',
modules: '64',
nghttp2: '1.33.0',
napi: '3',
openssl: '1.1.0',
electron: '4.0.0-nightly.20181010',
chrome: '69.0.3497.106',
icu: '62.1',
unicode: '11.0',
cldr: '33.1',
tz: '2018e'
}
```
**Expected Behavior**
fs.stat should work with options parameter.
As of node.js version 10.5.0 fs.stat should support 3 parameters (new options parameter for bigint)
like so: fs.stat(path[, options], callback)
you can see the docs here:
https://nodejs.org/docs/latest-v10.x/api/fs.html#fs_fs_stat_path_options_callback
Im using electron v4.0.0.beta-4 with node 10.11.0 (as you can see above in versions)
**Actual behavior**
Calling fs.stat with options parameter fails with error:
```
TypeError [ERR_INVALID_CALLBACK]: Callback must be a function
at makeStatsCallback (fs.js:150:11)
at stat (fs.js:797:14)
at Object.fs.stat (ELECTRON_ASAR.js:289:27)
at App.createWindow (C:\projects\electron-quick-start\main.js:11:6)
at App.emit (events.js:187:15)
```
**To Reproduce**
1. clone the electron-quick-start repo
2. update electron to latest beta version
3. paste this code in main.js inside the function createWindow():
```javascript
fs.stat("pathToSomeFile", {bigint: true}, (err, stats) => {
if (err) {
console.log(err);
} else {
console.log(stats);
}
});
```
4. run the app
|
https://github.com/electron/electron/issues/15314
|
https://github.com/electron/electron/pull/15323
|
465dee2c335db1cf081d07e84b757a65b984d881
|
40874ddec69de66a5de222a7f3fd1093c5c5cd67
| 2018-10-21T14:41:53Z |
c++
| 2018-10-23T22:14:05Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,245 |
["lib/browser/init.js"]
|
Nothing is stored in App Data folder [Cause Discoverd]
|
Version: stable 3.0.4.0 and 4.0 beta3
OS: Windows 7 64bit
## **Actual behavior**
Whenever I changed anything about settings of DevTools, or I `localStorage.setItem`-ed anything, they worked only until I restarted my app.
In other words, all were lost instead of being saved permenantly.
Very weird. And no hint of errors.
## **Cause**
Finally, I've found out why:
I copied files of an old app folder of mine to start a new one.
I edited "package.json", and tried to give the new app a different `"productName"`.
However, I was distracted before I could make up my mind, and as a result, I mistakenly left the name with **an tailing whitespace**.
## **To Reproduce**
1. In "package.json", add a tailing whitespace to the value of `"productName"`.
For example, `"My App "`.
2. Run Electron for this app.
3. Go to the AppData folder "C:\Users\{Your User Name}\AppData\Roaming" (or, press `Win+R` and enter `%AppData%`)
4. You will see the data folder for this app, but its name doesn't have that whitespace.
For example, "My App".
5. In Electron, do anything with settings of DevTools, or set item of `localStorage`.
6. Restart Electron and you will find all changes above are lost.
7. And the data folder ("My App") will always be empty.
## **Suggestion**
Automatically trim it when the value of `"productName"` is read by Electron.
|
https://github.com/electron/electron/issues/15245
|
https://github.com/electron/electron/pull/15269
|
16dcc464cf3f60588da0d092f1f37c53ad64c817
|
122017e6fa6924713c7ff36f7d3dc719d49f633b
| 2018-10-18T12:19:11Z |
c++
| 2018-10-19T12:57:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,203 |
["docs/api/app.md"]
|
emitting`session-created` event with wrong number of arguments
|
* Output of `node_modules/.bin/electron --version`: `v2.0.11`
* Operating System (Platform and Version): `MacOS 10.13.6`
**Expected Behavior**
Expected the handler of [App `session-created` event](https://github.com/electron/electron/blob/master/docs/api/app.md#event-session-created) to receive two arguments, as mentioned in docs:
> Returns:
> `event` Event
> `session` Session
**Actual behavior**
Handler received one argument of type `Session`.
**To Reproduce**
In the void main of an Electron app:
```
app.once('session-created', (event, session) => {
console.info('Expecting two arguments:', arguments);
console.info(event); // this is of type Session
console.info(session); // this is undefined
})
```
In source code, `session-created` is always emitted with one argument, [see here](https://github.com/electron/electron/search?q=session-created&unscoped_q=session-created). this is an inconsistency in either the docs or the source code. The generated `node_modules/electron/electron.d.ts` is wrong and creates a type error during TypeScript compilation.
This is what's in the typedef:
```
/**
* Emitted when Electron has created a new session.
*/
on(event: 'session-created', listener: (event: Event,
session: Session) => void): this;
once(event: 'session-created', listener: (event: Event,
session: Session) => void): this;
addListener(event: 'session-created', listener: (event: Event,
session: Session) => void): this;
removeListener(event: 'session-created', listener: (event: Event,
session: Session) => void): this;
```
|
https://github.com/electron/electron/issues/15203
|
https://github.com/electron/electron/pull/15236
|
ba7ce7225bfb55eb60fb989b358d69e4c10dfe0e
|
9262731f2cc991d9ba97e0e977007e0f39da4983
| 2018-10-16T23:07:11Z |
c++
| 2018-10-21T02:46:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,194 |
["atom/browser/ui/views/menu_bar.cc", "patches/common/chromium/libgtkui_export.patch"]
|
Menu bar text not visible
|
* Output of `node_modules/.bin/electron --version`: v2.0.11
* Operating System (Platform and Version): Arch Linux
**Expected Behavior**
Menu bar text font color should be white for a black/dark background.
**Actual behavior**
Menu bar text color is gray(close to black) with black background. So the text is unreadable.
**To Reproduce**
Have had this problem since installation.
**Screenshots**


**Additional Information**
I am facing this problem on both Atom and VS Code so I am presuming it to be related to Electron. This is happening on both light and dark themes. In fact there is no change in the menu bar colors for Adapta and Adapta-Nokto themes. I have read abt this issue on another thread here but it was last updated an year ago and mentions the problem being related to electron not having GTK3 support. I presume this has been achieved so I dont know what to do now.
|
https://github.com/electron/electron/issues/15194
|
https://github.com/electron/electron/pull/15878
|
515525cfc68731ae879af606b79e8cc1a6b9c91a
|
2e91bf1e15139ae5d4a8f42d5f684ec1555f740e
| 2018-10-16T13:26:45Z |
c++
| 2018-11-30T17:28:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,165 |
["docs/api/browser-window.md", "shell/browser/api/electron_api_base_window.cc", "shell/browser/api/electron_api_base_window.h", "shell/browser/native_window.cc", "shell/browser/native_window.h", "shell/browser/native_window_views.cc", "shell/browser/native_window_views.h"]
|
Windows Tablet Mode
|
**Is your feature request related to a problem? Please describe.**
In windows tablet mode, you may want to change your UI. There is apps that enlarge the title bar or hide the title bar buttons since they are useless (in tablet mode, every window is forced into fullscreen mode and minimizing is disabled). The is no way to detect tablet mode in electron.
**Describe the solution you'd like**
~~Something like systemPreferences.tabletMode() and a `tablet-mode-changed` should be available~~
We need a BrowserWindow instance method like `window.getUserInteractionMode()` that gives us the primary input mode for a view. `window.resize` event should be sufficient to listen to changes to tablet mode. Here is more info: https://blogs.msdn.microsoft.com/oldnewthing/20160706-00/?p=93815
**Describe alternatives you've considered**
I looked into going to the Browser API in renderer, but there is no clear way to check if a device is in tablet mode. You can basically just check if there is touch available, which is not the same.
**Additional context**
This is outlook hiding their title bar buttons in tablet mode.
<img width="850" alt="anmerkung" src="https://user-images.githubusercontent.com/4349324/46936928-42be3680-d060-11e8-8dfc-815ccac98e62.png">
<img width="849" alt="anmerkung2" src="https://user-images.githubusercontent.com/4349324/46936929-4356cd00-d060-11e8-8405-df5933e7cfbc.png">
|
https://github.com/electron/electron/issues/15165
|
https://github.com/electron/electron/pull/25209
|
2dd7ad268b8409285ef61dd838085d28604b9ad2
|
c50ded2b717da034d3fbfc6b7824884065c461c9
| 2018-10-15T07:57:10Z |
c++
| 2020-09-22T05:40:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,147 |
["BUILD.gn", "build/electron.def", "spec/fixtures/module/runas-renamed.js", "spec/modules-spec.js"]
|
Renaming electron.exe 4 beta 3 leads to unloadable native node module
|
* Output of `node_modules/.bin/electron --version`: v4.0.0-beta.3
* Operating System (Platform and Version): Window 10
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
Renaming electron.exe doesn't break native addon linked against node.dll
**Actual behavior**
electron 4 is not using node as a shared dll liked explained here https://electronjs.org/blog/electron-internals-using-node-as-a-library#shared-library-or-static-library
If you build a native module with nodegyp and renames electron.exe to whatever.exe, the corresponding nodemodule will not load.
**To Reproduce**
Build any native module agains electron 4, renames electron.exe to something else and tries to load the module. It will fail
|
https://github.com/electron/electron/issues/15147
|
https://github.com/electron/electron/pull/15173
|
0c711f690e6a50840e7866af87ed1cc1949bac37
|
30ccb6aea52b913fcc9e1640b0eeccc452e8536d
| 2018-10-13T15:55:33Z |
c++
| 2018-10-16T00:26:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,140 |
["atom/browser/mac/in_app_purchase.mm"]
|
inAppPurchase.getReceiptURL() should be filesystem path
|
* Output of `node_modules/.bin/electron --version`: v3.0.4
* Operating System (Platform and Version): macOS 10.13.6
My current app is accepted by Apple and "pending developer release." However, before I release it I wanted to add and test IAP (in app purchases).
**Expected Behavior**
release/mas-dev/MyApp.app, lacking a receipt, launches and exits immediately with code 173 that triggers login for MAS sandbox test user, receipt is generated, and app should re-launch OK.
**Actual behavior**
Everything related to the first-launch, exit 173, login with test account, and receipt generation works fine. It fails on relaunch with console.app reporting a kernel message: `load code signature error 4 for file "MyApp Helper"`.
**To Reproduce**
I do not have a good reproduction because of the complexity of entitlements, provisioning profiles, certificates, etc.
**Screenshots**
Receigen says that the app has a valid receipt.

Entitlements look good, and the app is functioning fine in the sandbox...

**Additional Information**
The only other file I see that looks like "MyApp Helper" is in MyApp.app/Contents/Frameworks/MyApp Helper.app. If I drag this into Receigen for analysis... it is signed, and has these entitlements. It doesn't have a receipt... which I wouldn't expect.

I don't think I need LoginItems or helpers... what do they do, exactly? Also, what are the EH/NP versions of these helpers?
Thanks!
|
https://github.com/electron/electron/issues/15140
|
https://github.com/electron/electron/pull/15355
|
32ea2b67f074fb2e5682af172879095c9cda120b
|
c60745b8a3ebab3260b0e8a43fb58cabeff51b7a
| 2018-10-13T05:18:31Z |
c++
| 2018-11-05T17:49:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,132 |
["atom/browser/atom_browser_client.cc", "atom/browser/atom_browser_client.h", "patches/common/chromium/.patches", "patches/common/chromium/cross_site_document_resource_handler.patch"]
|
[4.0.0-beta.3] webSecurity in webPreferences ignored (CORB)
|
* Output of `node_modules/.bin/electron --version`: **v4.0.0-beta.3**
* Operating System (Platform and Version): **Windows 10**
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): **v3.0.4**
**Expected Behavior**
With electron 3, I could pass `webPreferences: {webwebSecurity: false}` to the BrowserWindow constructor (the equivalent of the `--disable-web-security` Chrome command line argument) which would disable CORB (effectively allowing cross-origin requests).
**Actual behavior**
CORB is still doing its thing (ignoring the `{webwebSecurity: false}` option; I see entries like these in the console:
`Cross-Origin Read Blocking (CORB) blocked cross-origin response <URL> with MIME type application/json. See <URL> for more details.`
**To Reproduce**
Make a request (using fetch or xhr) to a file on a different domain.
Example repo:
```
git clone https://github.com/IAmPicard/electron-cors-repro
npm install
npm run start
```
|
https://github.com/electron/electron/issues/15132
|
https://github.com/electron/electron/pull/15737
|
5db8197a5d5f4cb918844866ef99841654db2be4
|
9e8b26cc4eb0daf33f15521e829fc9dfc650e997
| 2018-10-13T01:01:44Z |
c++
| 2018-11-21T20:10:05Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,121 |
["atom/browser/net/url_request_stream_job.cc"]
|
Crash on start in URLRequestStreamJob
|
* Output of `node_modules/.bin/electron --version`: 4.0.0-beta.1
* Operating System (Platform and Version):
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 3.0.4
**Expected Behavior**
No crash. I wish I had a clear repro, but I'm not sure what's causing it yet (short of being _something_ inside Slack).
**Actual behavior**
Crash on start.
<details>
Relevant portion, with symbols:
<code>
net::URLRequestJob::ReadRawDataComplete(int) (in Electron Framework) (url_request_job.cc:516)
base::internal::Invoker<base::internal::BindState<void (atom::URLRequestStreamJob::*)(std::__1::vector<char, std::__1::allocator<char> >&&), base::WeakPtr<atom::URLRequestStreamJob>, base::internal::PassedWrapper<std::__1::vector<char, std::__1::allocator<char> > > >, void ()>::Run(base::internal::BindStateBase*) (in Electron Framework) (bind_internal.h:680)
base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) (in Electron Framework) (task_annotator.cc:101)
base::MessageLoop::RunTask(base::PendingTask*) (in Electron Framework) (message_loop.cc:423)
base::MessageLoop::DoWork() (in Electron Framework) (message_loop.cc:480)
base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) (in Electron Framework) (message_pump_libevent.cc:210)
base::RunLoop::Run() (in Electron Framework) (run_loop.cc:108)
content::BrowserProcessSubThread::IOThreadRun(base::RunLoop*) (in Electron Framework) (browser_process_sub_thread.cc:0)
base::Thread::ThreadMain() (in Electron Framework) (thread.cc:340)
base::(anonymous namespace)::ThreadFunc(void*) (in Electron Framework) (platform_thread_posix.cc:78)
_pthread_body + 340
_pthread_start + 377
thread_start + 13
</code>
<code>
Process: Electron [22711]
Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron
Identifier: com.github.Electron
Version: 4.0.0 (4.0.0)
Code Type: X86-64 (Native)
Parent Process: node [22710]
Responsible: iTerm2 [840]
User ID: 501
Date/Time: 2018-10-11 17:24:16.308 -0400
OS Version: Mac OS X 10.13.6 (17G65)
Report Version: 12
Bridge OS Version: 3.0 (14Y664)
Anonymous UUID: 01C06190-2FD2-AA9C-8474-30AC032AAEE9
Time Awake Since Boot: 2200 seconds
System Integrity Protection: enabled
Crashed Thread: 3 Chrome_IOThread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
VM Regions Near 0x8:
-->
__TEXT 000000010ab36000-000000010ab37000 [ 4K] r-x/rwx SM=COW /Users/USER/*/Electron.app/Contents/MacOS/Electron
Thread 0:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2ee9b785 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff2ee9aad7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff2ee9a153 CFRunLoopRunSpecific + 483
5 com.apple.HIToolbox 0x00007fff2e184d96 RunCurrentEventLoopInMode + 286
6 com.apple.HIToolbox 0x00007fff2e184b06 ReceiveNextEventCommon + 613
7 com.apple.HIToolbox 0x00007fff2e184884 _BlockUntilNextEventMatchingListInModeWithFilter + 64
8 com.apple.AppKit 0x00007fff2c435a73 _DPSNextEvent + 2085
9 com.apple.AppKit 0x00007fff2cbcbe34 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044
10 com.apple.AppKit 0x00007fff2c42a885 -[NSApplication run] + 764
11 com.github.Electron.framework 0x000000010c9924ac 0x10ab39000 + 31823020
12 com.github.Electron.framework 0x000000010c99118e 0x10ab39000 + 31818126
13 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
14 com.github.Electron.framework 0x000000010b5486c3 0x10ab39000 + 10548931
15 com.github.Electron.framework 0x000000010b5484b0 0x10ab39000 + 10548400
16 com.github.Electron.framework 0x000000010b54a9e2 0x10ab39000 + 10557922
17 com.github.Electron.framework 0x000000010b544908 0x10ab39000 + 10533128
18 com.github.Electron.framework 0x000000010c75c7c8 0x10ab39000 + 29505480
19 com.github.Electron.framework 0x000000010db8490d 0x10ab39000 + 50641165
20 com.github.Electron.framework 0x000000010c5878e4 0x10ab39000 + 27584740
21 com.github.Electron.framework 0x000000010ab3b694 AtomMain + 84
22 libdyld.dylib 0x00007fff56cef015 start + 1
Thread 1:
0 libsystem_kernel.dylib 0x00007fff56e4028a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff57007009 _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff57006be9 start_wqthread + 13
Thread 2:
0 libsystem_kernel.dylib 0x00007fff56e4028a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff57007009 _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff57006be9 start_wqthread + 13
Thread 3 Crashed:: Chrome_IOThread
0 com.github.Electron.framework 0x000000010ccf7f07 0x10ab39000 + 35385095
1 com.github.Electron.framework 0x000000010c801961 0x10ab39000 + 30181729
2 com.github.Electron.framework 0x000000010c8d2f4b 0x10ab39000 + 31039307
3 com.github.Electron.framework 0x000000010c8ecfbf 0x10ab39000 + 31145919
4 com.github.Electron.framework 0x000000010c8ed478 0x10ab39000 + 31147128
5 com.github.Electron.framework 0x000000010c98be54 0x10ab39000 + 31796820
6 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
7 com.github.Electron.framework 0x000000010b551024 0x10ab39000 + 10584100
8 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
9 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
10 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
11 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
12 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 4:
0 libsystem_kernel.dylib 0x00007fff56e4028a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff5700720e _pthread_wqthread + 1552
2 libsystem_pthread.dylib 0x00007fff57006be9 start_wqthread + 13
Thread 5:
0 libsystem_kernel.dylib 0x00007fff56e4028a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff57007009 _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff57006be9 start_wqthread + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff56e4028a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff57007009 _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff57006be9 start_wqthread + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010e13ea8f 0x10ab39000 + 56646287
2 com.github.Electron.framework 0x000000010e12f433 uv_run + 355
3 com.github.Electron.framework 0x000000010e0a8952 0x10ab39000 + 56031570
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e0a8b48 0x10ab39000 + 56032072
4 com.github.Electron.framework 0x000000010e0a68b8 0x10ab39000 + 56023224
5 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
6 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
7 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 9:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e0a8b48 0x10ab39000 + 56032072
4 com.github.Electron.framework 0x000000010e0a68b8 0x10ab39000 + 56023224
5 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
6 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
7 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e0a8b48 0x10ab39000 + 56032072
4 com.github.Electron.framework 0x000000010e0a68b8 0x10ab39000 + 56023224
5 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
6 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
7 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff56e36246 semaphore_wait_trap + 10
1 com.github.Electron.framework 0x000000010e13a570 uv_sem_wait + 16
2 com.github.Electron.framework 0x000000010e0ffab3 0x10ab39000 + 56388275
3 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
4 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
5 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010e13ea8f 0x10ab39000 + 56646287
2 com.github.Electron.framework 0x000000010e12f433 uv_run + 355
3 com.github.Electron.framework 0x000000010e10371f 0x10ab39000 + 56403743
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e12b583 0x10ab39000 + 56567171
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e12b583 0x10ab39000 + 56567171
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e12b583 0x10ab39000 + 56567171
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 16:
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010e13a6c9 uv_cond_wait + 9
3 com.github.Electron.framework 0x000000010e12b583 0x10ab39000 + 56567171
4 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 17:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2ee9b785 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff2ee9aad7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff2ee9a153 CFRunLoopRunSpecific + 483
5 com.apple.Foundation 0x00007fff30f96f26 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.github.Electron.framework 0x000000010c99224d 0x10ab39000 + 31822413
7 com.github.Electron.framework 0x000000010c99118e 0x10ab39000 + 31818126
8 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
9 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
10 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
11 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
12 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
13 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 18:: DnsConfigService
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010c9981f9 0x10ab39000 + 31846905
2 com.github.Electron.framework 0x000000010c995cdd 0x10ab39000 + 31837405
3 com.github.Electron.framework 0x000000010c98bf2b 0x10ab39000 + 31797035
4 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
5 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
6 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
7 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
8 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
9 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 19:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff56e41142 read + 10
1 com.github.Electron.framework 0x000000010c80c7ef 0x10ab39000 + 30226415
2 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
3 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
4 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
5 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 20:: TaskSchedulerServiceThread
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010c9981f9 0x10ab39000 + 31846905
2 com.github.Electron.framework 0x000000010c995cdd 0x10ab39000 + 31837405
3 com.github.Electron.framework 0x000000010c98bf12 0x10ab39000 + 31797010
4 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
5 com.github.Electron.framework 0x000000010c93b8f7 0x10ab39000 + 31467767
6 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 21:: TaskSchedulerForegroundWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937c63 0x10ab39000 + 31452259
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 22:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 23:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 24:: TaskSchedulerBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937c63 0x10ab39000 + 31452259
6 com.github.Electron.framework 0x000000010c937ad4 0x10ab39000 + 31451860
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 25:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 26:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937ad4 0x10ab39000 + 31451860
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 27:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 28:: TaskSchedulerSingleThreadSharedBackgroundBlocking0
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c90e51f 0x10ab39000 + 31282463
4 com.github.Electron.framework 0x000000010c93791a 0x10ab39000 + 31451418
5 com.github.Electron.framework 0x000000010c937c63 0x10ab39000 + 31452259
6 com.github.Electron.framework 0x000000010c937b04 0x10ab39000 + 31451908
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 29:: CompositorTileWorker1/33539
0 libsystem_kernel.dylib 0x00007fff56e3fa16 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff57008589 _pthread_cond_wait + 732
2 com.github.Electron.framework 0x000000010c985918 0x10ab39000 + 31770904
3 com.github.Electron.framework 0x000000010d6682a8 0x10ab39000 + 45281960
4 com.github.Electron.framework 0x000000010c94a2e4 0x10ab39000 + 31527652
5 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
6 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
7 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
8 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 30:: AudioThread
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c90e51f 0x10ab39000 + 31282463
4 com.github.Electron.framework 0x000000010c8ede5d 0x10ab39000 + 31149661
5 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
6 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 31:
0 libsystem_kernel.dylib 0x00007fff56e3fcf2 __select + 10
1 com.github.Electron.framework 0x000000010c886452 0x10ab39000 + 30725202
2 com.github.Electron.framework 0x000000010c885bff 0x10ab39000 + 30723071
3 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
4 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
5 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 32:: Chrome_DevToolsHandlerThread
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010c9981f9 0x10ab39000 + 31846905
2 com.github.Electron.framework 0x000000010c995cdd 0x10ab39000 + 31837405
3 com.github.Electron.framework 0x000000010c98bf2b 0x10ab39000 + 31797035
4 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
5 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
6 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
7 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
8 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
9 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 33:: TaskSchedulerSingleThreadForegroundBlocking1
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c90e51f 0x10ab39000 + 31282463
4 com.github.Electron.framework 0x000000010c93791a 0x10ab39000 + 31451418
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937bc4 0x10ab39000 + 31452100
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 34:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2ee9b785 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff2ee9aad7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff2ee9a153 CFRunLoopRunSpecific + 483
5 com.apple.AppKit 0x00007fff2c572fc4 _NSEventThread + 184
6 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
7 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
8 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 35:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937ad4 0x10ab39000 + 31451860
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 36:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff2ee9b785 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff2ee9aad7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff2ee9a153 CFRunLoopRunSpecific + 483
5 com.apple.Foundation 0x00007fff30f96f26 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.github.Electron.framework 0x000000010c99224d 0x10ab39000 + 31822413
7 com.github.Electron.framework 0x000000010c99118e 0x10ab39000 + 31818126
8 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
9 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
10 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
11 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
12 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
13 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 37:: TaskSchedulerBackgroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937ad4 0x10ab39000 + 31451860
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 38:: CacheThread_BlockFile
0 libsystem_kernel.dylib 0x00007fff56e40bea kevent + 10
1 com.github.Electron.framework 0x000000010c9981f9 0x10ab39000 + 31846905
2 com.github.Electron.framework 0x000000010c995cdd 0x10ab39000 + 31837405
3 com.github.Electron.framework 0x000000010c98bf12 0x10ab39000 + 31797010
4 com.github.Electron.framework 0x000000010c90ee25 0x10ab39000 + 31284773
5 com.github.Electron.framework 0x000000010c94aadd 0x10ab39000 + 31529693
6 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
7 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
8 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
9 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 39:
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010d4bb80e 0x10ab39000 + 43526158
3 com.github.Electron.framework 0x000000010d4bba79 0x10ab39000 + 43526777
4 com.github.Electron.framework 0x000000010d4b7f58 0x10ab39000 + 43511640
5 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
6 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
7 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 40:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937e98 0x10ab39000 + 31452824
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 41:: TaskSchedulerForegroundBlockingWorker
0 libsystem_kernel.dylib 0x00007fff56e3620a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff56e35724 mach_msg + 60
2 com.github.Electron.framework 0x000000010c923ded 0x10ab39000 + 31370733
3 com.github.Electron.framework 0x000000010c923ee1 0x10ab39000 + 31370977
4 com.github.Electron.framework 0x000000010c937928 0x10ab39000 + 31451432
5 com.github.Electron.framework 0x000000010c937c63 0x10ab39000 + 31452259
6 com.github.Electron.framework 0x000000010c937b64 0x10ab39000 + 31452004
7 com.github.Electron.framework 0x000000010c98c267 0x10ab39000 + 31797863
8 libsystem_pthread.dylib 0x00007fff57007661 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff5700750d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff57006bf9 thread_start + 13
Thread 3 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fed93e248c0 rcx: 0x5638c42e172e5067 rdx: 0x0000000000000000
rdi: 0x0000000000000000 rsi: 0x0000000000008000 rbp: 0x0000700006de7a10 rsp: 0x0000700006de79f0
r8: 0x000000000000000a r9: 0x000000000000000a r10: 0x0000000000011558 r11: 0x00000000843c13b9
r12: 0x0000000000000000 r13: 0x0000700006de7d18 r14: 0x0000000000008000 r15: 0x000000010c83c6e0
rip: 0x000000010ccf7f07 rfl: 0x0000000000010246 cr2: 0x0000000000000008
Logical CPU: 3
Error Code: 0x00000004
Trap Number: 14
Binary Images:
0x10ab36000 - 0x10ab36fff +com.github.Electron (4.0.0 - 4.0.0) <A66AAB6A-8A4B-30C9-A708-9C2A009B2C83> /Users/USER/*/Electron.app/Contents/MacOS/Electron
0x10ab39000 - 0x110313fd7 +com.github.Electron.framework (4.0.0-beta.1) <E1C6CAAC-8DCC-3660-B28C-AD60A7F8ECB4> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x110916000 - 0x110931fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x110953000 - 0x1109b6ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x110a28000 - 0x110a3cfff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x110a4e000 - 0x110caefff +libffmpeg.dylib (0) <6B8F69C1-3C1E-377C-A700-3AC73CD590D2> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x11603a000 - 0x11603cff7 +runas.node (???) <139020C2-A54C-3B56-8F97-C389B065177F> /Users/USER/*/runas.node
0x116223000 - 0x116227fff +keytar.node (???) <835318EA-F49E-3A71-8E40-972BFF2B36A0> /Users/USER/*/keytar.node
0x1198c6000 - 0x119910acf dyld (551.4) <8A72DE9C-A136-3506-AA02-4BA2B82DCAF3> /usr/lib/dyld
0x7fff2afee000 - 0x7fff2b1ceff3 com.apple.avfoundation (2.0 - 1536.36) <BB65ED51-CE44-31BD-A6EC-4B1EC5EADDD9> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff2b1cf000 - 0x7fff2b288fff com.apple.audio.AVFAudio (1.0 - ???) <ECE63BA3-4344-3522-904B-71F89677AC7D> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff2b38e000 - 0x7fff2b38efff com.apple.Accelerate (1.11 - Accelerate 1.11) <8632A9C5-19EA-3FD7-A44D-80765CC9C540> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff2b38f000 - 0x7fff2b3a5fef libCGInterfaces.dylib (417.2) <2E67702C-75F6-308A-A023-F28120BEE667> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff2b3a6000 - 0x7fff2b8a4fc3 com.apple.vImage (8.1 - ???) <A243A7EF-0C8E-3A9A-AA38-44AFD7507F00> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff2b8a5000 - 0x7fff2b9fffe3 libBLAS.dylib (1211.50.2) <62C659EB-3E32-3B5F-83BF-79F5DF30D5CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff2ba00000 - 0x7fff2ba2efef libBNNS.dylib (38.1) <7BAEFDCA-3227-3E07-80D8-59B6370B89C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff2ba2f000 - 0x7fff2bdeeff7 libLAPACK.dylib (1211.50.2) <40ADBA5F-8B2D-30AC-A7AD-7B17C37EE52D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff2bdef000 - 0x7fff2be04ff7 libLinearAlgebra.dylib (1211.50.2) <E8E0B7FD-A0B7-31E5-AF01-81781F71EBBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff2be05000 - 0x7fff2be0aff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff2be0b000 - 0x7fff2be8bfff libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff2be8c000 - 0x7fff2be9ffff libSparseBLAS.dylib (1211.50.2) <722573CC-31CC-34B2-9032-E4F652A9CCFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff2bea0000 - 0x7fff2c04dfc3 libvDSP.dylib (622.50.5) <40690941-CF89-3F90-A0AC-A4D200744A5D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff2c04e000 - 0x7fff2c0fffff libvMisc.dylib (622.50.5) <BA2532DF-2D68-3DD0-9B59-D434BF702AA4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff2c100000 - 0x7fff2c100fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <54FF3B43-E66C-3F36-B34B-A2B3B0A36502> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff2c3f4000 - 0x7fff2d252fff com.apple.AppKit (6.9 - 1561.60.100) <3C27CF6F-E640-3411-A87D-CCB2222CC754> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff2d2a4000 - 0x7fff2d2a4fff com.apple.ApplicationServices (48 - 50) <AFFBD94A-AF76-336E-B53E-57524EAE8EF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff2d2a5000 - 0x7fff2d30bfff com.apple.ApplicationServices.ATS (377 - 445.4) <85E779EE-0219-3181-B4C4-201E4CC82AB5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff2d3a4000 - 0x7fff2d4c6fff libFontParser.dylib (222.1.6) <6CEBACDD-B848-302E-B4B2-630CB16E663E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff2d4c7000 - 0x7fff2d511ff7 libFontRegistry.dylib (221.4) <5FDB4F1A-E15C-3ACB-A5C1-F15458C0C6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff2d5b6000 - 0x7fff2d5e9ff7 libTrueTypeScaler.dylib (222.1.6) <9147F859-8BD9-31D9-AB54-8E9549B92AE9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff2d653000 - 0x7fff2d657ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <A5FB2694-1559-34A8-A3D3-2029F68A63CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff2d6f7000 - 0x7fff2d749ffb com.apple.HIServices (1.22 - 624.1) <66FD9ED2-9630-313C-86AE-4C2FBCB3F351> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff2d74a000 - 0x7fff2d758fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <B65FF7E6-E9B5-34D8-8CA7-63D415A8A9A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff2d759000 - 0x7fff2d7a5fff com.apple.print.framework.PrintCore (13.4 - 503.2) <B90C67C1-0292-3CEC-885D-F1882CD104BE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff2d7a6000 - 0x7fff2d7e0fff com.apple.QD (3.12 - 404.2) <38B20AFF-9D54-3B52-A6DC-C0D71380AA5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff2d7e1000 - 0x7fff2d7edfff com.apple.speech.synthesis.framework (7.8.1 - 7.8.1) <A08DE016-C8F2-3B0E-BD34-15959D13DBF0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff2d7ee000 - 0x7fff2da7cff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <E0B8B5D8-80A0-308B-ABD6-F8612102B5D8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff2da7e000 - 0x7fff2da7efff com.apple.audio.units.AudioUnit (1.14 - 1.14) <ABF8778E-4F9D-305E-A528-DE406A1A2B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff2dda1000 - 0x7fff2e13bff7 com.apple.CFNetwork (902.1 - 902.1) <76EB8CB6-BF59-3BDA-BF2B-F21B161611B9> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff2e150000 - 0x7fff2e150fff com.apple.Carbon (158 - 158) <F8B370D9-2103-3276-821D-ACC756167F86> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff2e151000 - 0x7fff2e154ffb com.apple.CommonPanels (1.2.6 - 98) <2391761C-5CAA-3F68-86B7-50B37927B104> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff2e155000 - 0x7fff2e45afff com.apple.HIToolbox (2.1.1 - 911.10) <BF7F9C0E-C732-3FB2-9BBC-362888BDA57B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff2e45b000 - 0x7fff2e45effb com.apple.help (1.3.8 - 66) <DEBADFA8-C189-3195-B0D6-A1F2DE95882A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff2e45f000 - 0x7fff2e464fff com.apple.ImageCapture (9.0 - 9.0) <23B4916F-3B43-3DFF-B956-FC390EECA284> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff2e465000 - 0x7fff2e4faffb com.apple.ink.framework (10.9 - 221) <5206C8B0-22DA-36C9-998E-846EDB626D5B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff2e4fb000 - 0x7fff2e515ff7 com.apple.openscripting (1.7 - 174) <1B2A1F9E-5534-3D61-83CA-9199B39E8708> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff2e536000 - 0x7fff2e537fff com.apple.print.framework.Print (12 - 267) <3682ABFB-2561-3419-847D-02C247F4800D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff2e538000 - 0x7fff2e53aff7 com.apple.securityhi (9.0 - 55006) <C1406B8D-7D05-3959-808F-9C82189CF57F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff2e53b000 - 0x7fff2e541fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2ED8643D-B0C3-3F17-82A2-BBF13E6CBABC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff2e662000 - 0x7fff2e662fff com.apple.Cocoa (6.11 - 22) <78E6C28E-4308-3D10-AD14-0CBCF6789B3F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff2e670000 - 0x7fff2e729fff com.apple.ColorSync (4.13.0 - 3325) <D283C285-447D-3258-A7E4-59532123B8FF> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff2e8b6000 - 0x7fff2e949ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <EB35D3EC-56EA-33E6-98DC-BDC3A5FA8ACE> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff2e9b0000 - 0x7fff2e9d9ffb com.apple.CoreBluetooth (1.0 - 1) <E1335074-9D07-370E-8440-61C4874BAC56> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff2e9da000 - 0x7fff2ed30fef com.apple.CoreData (120 - 851) <A2B59780-FB16-36A3-8EE0-E0EF072454E0> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff2ed31000 - 0x7fff2ee14fff com.apple.CoreDisplay (99.14 - 99.14) <A1B91ADD-828D-33A0-8A92-CC3F83DF89D0> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff2ee15000 - 0x7fff2f2b6fef com.apple.CoreFoundation (6.9 - 1454.90) <E5D594BF-9142-3325-A62D-CF4AAF472642> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff2f2b8000 - 0x7fff2f8c8fef com.apple.CoreGraphics (2.0 - 1161.21) <375C477F-5A89-3C49-9B63-373C81A63F7E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff2f8ca000 - 0x7fff2fbb9fff com.apple.CoreImage (13.0.0 - 579.5) <AAE2DFD0-9B0A-3D56-8A3E-C460BAF70394> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff2fc26000 - 0x7fff2fc6bfff com.apple.audio.midi.CoreMIDI (1.10 - 88) <BC3E756C-A066-325C-9383-A78A4A66C7BF> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x7fff2fe48000 - 0x7fff2ff3effb com.apple.CoreMedia (1.0 - 2276.68) <5F0001EF-10FF-3334-9170-7FD5FB026205> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff2ff3f000 - 0x7fff2ff8dfff com.apple.CoreMediaIO (814.0 - 4995) <4A7FA7DF-4F7C-3378-AE5F-A33273B2FEA6> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff2ff8e000 - 0x7fff2ff8efff com.apple.CoreServices (822.36 - 822.36) <C8368F17-1589-3BA5-A0E7-89CB8DF2454F> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff2ff8f000 - 0x7fff30003ffb com.apple.AE (735.1 - 735.1) <08EBA184-20F7-3725-AEA6-C314448161C6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff30004000 - 0x7fff302dbfff com.apple.CoreServices.CarbonCore (1178.4 - 1178.4) <0D5E19BF-18CB-3FA4-8A5F-F6C787C5EE08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff302dc000 - 0x7fff30310fff com.apple.DictionaryServices (1.2 - 284.2) <6505B075-41C3-3C62-A4C3-85CE3F6825CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff30311000 - 0x7fff30319ffb com.apple.CoreServices.FSEvents (1239.50.1 - 1239.50.1) <3637CEC7-DF0E-320E-9634-44A442925C65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff3031a000 - 0x7fff304d7fff com.apple.LaunchServices (822.36 - 822.36) <6E68C090-B12D-3D3D-9617-E5D82C36B2D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff304d8000 - 0x7fff30588ff7 com.apple.Metadata (10.7.0 - 1191.4.13) <B5C22E70-C265-3C9F-865F-B138994A418D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff30589000 - 0x7fff305e9fff com.apple.CoreServices.OSServices (822.36 - 822.36) <3BB2E0CE-81AE-3D3D-9FCE-E1B7FC6D6A61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff305ea000 - 0x7fff30658fff com.apple.SearchKit (1.4.0 - 1.4.0) <3662545A-B1CF-3079-BDCD-C83855CEFEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff30659000 - 0x7fff3067dffb com.apple.coreservices.SharedFileList (71.21 - 71.21) <35582D88-5975-35E2-A29A-E3148C3EE727> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff3091e000 - 0x7fff30a6efff com.apple.CoreText (352.0 - 578.22) <6129F39D-284D-3BBF-8999-7854AB61C01C> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff30a6f000 - 0x7fff30aa9fff com.apple.CoreVideo (1.8 - 0.0) <86CCC036-51BB-3DD1-9601-D93798BCCD0F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff30aaa000 - 0x7fff30b35ff3 com.apple.framework.CoreWLAN (13.0 - 1350.1) <E862CC02-69D2-3503-887B-B6E8223081E7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff30db0000 - 0x7fff30db5fff com.apple.DiskArbitration (2.7 - 2.7) <A975AD56-4CD3-3A89-8732-858CA9BD3DAA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff30f73000 - 0x7fff30f75ff7 com.apple.ForceFeedback (1.0.6 - 1.0.6) <87FB3F31-DF4C-3172-BF86-45EFC331BDD8> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x7fff30f76000 - 0x7fff3133cfff com.apple.Foundation (6.9 - 1454.90) <8EA924F3-ADAE-3F4B-8482-8B11C027D9A5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff313ad000 - 0x7fff313ddfff com.apple.GSS (4.0 - 2.0) <D774A165-5581-3479-AB5D-2BBDB5CF8882> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff313de000 - 0x7fff313f6ff3 com.apple.GameController (1.0 - 1) <CE96F310-B3E5-3EAE-B1BC-334F8C224FA7> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff314ef000 - 0x7fff315f3ffb com.apple.Bluetooth (6.0.7 - 6.0.7f10) <557F26F9-C7A0-34EA-A905-22E243BF6B48> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff31653000 - 0x7fff316eefff com.apple.framework.IOKit (2.0.2 - 1445.71.1) <2EA4F383-CAA9-3AF0-99C5-90C22ADAA6B6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff316f0000 - 0x7fff316f7fff com.apple.IOSurface (211.15 - 211.15) <9FD406F1-6BF2-35B0-8339-DF83A1A661EB> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff316f8000 - 0x7fff3174dff3 com.apple.ImageCaptureCore (7.0 - 7.0) <0DAB3D7E-8C3F-35DE-96DF-C370AD35EB65> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff3174e000 - 0x7fff318c8ff7 com.apple.ImageIO.framework (3.3.0 - 1739.3) <7C579D3F-AE0B-31C9-8F80-67F2290B8DE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff318c9000 - 0x7fff318cdffb libGIF.dylib (1739.3) <7AA44C9D-48E8-3090-B044-61FE6F0AEF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff318ce000 - 0x7fff319b5fef libJP2.dylib (1739.3) <AEBF7260-0C10-30C0-8F0F-8B347DEE78B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff319b6000 - 0x7fff319d9ff7 libJPEG.dylib (1739.3) <D8C966AD-A00C-3E8B-A7ED-D7CC7ECB3224> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff31cb5000 - 0x7fff31cdbfeb libPng.dylib (1739.3) <1737F680-99D1-3F03-BFA5-5CDA30EB880A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff31cdc000 - 0x7fff31cdeffb libRadiance.dylib (1739.3) <21746434-FCC7-36DE-9331-11277DF66AA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff31cdf000 - 0x7fff31d2dfef libTIFF.dylib (1739.3) <C4CB5C1D-20F2-3BD4-B0E6-629FDB3EF8E8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff31ee9000 - 0x7fff32bcffff com.apple.JavaScriptCore (13605 - 13605.3.8) <E6B49CDA-72F0-3E58-85EF-98AF10CE04B0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff32be7000 - 0x7fff32c00ff7 com.apple.Kerberos (3.0 - 1) <F86DCCDF-93C1-38B3-82C2-477C12E8EE6D> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff32c80000 - 0x7fff32c9effb com.apple.CoreAuthentication.SharedUtils (1.0 - 425.70.1) <6F48A766-5AE6-371D-8695-675A4A921CEE> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils
0x7fff32c9f000 - 0x7fff32cb5ff7 com.apple.LocalAuthentication (1.0 - 425.70.1) <1BD35C0C-1F2C-3B5C-8F98-8AB2B2338C88> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x7fff32ebf000 - 0x7fff32ec6fff com.apple.MediaAccessibility (1.0 - 114) <9F72AACD-BAEB-3646-BD0F-12C47591C20D> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff32f76000 - 0x7fff335e0ff7 com.apple.MediaToolbox (1.0 - 2276.68) <CB6791F2-B401-360E-9531-BFBC5138254E> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff335e2000 - 0x7fff33663fff com.apple.Metal (125.30 - 125.30) <975FD6B5-D695-346A-869F-0584A968D100> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff33680000 - 0x7fff3369bfff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <AD754E8F-CA00-3878-9AF3-208C224A230B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff3369c000 - 0x7fff3370bfef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <338B7779-E608-3D68-8A07-2ACC11299744> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff3370c000 - 0x7fff33730fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <9CE072D7-853B-3939-9645-7EB951376B87> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff33731000 - 0x7fff33818ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <0DE891AD-27E5-38FF-AEC8-4A95356C4357> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff33819000 - 0x7fff33819ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <2D2D261C-50B0-32F9-BF9A-5C01382BB528> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff34818000 - 0x7fff34824ffb com.apple.NetFS (6.0 - 4.0) <471DD96F-FA2E-3FE9-9746-2519A6780D1A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff37616000 - 0x7fff37670ff7 com.apple.opencl (2.8.24 - 2.8.24) <4D7401A7-6ADD-3632-85AE-7A5012DFFA04> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff37671000 - 0x7fff3768dffb com.apple.CFOpenDirectory (10.13 - 207.50.1) <29F55F7B-379F-3053-8FF3-5C6675A3DD4D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff3768e000 - 0x7fff37699fff com.apple.OpenDirectory (10.13 - 207.50.1) <F895547D-4915-353F-9C1E-E95172BA803B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff38818000 - 0x7fff3881afff libCVMSPluginSupport.dylib (16.7.4) <F9270AE0-CC3B-3E3E-BA32-CC1068DD8F27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff3881b000 - 0x7fff38820ffb libCoreFSCache.dylib (162.9) <7AF87F3E-D5D0-3625-BE09-CA4223195466> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff38821000 - 0x7fff38825fff libCoreVMClient.dylib (162.9) <115FE643-6141-39B4-8193-77DFCBE7A4E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff38826000 - 0x7fff3882fff3 libGFXShared.dylib (16.7.4) <EB2BF8A0-E10D-35EA-8F46-B2E3C62C12A8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff38830000 - 0x7fff3883bfff libGL.dylib (16.7.4) <2BB333D3-5C61-33DF-8545-06DF2D08B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff3883c000 - 0x7fff38877fe7 libGLImage.dylib (16.7.4) <4DA003CE-0B74-3FE4-808C-B2FBCE517EB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff389e6000 - 0x7fff38a24ffb libGLU.dylib (16.7.4) <BCB09CD8-EB0E-38FA-8B5A-9E29532EE364> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff3939c000 - 0x7fff393abff3 com.apple.opengl (16.7.4 - 16.7.4) <9BDE8FF9-5418-3C70-8D1C-09656884CE48> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff39725000 - 0x7fff39871ff7 com.apple.QTKit (7.7.3 - 3014.8) <FEDEF531-50A3-32AB-A546-E6BA994C58E1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff39872000 - 0x7fff39ad7ff7 com.apple.imageKit (3.0 - 1043) <6C19A20B-6D0D-380A-A87D-F923658E1726> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff39ad8000 - 0x7fff39bc7ffb com.apple.PDFKit (1.0 - 677.67) <6BD11C23-1AEA-3078-8D0C-A7152BCF9031> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff39bc8000 - 0x7fff3a0daff7 com.apple.QuartzComposer (5.1 - 364) <1369D6DA-8842-3878-B546-1D09828331F5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff3a0db000 - 0x7fff3a0fefff com.apple.quartzfilters (1.10.0 - 1.10.0) <C95CB89D-148D-341B-BC50-82D8C32BF767> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff3a0ff000 - 0x7fff3a1f8ff7 com.apple.QuickLookUIFramework (5.0 - 743.13) <093180B8-FB25-3292-AD99-1791CF8D6EBF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff3a1f9000 - 0x7fff3a1f9fff com.apple.quartzframework (1.5 - 21) <DCEB0FCC-2C32-3D02-8752-7B6FA009AB85> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff3a1fa000 - 0x7fff3a446ff7 com.apple.QuartzCore (1.11 - 584.62) <1950D993-DE48-3C97-95A5-66D98BDFC95D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff3a447000 - 0x7fff3a49eff7 com.apple.QuickLookFramework (5.0 - 743.13) <8254FFF2-EE0D-323D-A6F3-BEB59615EE47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff3a664000 - 0x7fff3a67cff3 com.apple.SafariServices.framework (13606 - 13606.2.11) <23DEEDDA-4E7D-3673-B0A5-D2496DD1F7DE> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff3ac7c000 - 0x7fff3afa7fff com.apple.security (7.0 - 58286.70.7) <9FC166E1-14D0-305C-A086-02B9E83F547E> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff3afa8000 - 0x7fff3b034ff7 com.apple.securityfoundation (6.0 - 55185.50.5) <D708D069-AEDB-36C2-B1DA-479DA91D7711> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff3b035000 - 0x7fff3b065fff com.apple.securityinterface (10.0 - 55109.50.6) <3C20BE54-8115-3C7B-9719-F746A9EBF72B> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff3b066000 - 0x7fff3b06affb com.apple.xpc.ServiceManagement (1.0 - 1) <71B45D83-ECA4-3265-997E-683A8B8DF413> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff3b2cb000 - 0x7fff3b2d7ffb com.apple.StoreKit (1.0 - 658.1) <7EA9DED8-8A9F-335B-AC94-8D6DB3963905> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x7fff3b40f000 - 0x7fff3b47fff3 com.apple.SystemConfiguration (1.17 - 1.17) <8532B8E9-7E30-35A3-BC4A-DDE8E0614FDA> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff3b634000 - 0x7fff3b9affff com.apple.VideoToolbox (1.0 - 2276.68) <8F6FBC7D-60EA-38B2-B583-7ECB58E8936E> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff3e37c000 - 0x7fff3e40ffff com.apple.APFS (1.0 - 1) <6BBB3988-1C91-314F-A77A-4E093A1B18F0> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff3efed000 - 0x7fff3f008ff3 com.apple.AppContainer (4.0 - 360.50.7) <59F95A1A-15DF-33CE-9E52-DDEEFDC4D138> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff3f03a000 - 0x7fff3f062fff com.apple.framework.Apple80211 (13.0 - 1361.7) <16627876-8CF5-3502-A1D6-35FCBDD5E79A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff3f064000 - 0x7fff3f073fef com.apple.AppleFSCompression (96.60.1 - 1.0) <A7C875C4-F5EE-3272-AFB6-57C9FD5352B3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff3f172000 - 0x7fff3f17dff7 com.apple.AppleIDAuthSupport (1.0 - 1) <2FAF5567-CDB3-33EF-AB71-05D37F2248B7> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff3f1b7000 - 0x7fff3f1ffff3 com.apple.AppleJPEG (1.0 - 1) <8DD410CB-76A1-3F22-9A9F-0491FA0CEB4A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff3f23a000 - 0x7fff3f262fff com.apple.applesauce (1.0 - ???) <CCA8B094-1BCE-3AE3-A0A7-D544C818DE36> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff3f32b000 - 0x7fff3f32eff3 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <0E33401D-7B9C-378A-8EE8-0E3D40B63C8D> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff3f32f000 - 0x7fff3f37fff7 com.apple.AppleVAFramework (5.0.41 - 5.0.41) <14E91E09-C345-3C5F-8D3C-4BC291FAF796> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff3f6b4000 - 0x7fff3f94dffb com.apple.AuthKit (1.0 - 1) <6CA71A11-91C5-307C-B933-9FCDEDCB580A> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff3fa84000 - 0x7fff3fa8bff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <51A41CA3-DB1D-3380-993E-99C54AEE518E> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff3fa8c000 - 0x7fff3fb13ff7 com.apple.backup.framework (1.9.5 - 1.9.5) <5E7B0925-8C71-353D-BB0F-9CA144BB264C> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff3fb1c000 - 0x7fff3fb22ff7 com.apple.BezelServicesFW (305.1 - 305.1) <7D2C4717-FFF2-3262-B822-1982596BE46B> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff408f5000 - 0x7fff40944ff3 com.apple.ChunkingLibrary (189 - 189) <C021A0EB-82E7-3A1E-A772-96B0E7E038D9> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff414c0000 - 0x7fff414ccff7 com.apple.CommerceCore (1.0 - 658.1) <AA0D0B4D-650B-3374-B6E6-04B88D26B55C> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff414cd000 - 0x7fff414d6ff3 com.apple.CommonAuth (4.0 - 2.0) <4D237B25-27E5-3577-948B-073659F6D3C0> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff41812000 - 0x7fff41c1afff com.apple.CoreAUC (259.0.0 - 259.0.0) <B3D5289B-9E8A-37FE-855B-7277D700029E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff41c1b000 - 0x7fff41c4bff7 com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <E9FF9574-122A-3966-AA2B-546E512ACD06> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff41ce2000 - 0x7fff41d26ff3 com.apple.corebrightness (1.0 - 1) <7E67395F-F587-3EE2-AE98-339EC152807C> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff41fdc000 - 0x7fff41fecff7 com.apple.CoreEmoji (1.0 - 69.3) <A4357F5C-0C38-3A61-B456-D7321EB2CEE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff422f0000 - 0x7fff42306ff7 com.apple.CoreMediaAuthoring (2.2 - 956) <FBA28A76-97E2-3023-A3F6-D03280AE2889> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff4263b000 - 0x7fff426e0fff com.apple.CorePDF (4.0 - 414) <D64D17C3-9AD0-3A29-89DE-36BEF0156381> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff42780000 - 0x7fff42788ff3 com.apple.CorePhoneNumbers (1.0 - 1) <A5D41251-9F38-3AB9-9DE7-F77023FAAA44> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff42913000 - 0x7fff42944ff3 com.apple.CoreServicesInternal (309.1 - 309.1) <4ECD14EA-A493-3B84-A32F-CF928474A405> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff42c81000 - 0x7fff42d12fff com.apple.CoreSymbolication (9.3 - 64026.2) <D55A6E5B-0267-3F3A-8D90-4B8F39458420> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff42d95000 - 0x7fff42ecafff com.apple.coreui (2.1 - 494.1) <B2C515C3-FCE8-3B28-A225-05AD917F509B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff42ecb000 - 0x7fff42ffcfff com.apple.CoreUtils (5.6 - 560.11) <1A02D6F0-8C65-3FAE-AD63-56477EDE4773> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff43051000 - 0x7fff430b5fff com.apple.framework.CoreWiFi (13.0 - 1350.1) <6EC5DEB3-6E2F-3DC2-BE59-1FD05175FB0C> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff430b6000 - 0x7fff430c6ff7 com.apple.CrashReporterSupport (10.13 - 1) <A909F468-0648-3F51-A77E-3F9ADBC9A941> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff43144000 - 0x7fff43153ff7 com.apple.framework.DFRFoundation (1.0 - 191.7) <5F486F5A-3795-3CD4-86A2-FD008A23F205> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff43156000 - 0x7fff4315affb com.apple.DSExternalDisplay (3.1 - 380) <901B7F6D-376A-3848-99D0-170C4D00F776> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff431dc000 - 0x7fff43252fff com.apple.datadetectorscore (7.0 - 590.3) <7437160E-68A3-3FD7-8868-5E3F92E23C4F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff432a0000 - 0x7fff432e0ff7 com.apple.DebugSymbols (181.0 - 181.0) <299A0238-ED78-3676-B131-274D972824AA> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff432e1000 - 0x7fff43410fff com.apple.desktopservices (1.12.5 - 1.12.5) <7739C9A5-64D9-31A5-899B-5FFA242AD70D> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff436dd000 - 0x7fff436e1ff7 com.apple.DisplayServicesFW (3.1 - 380) <6F0B8AC6-7E62-3DFC-B373-BF04833724C0> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff4422a000 - 0x7fff44658fff com.apple.vision.FaceCore (3.3.2 - 3.3.2) <B574FE33-4A41-3611-9738-388EBAF03E37> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff47920000 - 0x7fff47925fff com.apple.GPUWrangler (3.20.13 - 3.20.13) <9C5BD618-69E3-36D5-9BC9-A4841BC00D2A> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff47cd9000 - 0x7fff47cfeff3 com.apple.GenerationalStorage (2.0 - 285.3) <13B96400-FF70-376B-B20E-FB7D61064800> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff4869b000 - 0x7fff486aafff com.apple.GraphVisualizer (1.0 - 5) <B993B8A2-5700-3DFC-9EB7-4CCEE8F959F1> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff4872d000 - 0x7fff487a1fff com.apple.Heimdal (4.0 - 2.0) <93091531-CC91-34FF-8B93-5D3F02C37BC5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff490b1000 - 0x7fff490b8ff7 com.apple.IOAccelerator (378.26 - 378.26) <2274BE11-18DE-3B13-BCDB-C488C9BB19AD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff490bc000 - 0x7fff490d3fff com.apple.IOPresentment (1.0 - 35.1) <7C6332FF-6535-3064-B437-1E9F70671927> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff4949e000 - 0x7fff494c4ffb com.apple.IconServices (97.6 - 97.6) <A56D826D-20D2-34BE-AACC-A80CFCB4E915> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff495d1000 - 0x7fff495d4ff3 com.apple.InternationalSupport (1.0 - 1) <5AB382FD-BF81-36A1-9565-61F1FD398ECA> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff49642000 - 0x7fff49652ffb com.apple.IntlPreferences (2.0 - 227.5.2) <DA6BC4CA-14F5-3A83-82B6-812344A050D2> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff49749000 - 0x7fff4975cff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <AED421B0-90A0-3969-98A4-CCBCF2D3360B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff4975d000 - 0x7fff49852ff7 com.apple.LanguageModeling (1.0 - 159.5.3) <7F0AC200-E3DD-39FB-8A95-00DD70B66A9F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff49853000 - 0x7fff49895fff com.apple.Lexicon-framework (1.0 - 33.5) <DC94CF9E-1EB4-3C0E-B298-CA1190885276> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff49899000 - 0x7fff498a0ff7 com.apple.LinguisticData (1.0 - 238.3) <49A54649-1021-3DBD-99B8-1B2EDFFA5378> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff4a09f000 - 0x7fff4a0a2fff com.apple.Mangrove (1.0 - 1) <27D6DF76-B5F8-3443-8826-D25B284331BF> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff4a5b2000 - 0x7fff4a61bff7 com.apple.gpusw.MetalTools (1.0 - 1) <458F319A-2707-3C83-8351-BD9F02EC05BD> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff4a7a9000 - 0x7fff4a7c2fff com.apple.MobileKeyBag (2.0 - 1.0) <32E63C7B-E133-33DE-A593-C3C10D64FCAA> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff4a84e000 - 0x7fff4a878ffb com.apple.MultitouchSupport.framework (1404.4 - 1404.4) <45374A2A-C0BC-3A70-8183-37295205CDFA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff4aadf000 - 0x7fff4aaeafff com.apple.NetAuth (6.2 - 6.2) <B3795F63-C14A-33E1-9EE6-02A2E7661321> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff4c380000 - 0x7fff4c390ffb com.apple.PerformanceAnalysis (1.194 - 194) <2844933E-B71C-3BE9-9A84-27B29E111F13> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff4e14f000 - 0x7fff4e16dfff com.apple.ProtocolBuffer (1 - 260) <40704740-4A53-3010-A49B-08D1D69D1D5E> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff4e2da000 - 0x7fff4e2f0ff7 com.apple.QuickLookThumbnailing (1.0 - 1) <8F0092E4-6494-349D-B4C9-494DF293D716> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff4e33b000 - 0x7fff4e347fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1205.70.9) <2937CFBF-587C-33A0-B493-FFB4E606A498> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff4e348000 - 0x7fff4e36bffb com.apple.RemoteViewServices (2.0 - 125) <592323D1-CB44-35F1-9921-4C2AB8D920A0> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff4e36c000 - 0x7fff4e381ff3 com.apple.xpc.RemoteXPC (1.0 - 1205.70.9) <C3DB7D30-903A-306C-9DFA-1669D2B60497> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff4fb47000 - 0x7fff4fb4aff3 com.apple.SecCodeWrapper (4.0 - 360.50.7) <D7136CA5-CC5E-3B3C-AF1A-A8E5FF2023DF> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff4fc8f000 - 0x7fff4fda4ff7 com.apple.Sharing (1050.22.2 - 1050.22.2) <4E3CCDF2-EA26-334F-8EBA-79BD28486C9D> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff4fdcf000 - 0x7fff4fdd0ff7 com.apple.performance.SignpostNotification (1.2.6 - 2.6) <8F04800F-3570-3392-A24D-B229FF03F7F9> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification
0x7fff50b18000 - 0x7fff50db4ff7 com.apple.SkyLight (1.600.0 - 312.103) <27F91170-846C-3E9E-9B8A-788F27C7DAF5> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff5157d000 - 0x7fff5158afff com.apple.SpeechRecognitionCore (4.6.1 - 4.6.1) <87EE7AB5-6925-3D21-BE00-F155CB457699> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff52130000 - 0x7fff521b9fc7 com.apple.Symbolication (9.3 - 64033) <C2C55C9A-C264-3044-A953-16457148190A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff5272a000 - 0x7fff52732ff7 com.apple.TCC (1.0 - 1) <E1EB7272-FE6F-39AB-83CA-B2B5F2A88D9B> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff5293f000 - 0x7fff529fcff7 com.apple.TextureIO (3.7 - 3.7) <F8BAC954-405D-3CC3-AB7B-048C866EF980> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff52aad000 - 0x7fff52c5cfff com.apple.UIFoundation (1.0 - 547.5) <86A2FBA7-2709-3894-A3D5-A00C19BAC48D> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff53931000 - 0x7fff53a00ff7 com.apple.ViewBridge (343.2 - 343.2) <5519FCED-1F88-3BE6-9BE1-69992086B01B> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff54365000 - 0x7fff54367ffb com.apple.loginsupport (1.0 - 1) <D1232C1B-80EA-3DF8-9466-013695D0846E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff544ce000 - 0x7fff54501ff7 libclosured.dylib (551.4) <3FB6B209-51F4-38DA-B1D8-2EE29D5BDD83> /usr/lib/closure/libclosured.dylib
0x7fff545bb000 - 0x7fff545f4ff7 libCRFSuite.dylib (41) <FE5EDB68-2593-3C2E-BBAF-1C52D206F296> /usr/lib/libCRFSuite.dylib
0x7fff545f5000 - 0x7fff54600fff libChineseTokenizer.dylib (28) <53633C9B-A3A8-36F7-A53C-432D802F4BB8> /usr/lib/libChineseTokenizer.dylib
0x7fff54692000 - 0x7fff54693ff3 libDiagnosticMessagesClient.dylib (104) <9712E980-76EE-3A89-AEA6-DF4BAF5C0574> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff546ca000 - 0x7fff54894ff3 libFosl_dynamic.dylib (17.8) <C58ED77A-4986-31C2-994C-34DDFB8106F0> /usr/lib/libFosl_dynamic.dylib
0x7fff548b4000 - 0x7fff548bbfff libMatch.1.dylib (31) <74AB4815-11D1-3930-A559-BD6550CE5865> /usr/lib/libMatch.1.dylib
0x7fff548cc000 - 0x7fff548ccfff libOpenScriptingUtil.dylib (174) <610F0242-7CE5-3C86-951B-B646562694AF> /usr/lib/libOpenScriptingUtil.dylib
0x7fff54a03000 - 0x7fff54a07ffb libScreenReader.dylib (562.18.4) <E239923D-54C9-3BBF-852F-87C09DEF4091> /usr/lib/libScreenReader.dylib
0x7fff54a08000 - 0x7fff54a09ffb libSystem.B.dylib (1252.50.4) <CD555F3B-FDDB-35E5-A2FB-FBBF3D62031A> /usr/lib/libSystem.B.dylib
0x7fff54a9c000 - 0x7fff54a9cfff libapple_crypto.dylib (109.50.14) <48BA2E76-BF2F-3522-A54E-D7FB7EAF7A57> /usr/lib/libapple_crypto.dylib
0x7fff54a9d000 - 0x7fff54ab3ff7 libapple_nghttp2.dylib (1.24) <01402BC4-4822-3676-9C80-50D83F816424> /usr/lib/libapple_nghttp2.dylib
0x7fff54ab4000 - 0x7fff54adeff3 libarchive.2.dylib (54) <8FC28DD8-E315-3C3E-95FE-D1D2CBE49888> /usr/lib/libarchive.2.dylib
0x7fff54adf000 - 0x7fff54b60fdf libate.dylib (1.13.1) <178ACDAD-DE7E-346C-A613-1CBF7929AC07> /usr/lib/libate.dylib
0x7fff54b64000 - 0x7fff54b64ff3 libauto.dylib (187) <A05C7900-F8C7-3E75-8D3F-909B40C19717> /usr/lib/libauto.dylib
0x7fff54b65000 - 0x7fff54c1dff3 libboringssl.dylib (109.50.14) <E6813F87-B5E4-3F7F-A725-E6A7F2BD02EC> /usr/lib/libboringssl.dylib
0x7fff54c1e000 - 0x7fff54c2eff3 libbsm.0.dylib (39) <6BC96A72-AFBE-34FD-91B1-748A530D8AE6> /usr/lib/libbsm.0.dylib
0x7fff54c2f000 - 0x7fff54c3cffb libbz2.1.0.dylib (38) <0A5086BB-4724-3C14-979D-5AD4F26B5B45> /usr/lib/libbz2.1.0.dylib
0x7fff54c3d000 - 0x7fff54c93fff libc++.1.dylib (400.9) <7D3DACCC-3804-393C-ABC1-1A580FD00CB6> /usr/lib/libc++.1.dylib
0x7fff54c94000 - 0x7fff54cb8ff7 libc++abi.dylib (400.8.2) <EF5E37D7-11D9-3530-BE45-B986612D13E2> /usr/lib/libc++abi.dylib
0x7fff54cba000 - 0x7fff54ccafff libcmph.dylib (6) <A5509EE8-7E00-3224-8814-015B077A3CF5> /usr/lib/libcmph.dylib
0x7fff54ccb000 - 0x7fff54ce2fcf libcompression.dylib (47.60.2) <543F07BF-2F2F-37D5-9866-E84BF659885B> /usr/lib/libcompression.dylib
0x7fff54f8d000 - 0x7fff54fa5ff7 libcoretls.dylib (155.50.1) <D350052E-DC4D-3185-ADBA-BA48EDCEE955> /usr/lib/libcoretls.dylib
0x7fff54fa6000 - 0x7fff54fa7ff3 libcoretls_cfhelpers.dylib (155.50.1) <B297F5D8-F2FE-3566-A752-E9D998B9C039> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff55478000 - 0x7fff554ceff3 libcups.2.dylib (462.2.4) <908099FB-C70E-38FA-9573-88CB98FDDE29> /usr/lib/libcups.2.dylib
0x7fff5560e000 - 0x7fff5560efff libenergytrace.dylib (16) <A92AB8B8-B986-3CE6-980D-D55090FEF387> /usr/lib/libenergytrace.dylib
0x7fff5560f000 - 0x7fff55628ffb libexpat.1.dylib (16.1.1) <5E1796FA-4041-3187-B5C2-8E6B03D1D72A> /usr/lib/libexpat.1.dylib
0x7fff55645000 - 0x7fff5564aff3 libheimdal-asn1.dylib (520.50.6) <E358445A-B84E-31B5-BCCD-7E1397519D96> /usr/lib/libheimdal-asn1.dylib
0x7fff55676000 - 0x7fff55767ff7 libiconv.2.dylib (51.50.1) <2FEC9707-3FAF-3828-A50D-8605086D060F> /usr/lib/libiconv.2.dylib
0x7fff55768000 - 0x7fff5598fffb libicucore.A.dylib (59180.0.1) <34EBADD6-4092-30EC-90E8-F75241E94D76> /usr/lib/libicucore.A.dylib
0x7fff559dc000 - 0x7fff559ddfff liblangid.dylib (128) <39C39393-0D05-301D-93B2-F224FC4949AA> /usr/lib/liblangid.dylib
0x7fff559de000 - 0x7fff559f7ffb liblzma.5.dylib (10) <3D419A50-961F-37D2-8A01-3DC7AB7B8D18> /usr/lib/liblzma.5.dylib
0x7fff559f8000 - 0x7fff55a0eff7 libmarisa.dylib (9) <D6D2D55D-1D2E-3442-B152-B18803C0ABB4> /usr/lib/libmarisa.dylib
0x7fff55abf000 - 0x7fff55ce7ff7 libmecabra.dylib (779.7.6) <F462F170-E872-3D09-B219-973D5E99C09F> /usr/lib/libmecabra.dylib
0x7fff55ebf000 - 0x7fff5603afff libnetwork.dylib (1229.70.2) <E185D902-AC7F-3044-87C0-AE2887C59CE7> /usr/lib/libnetwork.dylib
0x7fff560c1000 - 0x7fff564af7e7 libobjc.A.dylib (723) <DD9E5EC5-B507-3249-B700-93433E2D5EDF> /usr/lib/libobjc.A.dylib
0x7fff564c2000 - 0x7fff564c6fff libpam.2.dylib (22) <7B4D2CE2-1438-387A-9802-5CEEFBF26F86> /usr/lib/libpam.2.dylib
0x7fff564c9000 - 0x7fff564fdfff libpcap.A.dylib (79.20.1) <FA13918B-A247-3181-B256-9B852C7BA316> /usr/lib/libpcap.A.dylib
0x7fff5657c000 - 0x7fff56598ffb libresolv.9.dylib (65) <E8F3415B-4472-3202-8901-41FD87981DB2> /usr/lib/libresolv.9.dylib
0x7fff5659a000 - 0x7fff565d3ff3 libsandbox.1.dylib (765.70.1) <1EB424CC-7E13-3CE8-A352-28A6FB5EF868> /usr/lib/libsandbox.1.dylib
0x7fff565e7000 - 0x7fff565e8ff3 libspindump.dylib (252) <D8E27057-E3CC-3D7F-A010-4A87830F6A83> /usr/lib/libspindump.dylib
0x7fff565e9000 - 0x7fff5677cff7 libsqlite3.dylib (274.8.1) <FCAD6A57-829E-3701-B16E-1833D620E0E8> /usr/lib/libsqlite3.dylib
0x7fff56950000 - 0x7fff569b0ff3 libusrtcp.dylib (1229.70.2) <1E065228-D0E3-3808-9405-894056C6BEC0> /usr/lib/libusrtcp.dylib
0x7fff569b1000 - 0x7fff569b4ffb libutil.dylib (51.20.1) <216D18E5-0BAF-3EAF-A38E-F6AC37CBABD9> /usr/lib/libutil.dylib
0x7fff569b5000 - 0x7fff569c2fff libxar.1.dylib (400) <0316128D-3B47-3052-995D-97B4FE5491DC> /usr/lib/libxar.1.dylib
0x7fff569c6000 - 0x7fff56aadfff libxml2.2.dylib (31.11) <C2B5C43F-9C0B-31E6-8EC0-939591EDAC49> /usr/lib/libxml2.2.dylib
0x7fff56aae000 - 0x7fff56ad6fff libxslt.1.dylib (15.12) <4A5E011D-8B29-3135-A52B-9A9070ABD752> /usr/lib/libxslt.1.dylib
0x7fff56ad7000 - 0x7fff56ae9ffb libz.1.dylib (70) <48C67CFC-940D-3857-8DAD-857774605352> /usr/lib/libz.1.dylib
0x7fff56b85000 - 0x7fff56b89ff7 libcache.dylib (80) <092479CB-1008-3A83-BECF-E115F24D13C1> /usr/lib/system/libcache.dylib
0x7fff56b8a000 - 0x7fff56b94ff3 libcommonCrypto.dylib (60118.50.1) <029F5985-9B6E-3DCB-9B96-FD007678C6A7> /usr/lib/system/libcommonCrypto.dylib
0x7fff56b95000 - 0x7fff56b9cfff libcompiler_rt.dylib (62) <968B8E3F-3681-3230-9D78-BB8732024F6E> /usr/lib/system/libcompiler_rt.dylib
0x7fff56b9d000 - 0x7fff56ba6ffb libcopyfile.dylib (146.50.5) <3885083D-50D8-3EEC-B481-B2E605180D7F> /usr/lib/system/libcopyfile.dylib
0x7fff56ba7000 - 0x7fff56c2cfff libcorecrypto.dylib (562.70.1) <5C26364F-2269-31EC-84AF-0FED2C902E38> /usr/lib/system/libcorecrypto.dylib
0x7fff56cb4000 - 0x7fff56cedff7 libdispatch.dylib (913.60.2) <232C69BD-022E-3AB9-8807-79F9FA7CB5EC> /usr/lib/system/libdispatch.dylib
0x7fff56cee000 - 0x7fff56d0bff7 libdyld.dylib (551.4) <81BF3A82-5719-3B54-ABA9-76C82D932CAC> /usr/lib/system/libdyld.dylib
0x7fff56d0c000 - 0x7fff56d0cffb libkeymgr.dylib (28) <E34E283E-90FA-3C59-B48E-1277CDB9CDCE> /usr/lib/system/libkeymgr.dylib
0x7fff56d0d000 - 0x7fff56d19ff3 libkxld.dylib (4570.71.2) <C3C31E1B-3E74-3828-8429-4D442E26D41C> /usr/lib/system/libkxld.dylib
0x7fff56d1a000 - 0x7fff56d1aff7 liblaunch.dylib (1205.70.9) <B184B521-FF24-3142-AFAF-23D170CF918C> /usr/lib/system/liblaunch.dylib
0x7fff56d1b000 - 0x7fff56d1fffb libmacho.dylib (906) <1902A611-081A-3452-B11E-EBD1B166E831> /usr/lib/system/libmacho.dylib
0x7fff56d20000 - 0x7fff56d22ff3 libquarantine.dylib (86) <26C0BA22-8F93-3A07-9A4E-C8D53D2CE42E> /usr/lib/system/libquarantine.dylib
0x7fff56d23000 - 0x7fff56d24ff3 libremovefile.dylib (45) <711E18B2-5BBE-3211-A916-56740C27D17A> /usr/lib/system/libremovefile.dylib
0x7fff56d25000 - 0x7fff56d3cfff libsystem_asl.dylib (356.70.1) <39E46A6F-B228-3E78-B83E-1779F9707A39> /usr/lib/system/libsystem_asl.dylib
0x7fff56d3d000 - 0x7fff56d3dfff libsystem_blocks.dylib (67) <17303FDF-0D2D-3963-B05E-B4DF63052D47> /usr/lib/system/libsystem_blocks.dylib
0x7fff56d3e000 - 0x7fff56dc7ff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib
0x7fff56dc8000 - 0x7fff56dcbffb libsystem_configuration.dylib (963.50.8) <DF6B5287-203E-30CB-9947-78DF446C72B8> /usr/lib/system/libsystem_configuration.dylib
0x7fff56dcc000 - 0x7fff56dcfffb libsystem_coreservices.dylib (51) <486000D3-D8CB-3BE7-8EE5-8BF380DE6DF7> /usr/lib/system/libsystem_coreservices.dylib
0x7fff56dd0000 - 0x7fff56dd1fff libsystem_darwin.dylib (1244.50.9) <09C21A4A-9EE0-388B-A9D9-DFF8F6758791> /usr/lib/system/libsystem_darwin.dylib
0x7fff56dd2000 - 0x7fff56dd8ff7 libsystem_dnssd.dylib (878.70.2) <3290768B-54DE-3AB6-B155-AC0950AC5564> /usr/lib/system/libsystem_dnssd.dylib
0x7fff56dd9000 - 0x7fff56e22ff7 libsystem_info.dylib (517.30.1) <AB634A98-B8AA-3804-8436-38261FC8EC4D> /usr/lib/system/libsystem_info.dylib
0x7fff56e23000 - 0x7fff56e49ff7 libsystem_kernel.dylib (4570.71.2) <F22B8D73-69D8-36D7-BF66-7F9AC70C08C2> /usr/lib/system/libsystem_kernel.dylib
0x7fff56e4a000 - 0x7fff56e95fcb libsystem_m.dylib (3147.50.1) <8CFB51C9-B422-3379-8552-064C63943A23> /usr/lib/system/libsystem_m.dylib
0x7fff56e96000 - 0x7fff56eb5fff libsystem_malloc.dylib (140.50.6) <7FD43735-9DDD-300E-8C4A-F909A74BDF49> /usr/lib/system/libsystem_malloc.dylib
0x7fff56eb6000 - 0x7fff56fe6ff7 libsystem_network.dylib (1229.70.2) <5E86B2DE-9E15-3354-8714-4094ED5F698D> /usr/lib/system/libsystem_network.dylib
0x7fff56fe7000 - 0x7fff56ff1ffb libsystem_networkextension.dylib (767.70.1) <D23EAFC1-E8BD-34D5-969C-6E45A1C3B4E4> /usr/lib/system/libsystem_networkextension.dylib
0x7fff56ff2000 - 0x7fff56ffbff3 libsystem_notify.dylib (172) <08012EC0-2CD2-34BE-BF93-E7F56491299A> /usr/lib/system/libsystem_notify.dylib
0x7fff56ffc000 - 0x7fff57003ff7 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib
0x7fff57004000 - 0x7fff5700ffff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib
0x7fff57010000 - 0x7fff57013fff libsystem_sandbox.dylib (765.70.1) <553DFCC6-9D31-3B9C-AB7C-30F6F265786D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff57014000 - 0x7fff57015ff3 libsystem_secinit.dylib (30) <DE8D14E8-A276-3FF8-AE13-77F7040F33C1> /usr/lib/system/libsystem_secinit.dylib
0x7fff57016000 - 0x7fff5701dff7 libsystem_symptoms.dylib (820.60.2) <585BDFA2-D54D-39D0-8046-44E824DABD43> /usr/lib/system/libsystem_symptoms.dylib
0x7fff5701e000 - 0x7fff57031fff libsystem_trace.dylib (829.70.1) <3A6CB706-8CA6-3616-8AFC-14AAD7FAF187> /usr/lib/system/libsystem_trace.dylib
0x7fff57033000 - 0x7fff57038ff7 libunwind.dylib (35.3) <BEF3FB49-5604-3B5F-82B5-332B80023AC3> /usr/lib/system/libunwind.dylib
0x7fff57039000 - 0x7fff57066ff7 libxpc.dylib (1205.70.9) <0BC7AD67-671D-31D4-8B88-C317B8379598> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 10413
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=469.2M resident=0K(0%) swapped_out_or_unallocated=469.2M(100%)
Writable regions: Total=486.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=486.1M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 2
Activity Tracing 256K 2
CG image 40K 2
CoreGraphics 8K 2
CoreServices 164K 2
CoreUI image data 276K 3
CoreUI image file 188K 5
Dispatch continuations 16.0M 2
Foundation 4K 2
IOKit 7940K 2
Kernel Alloc Once 8K 2
MALLOC 106.5M 40
MALLOC guard page 48K 12
Mach message (reserved) 4K 2 reserved VM address space (unallocated)
Memory Tag 242 12K 2
Memory Tag 255 208.8M 177
PROTECTED_MEMORY 4K 2
STACK GUARD 56.2M 43
Stack 267.8M 70
VM_ALLOCATE 68K 10
__DATA 33.3M 281
__FONT_DATA 4K 2
__LINKEDIT 195.2M 11
__TEXT 274.1M 285
__UNICODE 560K 2
mapped file 60.8M 30
shared memory 13.0M 27
=========== ======= =======
TOTAL 1.2G 995
TOTAL, minus reserved VM space 1.2G 995
Model: MacBookPro14,3, BootROM MBP143.0178.B00, 4 processors, Intel Core i7, 3.1 GHz, 16 GB, SMC 2.45f0
Graphics: Intel HD Graphics 630, Intel HD Graphics 630, Built-In
Graphics: Radeon Pro 555, Radeon Pro 555, PCIe
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x173), Broadcom BCM43xx 1.0 (7.77.37.31.1a9)
Bluetooth: Version 6.0.7f10, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Yubikey 4 OTP+U2F+CCID
USB Device: iBridge
USB Device: Hub
USB Device: Magic Keyboard
USB Device: TUSB3410 EECode Ser
USB Device: Texas Instruments USB Billboard Device
Thunderbolt Bus: MacBook Pro, Apple Inc., 33.1
Thunderbolt Bus: MacBook Pro, Apple Inc., 33.1
</code>
</details>
|
https://github.com/electron/electron/issues/15121
|
https://github.com/electron/electron/pull/15185
|
d43ef97a7bd9d9c38bf33d38d2252f8478e878f8
|
4d085c4aaeb7b689ebc9d3c1c682ded86071cd5f
| 2018-10-12T15:49:05Z |
c++
| 2018-10-17T04:57:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,112 |
["atom/common/api/atom_api_native_image.cc", "docs/api/clipboard.md", "filenames.gni", "lib/browser/rpc-server.js", "lib/common/api/clipboard.js", "lib/common/api/native-image.js", "lib/common/clipboard-utils.js", "lib/renderer/remote.ts", "lib/renderer/web-view/web-view-impl.ts", "typings/internal-electron.d.ts"]
|
Make clipboard module work on Linux with disabled remote module
|
**Is your feature request related to a problem? Please describe.**
The clipboard module depends on the remote module on Linux.
**Describe the solution you'd like**
It should be implemented using dedicated IPCs that are properly validated to avoid security issues.
**Describe alternatives you've considered**
The app can call the clipboard APIs in the main process in response to app-level IPCs from the renderer.
**Additional context**
Follow-up from https://github.com/electron/electron/pull/13028
|
https://github.com/electron/electron/issues/15112
|
https://github.com/electron/electron/pull/17200
|
43ef561d48d967c448b27aaab182b2a69eaf1600
|
3a091cdea46f7482d7fcf1be54f625e9a4989de5
| 2018-10-12T09:41:50Z |
c++
| 2019-03-16T00:32:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,095 |
["spec/api-web-contents-spec.js"]
|
flaky test: webContents module takeHeapSnapshot() fails with invalid file path
|
* Output of `node_modules/.bin/electron --version`: 4.0.0
* Operating System (Platform and Version): OSX
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
Test should behave consistently.
**Actual behavior**
Test seems to be flaky.
**Additional Information**
Here is the flaked test run:
https://github.com/electron/electron/pull/15023/checks?check_run_id=23183436
And the successful re-run:
https://github.com/electron/electron/pull/15023/checks?check_run_id=23228533
|
https://github.com/electron/electron/issues/15095
|
https://github.com/electron/electron/pull/15853
|
62eb077f29d78bc76c0e610e08de7de69789ee4c
|
753fb31c54eb56207356098dbb7d2c79f5c20731
| 2018-10-11T22:46:05Z |
c++
| 2018-11-29T15:51:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,054 |
[".circleci/config.yml", "appveyor.yml", "script/dump-symbols.py", "script/upload-symbols.py", "script/zip-symbols.py", "vsts.yml"]
|
Generate breakpad symbols step times out on release CI
|
Example: https://circleci.com/gh/electron/electron/80720
Example: https://circleci.com/gh/electron/electron/81751
|
https://github.com/electron/electron/issues/15054
|
https://github.com/electron/electron/pull/15716
|
511dc9a80b540d8dc86b76349e82639efdbaf1dc
|
b53a858400c2b51b96581dddb877f04f16d12a21
| 2018-10-10T12:01:11Z |
c++
| 2018-11-14T20:47:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,041 |
["atom/browser/browser_mac.mm", "spec/api-app-spec.js", "vsts.yml"]
|
"app module app.get/setLoginItemSettings API returns the login item status of the app" fails on MacOS 10.13
|
"app module app.get/setLoginItemSettings API returns the login item status of the app" test fails on **electron-osx-testing** if we run tests on Microsoft-hosted agents with MacOS 10.13.
A couple of examples:
- https://github.visualstudio.com/electron/_build/results?buildId=14366&view=ms.vss-test-web.test-result-details&runId=1875&resultId=100021
- https://github.visualstudio.com/electron/_build/results?buildId=14421&view=ms.vss-test-web.test-result-details
/cc @jkleinsc, @codebytere
|
https://github.com/electron/electron/issues/15041
|
https://github.com/electron/electron/pull/15010
|
e61b88fc2ab443e62a3032079b4789a1f582a654
|
6fc2a2a051712ec063e52543e124f0e6c108d0ad
| 2018-10-09T19:43:56Z |
c++
| 2018-10-12T22:19:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,017 |
["lib/renderer/window-setup.js", "spec/api-browser-window-spec.js", "spec/chromium-spec.js", "spec/fixtures/pages/window-opener-location.html"]
|
BrowserWindowProxy.location.href is undefined
|
* Output of `node_modules/.bin/electron --version`: since atleast 1.7.11 and all newer versions up to master
* Operating System (Platform and Version): All
**Expected Behavior**
Calling `location.href` of child window if `nativeWindowOpen = false` returns string with current URL.
**Actual behavior**
Calling `location.href` of child window if `nativeWindowOpen = false` returns undefined
**To Reproduce**
```
const w = window.open('https://google.com')
w.location.href = 'https://electronjs.org' // fail
```
In `/lib/renderer/window-setup.js`, `window.location` is defined like this, instead of emulating `Location` object properly
```javascript
function BrowserWindowProxy (ipcRenderer, guestId) {
...
defineProperty(this, 'location', {
get: function () {
return ipcRenderer.sendSync('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD_SYNC', guestId, 'getURL')
},
set: function (url) {
url = resolveURL(url)
return ipcRenderer.sendSync('ELECTRON_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD_SYNC', guestId, 'loadURL', url)
}
})
...
```
|
https://github.com/electron/electron/issues/15017
|
https://github.com/electron/electron/pull/15019
|
1f55f1635f1184109acce2d6eff2cc6837b6f1cc
|
5bc86eaf9c895a9131eff19f04a050d92aa9098b
| 2018-10-08T10:39:27Z |
c++
| 2018-12-04T11:11:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 15,000 |
["docs/api/menu-item.md"]
|
Typescript bindings for MenuItem lacks 'id' and other
|
Electron 3.0.2.
Typescript bindings for MenuItem lacks 'id' and other attributes...
Casting it to 'any' works and printing the object shows all the fields of a proper MenuItem:
```
[ MenuItem {
id: 'view',
label: 'View',
submenu:
Menu {
commandsMap: [Object],
groupsMap: {},
items: [Array],
delegate: [Object] },
type: 'submenu',
role: null,
accelerator: null,
icon: null,
sublabel: '',
enabled: true,
visible: true,
checked: false,
commandId: 51,
click: [Function],
menu:
Menu {
commandsMap: [Object],
groupsMap: {},
items: [Array],
delegate: [Object] } } ]
```
... but the typescript declaration is just:
```
class MenuItem {
// Docs: http://electron.atom.io/docs/api/menu-item
constructor(options: MenuItemConstructorOptions);
checked: boolean;
click: Function;
enabled: boolean;
label: string;
visible: boolean;
}
```
|
https://github.com/electron/electron/issues/15000
|
https://github.com/electron/electron/pull/17479
|
253d049ac99a59215983e49f2142881c6a6a7f68
|
4556433f3b42d478432f991ab2a2a90dad15bdb3
| 2018-10-05T20:39:36Z |
c++
| 2019-04-24T16:53:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,984 |
[".circleci/config.yml"]
|
ci: linux tests fail with "cannot open display: :99.0" error for builds from forks
|
Found in PR #14881: https://circleci.com/workflow-run/f9a23f52-c7da-4b1f-86c7-679a5407a555
I ran builds from my fork with [zero changes](https://github.com/electron/electron/commit/0f9e728fd24d285184124b42237840921b83926c) comparing to Electron's `master` and got the same results: https://circleci.com/workflow-run/715deec8-76b5-4268-b33e-27384ceb4048
|
https://github.com/electron/electron/issues/14984
|
https://github.com/electron/electron/pull/14995
|
2700eaca1e6fc66c78b6123923098bebb59bc29f
|
643781578e070bced0236841b1d2b1984a1184b9
| 2018-10-05T11:11:37Z |
c++
| 2018-10-05T20:06:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,976 |
["atom/renderer/renderer_client_base.cc"]
|
BrowserWindow background color is white after reload
|
* Output of `node_modules/.bin/electron --version`: v3.0.2
* Operating System (Platform and Version): Windows 10 Pro 17134
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): v1.6.15
**Expected Behavior**
Reloading (Ctrl R) a `BrowserWindow` with `backgroundColor` set should display that background color until the page begins to load.
**Actual behavior**
Reloading (Ctrl R) a `BrowserWindow` with `backgroundColor` set displays white until the page begins to load.
**To Reproduce**
I've reproduced the issue in electron-quick-start by:
* Adding ` style="background-color: transparent;"` to `index.html`'s `body` tag (pedantic, I know)
* Adding `backgroundColor: '#ffff0000', ` to `main.js`'s `BrowserWindow` options
* Alternatively, clone my fork of electron-quick-start:
```sh
$ git clone https://github.com/adill/electron-quick-start.git -b background-color-reload
$ npm install
$ npm start
```
1. Notice the red background color on the page (transparent body is showing through to the opaque red background.)
2. Reload (Ctrl R)
3. Notice the background color is now white
|
https://github.com/electron/electron/issues/14976
|
https://github.com/electron/electron/pull/15105
|
70c49b78ae209f6314e0a2283181b51259e73f98
|
89bf71e580ca06cc7c17f0eaace65e0f787399cf
| 2018-10-04T23:57:25Z |
c++
| 2018-10-14T17:59:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,965 |
["lib/browser/rpc-server.js", "lib/renderer/api/remote.js", "spec/api-remote-spec.js", "spec/fixtures/module/preload-remote-function.js", "spec/static/main.js"]
|
Missing remote objects in 3.0
|
* Output of `node_modules/.bin/electron --version`: 3.0.0
* Operating System (Platform and Version): OSX
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 1.7.9
I have two electron windows. The first one lists a bunch of projects, and if you click on that it pops open a second pane. The second pane shows a preview of a local html file and refreshes if that webpage's local files change. I also have the ability to right click-> inspect element in that second pane. This works fine on both 1.7.9 and on the first time you open the second pane in 3.0.0.
**Expected Behavior**
I expect the right click -> inspect element to work on subsequent refreshes of the second pane.
**Actual behavior**
As soon as the second pane refreshes, the `remote.getCurrentWindow().inspectElement(x,y)` call throws a `Attempting to call a function in a renderer window that has been closed or released` error.
**The code for the second pane**
*preview.js*
```
const {remote} = require('electron')
const {Menu, MenuItem, BrowserWindow} = remote
process.once('loaded', () => {
// set up right click menu
const menu = new Menu()
const menuItem = new MenuItem({
label: 'Inspect Element',
click: () => {
remote.getCurrentWindow().inspectElement(rightClickPosition.x, rightClickPosition.y)
}
})
menu.append(menuItem)
window.addEventListener('contextmenu', (e) => {
e.preventDefault()
rightClickPosition = {x: e.x, y: e.y}
menu.popup(remote.getCurrentWindow())
}, false)
var cmd = false //cmd
var alt = false //alt
var i = false //i
var r = false
document.addEventListener('keydown', (e) => {
if (e.keyCode == 91) cmd = true
if (e.keyCode == 18) alt = true
if (e.keyCode == 73) i = true
if (e.keyCode == 82) r = true
if (cmd && alt && i) {
remote.getCurrentWindow().toggleDevTools();
}
if (cmd && r) {
remote.getCurrentWindow().reload();
}
})
document.addEventListener('keyup', (e) => {
if (e.keyCode == 91) cmd = false
if (e.keyCode == 18) alt = false
if (e.keyCode == 73) i = false
if (e.keyCode == 82) r = false
})
})
```
**The code that triggers the second pane**
```
viewDirectory: function(dir,dirId) {
renderer.changeListener(dirId)
if(renderer.selected) document.getElementById('directory').querySelector('.selected').classList.remove('selected')
renderer.selected = dirId
document.getElementById(dirId).classList.add('selected')
if (!renderer.preview){
renderer.preview = new BrowserWindow({
title: 'Bowtie',
width: 1200,
height: 809,
webPreferences: {experimentalFeatures: true, preload: path.join(__dirname, "preview.js")}})
renderer.preview.setMenu(null)
renderer.preview.on('closed', () => {
renderer.preview = null
renderer.resetSelected()
})
renderer.preview.webContents.on('did-finish-load',() => {
if(renderer.preview.getTitle()=='Bowtie'){
renderer.preview.setTitle(dir)
}
})
}
renderer.preview.loadURL("http://localhost:8900/" + dir)
},
```
**Additional Information**
I believe this is a bug, as I haven't changed anything except the electron version. 1.7.9 works fine. If I'm doing something wrong here though, I'd love some help :)
|
https://github.com/electron/electron/issues/14965
|
https://github.com/electron/electron/pull/15444
|
b2e1a9317704aa3a6c7594161d1c418f1ef5cd60
|
a8f2646ba682d65f94ea628ac11b1a5521bcedcd
| 2018-10-04T02:27:27Z |
c++
| 2018-10-31T15:26:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,954 |
["atom/app/atom_main.cc"]
|
2.0.10 and 2.0.11 not working
|
* Output of `node_modules/.bin/electron --version`: 2.0.10 or 2.0.11
* Operating System (Platform and Version): Debian GNU/Linux 9.5 (stretch)
**Expected Behavior**
[I should see this](https://github.com/ssbc/patchwork/issues/844#issuecomment-426664276)
**Actual behavior**
[I get that](https://github.com/ssbc/patchwork/issues/844#issuecomment-426661104)
**To Reproduce**
[steps followed](https://github.com/ssbc/patchwork/issues/844#issuecomment-426659900)
**Screenshots**
(same as Actual behavior)
[screenshot](https://github.com/ssbc/patchwork/issues/844#issuecomment-426661104)
**Additional Information**
[Disabling gpu works](https://github.com/ssbc/patchwork/issues/844#issuecomment-426687315), hence, applying argument `--disable-gpu`
My graphical card is
```
$ lspci -k | grep -A3 VGA
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)
Subsystem: Dell Haswell-ULT Integrated Graphics Controller
Kernel driver in use: i915
Kernel modules: i915
```
Is strange that is not working with this graphic card that I had no problems with any other application
Electron should provide a common solution found in other applications:
- solving the bug itself (looks related just to electron)
- a fallback disabling gpu automatically (and notifying it in logs)
- catch the error and print in stdout suggesting the user to apply `--disable-gpu`
|
https://github.com/electron/electron/issues/14954
|
https://github.com/electron/electron/pull/15555
|
b97d7e7ecd6ed403cea700ab4aab0d0d20624f7f
|
51cb36fa9b2c9c829050b6612bc6770f048db245
| 2018-10-03T16:50:39Z |
c++
| 2018-11-19T16:53:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,948 |
["patches/common/skia/.patches.yaml", "patches/common/skia/fix_font_thickness.patch"]
|
Overly thin font rendering in macOS 10.14 Mojave
|
* Output of `node_modules/.bin/electron --version`: 2.0.7
* Operating System (Platform and Version): macOS 10.14 Mojave
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.7 on macOS 10.13 High Sierra
**Expected Behavior**
Font rendering weight should be on par with the rest of the OS.
**Actual behavior**
Fonts are rendered overly thin on Retina (High-DPI) screens.
**To Reproduce**
Download the [latest version of VS Code](https://github.com/Microsoft/vscode/releases/tag/1.27.2), which currently uses Electron 2.0.7. You need to be on macOS 10.14 Mojave and have a Retina screen (Macbook Pro, iMac, etc). Open any file and observe the thickness of fonts in the editor. See below for screenshots.
**Screenshots**
For comparison, I'm providing screenshots of two native macOS apps, Xcode and iTerm, and of VS Code which is using Electron 2.0.7.
Xcode:
<img width="581" alt="rendering xcode" src="https://user-images.githubusercontent.com/206409/46404899-d01b9580-c706-11e8-8af5-52f444bab4dc.png">
iTerm:
<img width="581" alt="rendering iterm" src="https://user-images.githubusercontent.com/206409/46404955-f5100880-c706-11e8-9168-8e4dd563d98d.png">
VS Code (Electron 2.0.7):
<img width="581" alt="rendering vscode" src="https://user-images.githubusercontent.com/206409/46404965-fa6d5300-c706-11e8-8447-97d63979102d.png">
Here's an animated version, for easy comparison:

**Additional Information**
This is an upstream escalation of the issues in both VS Code https://github.com/Microsoft/vscode/issues/59887 and Atom https://github.com/atom/atom/issues/17486 which are both using Electron for font rendering.
The main problem is that Apple removed sub-pixel anti-aliasing in macOS 10.14 Mojave and all Electron apps now seem to be using the "antialiased" (grayscale) setting for font rendering, which is producing very thin and hard to read fonts. I think the "antialiased" setting should be changed to use the native font rendering in Mojave, but I'm not sure if this is something that is doable in Electron or if there's some further upstream repo this should be fixed in. If so, I'd be happy to do it if you point me in the right direction.
|
https://github.com/electron/electron/issues/14948
|
https://github.com/electron/electron/pull/15007
|
e9a5b192238e029e2023d8f5237eb0447e6624f2
|
532ee2dadf5a01b3f62da9b05a71a2140d68ea89
| 2018-10-03T14:29:43Z |
c++
| 2018-10-09T14:52:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,909 |
["atom/browser/native_window_mac.mm"]
|
BrowserViews receive implicit fade animation from macOS SDK
|
* Output of `node_modules/.bin/electron --version`: 3.x and later
* Operating System (Platform and Version): macOS, all versions
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.x, 1.x
**Expected Behavior**
When attaching, removing, or switching `BrowserViews`, those views should immediately be visible or hidden.

**Actual behavior**
Since we've switched to a newer version of the macOS SDK, an implicit animation is applied on macOS only.

**To Reproduce**
Fiddle: https://gist.github.com/felixrieseberg/79e2427607ab7bb1b023ccd5d4e78619
**Screenshots**
**Additional Information**
Add any other context about the problem here.
|
https://github.com/electron/electron/issues/14909
|
https://github.com/electron/electron/pull/14911
|
c9edf77e8ea8f48fc92206c3de5296115a424cd1
|
79c6e7c3f79f8919b2e9fd65f35c15a0470d3550
| 2018-10-01T23:03:46Z |
c++
| 2018-10-02T01:49:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,900 |
["script/bump-version.py"]
|
Fourth component of `FILEVERSION` should be `0` for nightly releases
|
Due to the 64 bit limit on the `FILEVERSION` field on windows nightly releases should set the 4th component to `0` to avoid any weird version numbers
https://github.com/electron/electron/blob/master/atom/browser/resources/win/atom.rc#L59
|
https://github.com/electron/electron/issues/14900
|
https://github.com/electron/electron/pull/15074
|
99f5f17a8dbdd6e21718df8ab6f50d36126765b9
|
d46834265f4ccad6f6d362eca83dc368261b9abb
| 2018-10-01T16:01:42Z |
c++
| 2018-10-11T13:11:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,893 |
["atom/browser/browser_mac.mm", "spec/api-app-spec.js", "vsts.yml"]
|
Not able to change openAsHidden to true
|
* Output of `node_modules/.bin/electron --version`: v3.0.2
* Operating System (Platform and Version): macOS High Sierra 10.13.6
**Expected Behavior**
`app.setLoginItemSettings({ openAsHidden: true });` should start app as hidden.
**Actual behavior**
`app.setLoginItemSettings({ openAsHidden: true });` doesn't change value from `false`
**To Reproduce**
In main or renderer run the following code
```js
console.log(app.getLoginItemSettings().openAsHidden); // false
app.setLoginItemSettings({ openAsHidden: true });
console.log(app.getLoginItemSettings().openAtLogin); // false
app.setLoginItemSettings({ openAsHidden: false });
console.log(app.getLoginItemSettings().openAtLogin); // false
```
**Additional Information**
I believe it is related to #10880
|
https://github.com/electron/electron/issues/14893
|
https://github.com/electron/electron/pull/15010
|
e61b88fc2ab443e62a3032079b4789a1f582a654
|
6fc2a2a051712ec063e52543e124f0e6c108d0ad
| 2018-10-01T11:52:23Z |
c++
| 2018-10-12T22:19:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,877 |
[".circleci/config.yml"]
|
ci: fail tests jobs if no tests were run
|
Here's an example of a "successful" job https://circleci.com/gh/electron/electron/68049 which should have failed.
/cc @jkleinsc
|
https://github.com/electron/electron/issues/14877
|
https://github.com/electron/electron/pull/14884
|
ec38561254c22f18166558be9737e558ad5382a0
|
4af922c9a2e1e39ac56e04c0b7124e8d5ef06988
| 2018-09-29T10:51:27Z |
c++
| 2018-10-01T14:59:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,848 |
["spec/api-web-contents-spec.js"]
|
Flaky Test: webContents module getAllWebContents() API returns an array of web contents
|
Noticed this a few times but only recently, might have potentially slipped through the cracks and introduced a regression somewhere.
```
AssertionError [ERR_ASSERTION]: Input A expected to strictly equal input B:
+ expected - actual
- 'webview'
+ 'remote'
at w.webContents.on (/Users/electron/vsts-agent/vsts-agent-osx-x64-2.134.2/_work/40/s/src/electron/spec/api-web-contents-spec.js:49:16)
at CallbacksRegistry.apply (/Users/electron/vsts-agent/vsts-agent-osx-x64-2.134.2/_work/40/s/src/out/Default/Electron.app/Contents/Resources/electron.asar/renderer/callbacks-registry.js:47:25)
at handleMessage (/Users/electron/vsts-agent/vsts-agent-osx-x64-2.134.2/_work/40/s/src/out/Default/Electron.app/Contents/Resources/electron.asar/renderer/api/remote.js:281:21)
at EventEmitter.ipcRenderer.on.args (/Users/electron/vsts-agent/vsts-agent-osx-x64-2.134.2/_work/40/s/src/out/Default/Electron.app/Contents/Resources/electron.asar/renderer/api/remote.js:274:7)
at EventEmitter.emit (events.js:182:13)
```
|
https://github.com/electron/electron/issues/14848
|
https://github.com/electron/electron/pull/14849
|
78239ff0adfcac560a1d813583b07886834db920
|
b42493e6e6aa7a43cf57f1e77405400ce8594856
| 2018-09-28T02:25:26Z |
c++
| 2018-09-28T19:34:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,838 |
["patches/common/chromium/.patches", "patches/common/chromium/mac_fix_form_control_rendering_on_10_14_mojave.patch"]
|
Checkboxes don't render in macOS mojave
|
* Output of 3.0.1 & 2.0.10:
* Operating System (Platform and Version): macOS mojave 10.14
**Expected Behavior**
When using a webview with sandbox enabled in webpreferences and mixed sandboxing across the app enabled, checkboxes and radios should render
**Actual behavior**
Checkboxes are only rendered when not checked. When checked nothing is rendered:

**To Reproduce**
**Key steps to reproduce are:**
Main.js
```js
app.enableMixedSandbox()
```
index.html
```js
<webview src="wv.html" webpreferences="sandbox=yes"></webview>
```
wv.html
```
<input type="checkbox">
```
**Full working example:**
```
git clone https://github.com/wavebox/electron-quick-start.git
cd electron-quick-start
git checkout mojave_checkbox
npm install
npm start
```
**Additional Information**
Looks like Chrome had a similar issue with various hacks and workarounds:
[Upstream issue CR850021](https://bugs.chromium.org/p/chromium/issues/detail?id=850021)
[Google Product forum](https://productforums.google.com/forum/#!topic/chrome/d88Pp5hg35k)
[Workarounds](https://lifehacker.com/how-to-fix-chromes-checkboxes-and-buttons-in-macos-moja-1827398550)
|
https://github.com/electron/electron/issues/14838
|
https://github.com/electron/electron/pull/14865
|
8f04def7b204e024a4109176122572e052065d16
|
c366525370a99c1c743ea03dc69455ed530477be
| 2018-09-27T13:39:49Z |
c++
| 2018-11-28T21:06:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,837 |
["atom/browser/api/atom_api_global_shortcut.cc", "atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_mac.mm", "docs/api/global-shortcut.md"]
|
Crash on globalShortcut unregister and unregisterAll when a media key is registered (macOS Mojave)
|
* Output of `node_modules/.bin/electron --version`: v3.0.1 (Happens on older versions of Electron as well)
* Operating System (Platform and Version): macOS Mojave (10.14)
Steps:
- App launches
- Pop up saying “App” would like to control your computer using accessibility features… appears
- Press deny
- On app close, the app tries to unregister those shortcuts, it closes and then a popup saying app quit unexpectedly appears
This seems to happen with the app registers accelerators related to media such as MediaPlayPause, MediaNextTrack, MediaPreviousTrack.
Tried checking for globalShortcut.isRegistered(accelerator) for each of the accelerators before unregistering them one by one but it didn't help.
Another related problem could be: globalShortcut.isRegistered(accelerator) still returns true even if the shortcut wasn't actually registered (because of the accessibility permissions)
Note:
The crash doesn't happen when the permissions for accessibility control for the app are allowed.
<details>
Process: Anghami [11148]
Path: /Applications/Anghami.app/Contents/MacOS/Anghami
Identifier: Anghami
Version: 1.5.8 (10)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Anghami [11148]
User ID: 501
Date/Time: 2018-09-27 12:35:43.320 +0300
OS Version: Mac OS X 10.14 (18A391)
Report Version: 12
Bridge OS Version: 3.0 (14Y664)
Anonymous UUID: F6EE7B12-0ED4-362F-F07B-E9054FE80EF0
Sleep/Wake UUID: 3E9DA367-D1A4-46C8-8055-7F4CC3C46863
Time Awake Since Boot: 37000 seconds
Time Since Wake: 6400 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Illegal instruction: 4
Termination Reason: Namespace SIGNAL, Code 0x4
Terminating Process: exc handler [11148]
Application Specific Information:
*** CFHash() called with NULL ***
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.apple.CoreFoundation 0x00007fff43ae9ccc CFHash + 372
1 com.apple.CoreFoundation 0x00007fff43b15547 CFBasicHashGetCountOfKey + 198
2 com.apple.CoreFoundation 0x00007fff43b19524 CFSetContainsValue + 73
3 com.apple.CoreFoundation 0x00007fff43b360d2 CFRunLoopRemoveSource + 366
4 com.github.electron.framework 0x0000000100ef5464 extensions::GlobalShortcutListenerMac::StopWatchingMediaOrVolumeKeys() + 36
5 com.github.electron.framework 0x0000000100ef5ea7 extensions::GlobalShortcutListenerMac::UnregisterAcceleratorImpl(ui::Accelerator const&) + 215
6 com.github.electron.framework 0x0000000100ef4a76 extensions::GlobalShortcutListener::UnregisterAccelerator(ui::Accelerator const&, extensions::GlobalShortcutListener::Observer*) + 150
7 com.github.electron.framework 0x0000000100ef4bd9 extensions::GlobalShortcutListener::UnregisterAccelerators(extensions::GlobalShortcutListener::Observer*) + 297
8 com.github.electron.framework 0x0000000100dd7a12 atom::api::GlobalShortcut::UnregisterAll() + 34
9 com.github.electron.framework 0x0000000100dd79ca atom::api::GlobalShortcut::~GlobalShortcut() + 58
10 com.github.electron.framework 0x0000000100dd7a79 atom::api::GlobalShortcut::~GlobalShortcut() + 9
11 com.github.electron.framework 0x0000000100dd7aae atom::api::GlobalShortcut::~GlobalShortcut() + 14
12 com.github.electron.framework 0x0000000100dd7acd non-virtual thunk to atom::api::GlobalShortcut::~GlobalShortcut() + 13
13 com.github.electron.framework 0x0000000100e417ff mate::TrackableObjectBase::Destroy() + 15
14 com.github.electron.framework 0x0000000100e41a6a 0x100da4000 + 645738
15 com.github.electron.framework 0x0000000100e41a38 0x100da4000 + 645688
16 com.github.electron.framework 0x0000000100e419fc 0x100da4000 + 645628
17 com.github.electron.framework 0x0000000100e419c4 base::internal::Invoker<base::internal::BindState<void (mate::TrackableObjectBase::*)(), base::WeakPtr<mate::TrackableObjectBase> >, void ()>::Run(base::internal::BindStateBase*) + 20
18 com.github.electron.framework 0x0000000100db9430 0x100da4000 + 87088
19 com.github.electron.framework 0x0000000100e4b4ad atom::AtomBrowserMainParts::PostMainMessageLoopRun() + 77
20 com.github.electron.framework 0x00000001012b4f89 0x100da4000 + 5312393
21 com.github.electron.framework 0x00000001012b74cc 0x100da4000 + 5321932
22 com.github.electron.framework 0x00000001012b0cc8 0x100da4000 + 5295304
23 com.github.electron.framework 0x00000001011f9e90 0x100da4000 + 4546192
24 com.github.electron.framework 0x0000000102def314 0x100da4000 + 33862420
25 com.github.electron.framework 0x00000001011f8ca4 0x100da4000 + 4541604
26 com.github.electron.framework 0x0000000100da6ac4 AtomMain + 68
27 com.electron.anghami 0x0000000100d98f26 main + 38
28 libdyld.dylib 0x00007fff70baf085 start + 1
Thread 1:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x0000000105943259 0x10580e000 + 1266265
4 libnode.dylib 0x000000010594324c 0x10580e000 + 1266252
5 libnode.dylib 0x0000000105943194 0x10580e000 + 1266068
6 libnode.dylib 0x0000000105942ac2 0x10580e000 + 1264322
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 2:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x0000000105943259 0x10580e000 + 1266265
4 libnode.dylib 0x000000010594324c 0x10580e000 + 1266252
5 libnode.dylib 0x0000000105943194 0x10580e000 + 1266068
6 libnode.dylib 0x0000000105942ac2 0x10580e000 + 1264322
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x0000000105943259 0x10580e000 + 1266265
4 libnode.dylib 0x000000010594324c 0x10580e000 + 1266252
5 libnode.dylib 0x0000000105943194 0x10580e000 + 1266068
6 libnode.dylib 0x0000000105942ac2 0x10580e000 + 1264322
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 4:
0 libsystem_pthread.dylib 0x00007fff70da0408 start_wqthread + 0
1 ??? 0x0000000054485244 0 + 1414025796
Thread 5:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff70ce7c2a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff70ce8174 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff43b1b05e __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff43b1a5ad __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff43b19ce4 CFRunLoopRunSpecific + 463
5 com.apple.Foundation 0x00007fff45e7a5da -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.github.electron.framework 0x00000001010338ae 0x100da4000 + 2685102
7 com.github.electron.framework 0x000000010103245c 0x100da4000 + 2679900
8 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
9 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
10 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
11 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
13 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 6:: DnsConfigService
0 libsystem_kernel.dylib 0x00007fff70cee052 kevent + 10
1 com.github.electron.framework 0x000000010109a2f9 0x100da4000 + 3105529
2 com.github.electron.framework 0x000000010109948d 0x100da4000 + 3101837
3 com.github.electron.framework 0x00000001010322bf 0x100da4000 + 2679487
4 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
5 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 7:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff70ce98a6 read + 10
1 com.github.electron.framework 0x0000000100e4c07f 0x100da4000 + 688255
2 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
3 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
5 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 8:: WorkerPool/26631
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 9:: WorkerPool/40455
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 10:: TaskSchedulerServiceThread
0 libsystem_kernel.dylib 0x00007fff70cee052 kevent + 10
1 com.github.electron.framework 0x000000010109a2f9 0x100da4000 + 3105529
2 com.github.electron.framework 0x000000010109948d 0x100da4000 + 3101837
3 com.github.electron.framework 0x00000001010322a6 0x100da4000 + 2679462
4 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
5 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 11:: TaskSchedulerBackgroundWorker0
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 12:: TaskSchedulerBackgroundBlockingWorker0
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 13:: TaskSchedulerForegroundWorker0
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 14:: TaskSchedulerForegroundBlockingWorker0
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 15:: TaskSchedulerSingleThreadForegroundBlocking0
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 16:: TaskSchedulerSingleThreadForegroundBlocking1
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 17:: TaskSchedulerSingleThreadForegroundBlocking2
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c32a 0x100da4000 + 2786090
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 18:: TaskSchedulerSingleThreadForegroundBlocking3
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 19:: TaskSchedulerSingleThreadForegroundBlocking4
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 20:: Chrome_IOThread
0 libsystem_kernel.dylib 0x00007fff70cee052 kevent + 10
1 com.github.electron.framework 0x000000010109a2f9 0x100da4000 + 3105529
2 com.github.electron.framework 0x000000010109948d 0x100da4000 + 3101837
3 com.github.electron.framework 0x00000001010322a6 0x100da4000 + 2679462
4 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
5 com.github.electron.framework 0x00000001012c29e4 0x100da4000 + 5368292
6 com.github.electron.framework 0x00000001012c2aa4 0x100da4000 + 5368484
7 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
8 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
9 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
11 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 21:: CompositorTileWorker1/36611
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x0000000101194c38 0x100da4000 + 4131896
3 com.github.electron.framework 0x0000000101057ccd 0x100da4000 + 2833613
4 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
5 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
7 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 22:: AudioThread
0 libsystem_kernel.dylib 0x00007fff70ce7c2a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff70ce8174 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff43b1b05e __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff43b1a5ad __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff43b19ce4 CFRunLoopRunSpecific + 463
5 com.github.electron.framework 0x000000010103359f 0x100da4000 + 2684319
6 com.github.electron.framework 0x000000010103245c 0x100da4000 + 2679900
7 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
8 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
9 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
10 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
11 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
12 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 23:
0 libsystem_kernel.dylib 0x00007fff70ceee82 __select + 10
1 com.github.electron.framework 0x0000000100ee0762 atom::NodeBindingsMac::PollEvents() + 210
2 com.github.electron.framework 0x0000000100edff8f atom::NodeBindings::EmbedThreadRunner(void*) + 63
3 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
4 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
5 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 24:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x00000001059bba83 0x10580e000 + 1759875
4 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
6 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 25:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x00000001059bba83 0x10580e000 + 1759875
4 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
6 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 26:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x00000001059bba83 0x10580e000 + 1759875
4 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
6 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 27:
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 libnode.dylib 0x00000001059c8179 uv_cond_wait + 9
3 libnode.dylib 0x00000001059bba83 0x10580e000 + 1759875
4 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
6 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 28:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff70ce7c2a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff70ce8174 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff43b1b05e __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff43b1a5ad __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff43b19ce4 CFRunLoopRunSpecific + 463
5 com.apple.Foundation 0x00007fff45e7a5da -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 com.github.electron.framework 0x00000001010338ae 0x100da4000 + 2685102
7 com.github.electron.framework 0x000000010103245c 0x100da4000 + 2679900
8 com.github.electron.framework 0x00000001010489b3 0x100da4000 + 2771379
9 com.github.electron.framework 0x000000010106cb89 0x100da4000 + 2919305
10 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
11 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
12 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
13 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 29:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff70ce7c2a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff70ce8174 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff43b1b05e __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff43b1a5ad __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff43b19ce4 CFRunLoopRunSpecific + 463
5 com.apple.AppKit 0x00007fff41079581 _NSEventThread + 160
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 30:: TaskSchedulerForegroundBlockingWorker1
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 31:: TaskSchedulerForegroundBlockingWorker2
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 32:: WorkerPool/130567
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 33:: WorkerPool/87811
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 34:: WorkerPool/129795
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 35:: WorkerPool/129283
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 36:: WorkerPool/127767
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 37:: WorkerPool/127235
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 38:: WorkerPool/127007
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 39:: WorkerPool/126483
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x0000000101094ed6 0x100da4000 + 3083990
4 com.github.electron.framework 0x0000000101095368 0x100da4000 + 3085160
5 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
6 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
7 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
8 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 40:: TaskSchedulerForegroundBlockingWorker3
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 41:: TaskSchedulerSingleThreadSharedForegroundBlocking5
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45cb _pthread_cond_wait + 724
2 com.github.electron.framework 0x000000010109229e 0x100da4000 + 3072670
3 com.github.electron.framework 0x000000010109214f 0x100da4000 + 3072335
4 com.github.electron.framework 0x000000010104beda 0x100da4000 + 2784986
5 com.github.electron.framework 0x000000010104c32a 0x100da4000 + 2786090
6 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 42:: TaskSchedulerForegroundBlockingWorker4
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 43:: TaskSchedulerForegroundBlockingWorker5
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 44:: TaskSchedulerForegroundBlockingWorker6
0 libsystem_kernel.dylib 0x00007fff70ceb1b2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff70da45fe _pthread_cond_wait + 775
2 com.github.electron.framework 0x0000000100fec93b 0x100da4000 + 2394427
3 com.github.electron.framework 0x00000001010922c0 0x100da4000 + 3072704
4 com.github.electron.framework 0x00000001010923f1 0x100da4000 + 3073009
5 com.github.electron.framework 0x000000010104bee8 0x100da4000 + 2785000
6 com.github.electron.framework 0x000000010104c554 0x100da4000 + 2786644
7 com.github.electron.framework 0x000000010103d547 0x100da4000 + 2725191
8 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
10 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 45:
0 libsystem_pthread.dylib 0x00007fff70da0408 start_wqthread + 0
1 ??? 0x0000000100010000 0 + 4295032832
Thread 46:
0 libsystem_pthread.dylib 0x00007fff70da0408 start_wqthread + 0
1 ??? 0x0000000000001403 0 + 5123
Thread 47:
0 libsystem_pthread.dylib 0x00007fff70da0408 start_wqthread + 0
1 ??? 0x0000000000002503 0 + 9475
Thread 48:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff70ce7c2a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff70ce8174 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff43b1b05e __CFRunLoopServiceMachPort + 337
3 com.apple.CoreFoundation 0x00007fff43b1a5ad __CFRunLoopRun + 1654
4 com.apple.CoreFoundation 0x00007fff43b19ce4 CFRunLoopRunSpecific + 463
5 com.apple.CFNetwork 0x00007fff42a1def5 -[__CoreSchedulingSetRunnable runForever] + 195
6 com.apple.Foundation 0x00007fff45e70234 __NSThread__start__ + 1218
7 libsystem_pthread.dylib 0x00007fff70da133d _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff70da42a7 _pthread_start + 70
9 libsystem_pthread.dylib 0x00007fff70da0425 thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00007fff43e6a5cb rbx: 0x0000000000000000 rcx: 0x00007fcdfe008000 rdx: 0x0080200c03060005
rdi: 0x0000000000000000 rsi: 0x0000000000000047 rbp: 0x00007ffeeee66dc0 rsp: 0x00007ffeeee66db0
r8: 0x0000000000000000 r9: 0x00006000029c4d20 r10: 0x0000600001bc8130 r11: 0x00007fff43b35f64
r12: 0x0000000000000006 r13: 0x0000000000000000 r14: 0x0000600001bc8110 r15: 0x0000600001bc8100
rip: 0x00007fff43ae9ccc rfl: 0x0000000000010246 cr2: 0x00000007b923d000
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 6
Binary Images:
0x100d98000 - 0x100d98ff7 +com.electron.anghami (1.5.8 - 10) <0B6BC8C5-3D1D-345C-BD03-6ACAE257A78F> /Applications/Anghami.app/Contents/MacOS/Anghami
0x100da4000 - 0x10504af97 +com.github.electron.framework (0) <73726D96-DA9B-3800-BE7E-4453B44CEC8F> /Applications/Anghami.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x1056c0000 - 0x1056dbfff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Applications/Anghami.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x105705000 - 0x105768ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/Anghami.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x1057e1000 - 0x1057f5fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/Anghami.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x10580e000 - 0x10668afff +libnode.dylib (0) <041A9CC4-40EC-3D9B-9BE3-64628478FB84> /Applications/Anghami.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib
0x106970000 - 0x106bddfe7 +libffmpeg.dylib (0) <875948D9-4D04-3B2E-9235-A52EFAD781D0> /Applications/Anghami.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x10c5e6000 - 0x10c5e9047 libobjc-trampolines.dylib (750) <B81473FA-927B-3852-BC34-66E66AAE24F4> /usr/lib/libobjc-trampolines.dylib
0x10d55c000 - 0x10d5da6a7 dyld (625.13) <D6387150-2FB8-3066-868D-72E1B1C43982> /usr/lib/dyld
0x7fff3c05d000 - 0x7fff3c2e5ff7 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (12.0.34 - 12.0.0) <AA09048E-CAA0-37B9-808E-F75C53C95200> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
0x7fff3fa46000 - 0x7fff3fc34ff3 com.apple.avfoundation (2.0 - 1540.118.2) <1EE74E35-F16B-3034-AEA5-723198E519F8> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff3fc35000 - 0x7fff3fd03ff7 com.apple.audio.AVFAudio (1.0 - ???) <727A6D92-D1F2-3179-80D3-51F1481F5A87> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff3fe11000 - 0x7fff3fe11fff com.apple.Accelerate (1.11 - Accelerate 1.11) <2C602CED-72CA-37C2-BDF5-31697FC9100B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff3fe12000 - 0x7fff3fe28fe3 libCGInterfaces.dylib (506.19) <6455899E-BAC7-34D1-802B-FFE19A2337E2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff3fe29000 - 0x7fff404c9fe3 com.apple.vImage (8.1 - ???) <65912AFB-D4C1-3494-AE97-DDFDAF3BE1EB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff404ca000 - 0x7fff40741fd7 libBLAS.dylib (1243.200.4) <76710990-AE2B-300E-88BB-797ABAD74956> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff40742000 - 0x7fff407b4fe7 libBNNS.dylib (38.200.5) <5F3A4021-8FF8-30E8-B84A-AA2BD70F4151> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff407b5000 - 0x7fff40b5bfff libLAPACK.dylib (1243.200.4) <45722A8A-5788-3C4C-ADD9-1812763FA635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff40b5c000 - 0x7fff40b71ffb libLinearAlgebra.dylib (1243.200.4) <E923DA33-B142-3A73-A80A-642878D19099> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff40b72000 - 0x7fff40b77ff3 libQuadrature.dylib (3.200.2) <6FFAC142-415D-3AF0-BC09-336302F11934> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff40b78000 - 0x7fff40bf5ffb libSparse.dylib (79.200.5) <0D7E71A4-10D2-3979-B386-D2426ADAF6D7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff40bf6000 - 0x7fff40c09ffb libSparseBLAS.dylib (1243.200.4) <00D6FC17-B739-3259-90A4-92AC8BBE03D6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff40c0a000 - 0x7fff40deeff3 libvDSP.dylib (671.201.1) <716585BD-04D7-30A9-B315-689184275E38> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff40def000 - 0x7fff40ea4ff3 libvMisc.dylib (671.201.1) <EDA66C06-A11F-3EE5-96D5-B20893448899> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff40ea5000 - 0x7fff40ea5fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <DADD83A2-550F-3570-8D71-16614C6A4CE0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff41056000 - 0x7fff41e75ff3 com.apple.AppKit (6.9 - 1671) <E1B2CAF1-9231-3B3D-BD9E-B770FE87F407> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff41ec7000 - 0x7fff41ec7fff com.apple.ApplicationServices (50.1 - 50.1) <1B71604B-9AC5-3A2F-8CB7-0EFA34A20F12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff41ec8000 - 0x7fff41f33ff7 com.apple.ApplicationServices.ATS (377 - 453.11) <7599E619-EE21-3EB7-875B-AE3B8D3E13BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff41fcc000 - 0x7fff420ebfff libFontParser.dylib (228.6) <E800074F-62CF-340A-A5A7-B8BE5B560045> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff420ec000 - 0x7fff42137fff libFontRegistry.dylib (228.12) <480D472D-C8FB-321D-86EC-2EA6927A97AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff42196000 - 0x7fff421c9ff7 libTrueTypeScaler.dylib (228.6) <D23BFDE4-8664-335A-B43B-A13A8EF29E40> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff42233000 - 0x7fff42237ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <90641B6B-D07B-3577-B594-965825544B60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff422d4000 - 0x7fff42326ff3 com.apple.HIServices (1.22 - 627.14.2) <01F309D6-32E7-3C4F-A38B-8206EE3076CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff42327000 - 0x7fff42335ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <67BC5855-B7A3-39E6-B5DD-52B287EB1532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff42336000 - 0x7fff42382fff com.apple.print.framework.PrintCore (14.0 - 503.7) <C13BC56A-65F4-35B1-9E33-51FE6F3B06FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff42383000 - 0x7fff423beff7 com.apple.QD (3.12 - 407.2) <94A30038-C545-327A-B1C0-E19C79D62BAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff423bf000 - 0x7fff423cbff7 com.apple.speech.synthesis.framework (8.0.15 - 8.0.15) <A96C744B-B1AD-32E3-BA72-7A221684BE3F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff423cc000 - 0x7fff42668ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <89D2529D-CF36-3081-A700-70892F888718> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff4266a000 - 0x7fff4266afff com.apple.audio.units.AudioUnit (1.14 - 1.14) <8B9A5ADB-E62C-3838-BB5E-AF20CAE449CC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff429ce000 - 0x7fff42d8fff7 com.apple.CFNetwork (974.1 - 974.1) <ACC604FA-5D40-34CE-9206-8091010306B7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff42da4000 - 0x7fff42da4fff com.apple.Carbon (158 - 158) <DAF95685-B793-34EB-96EA-3E292A9E3378> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff42da5000 - 0x7fff42da8ffb com.apple.CommonPanels (1.2.6 - 98) <F1E1C47B-FD1A-30A4-B41B-87BD8B178B56> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff42da9000 - 0x7fff430b0ff7 com.apple.HIToolbox (2.1.1 - 916.32) <B2ED8B1C-FC3E-3FA0-8F6D-E7A448E6FAA7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff430b1000 - 0x7fff430b4ffb com.apple.help (1.3.8 - 66) <4392A63F-9B58-3248-BF73-B46AD3744E6E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff430b5000 - 0x7fff430baff7 com.apple.ImageCapture (9.0 - 1529.7) <364EDC6B-6374-31A7-A637-0044B73F8DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff430bb000 - 0x7fff4314fff3 com.apple.ink.framework (10.9 - 225) <D6503F37-7EBC-32C1-95CC-A35EFC54E7ED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff43150000 - 0x7fff4316afff com.apple.openscripting (1.7 - 178) <D4A4D130-9C7B-3656-9D58-50F9D09C276E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff4318b000 - 0x7fff4318cfff com.apple.print.framework.Print (14.0 - 267.3) <5CD250DF-98AD-30B8-A5D5-47634FF9E74D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff4318d000 - 0x7fff4318fff7 com.apple.securityhi (9.0 - 55006) <C5308CBC-6736-31A7-905B-C635C6D43FDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff43190000 - 0x7fff43196ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <1C38B9CB-DD45-3A7B-9D4C-631855A4EE32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff432bd000 - 0x7fff432bdfff com.apple.Cocoa (6.11 - 23) <A520D2A3-032B-3C06-81E1-EFDD97C47ACE> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff432cb000 - 0x7fff43397fff com.apple.ColorSync (4.13.0 - 3340) <0618DA46-5A5E-339D-BB2F-ED66A2BFCCF9> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff43532000 - 0x7fff435c2fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <5845D43B-BBB5-343B-A164-6F9E2C53CFA3> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff43628000 - 0x7fff43653ff7 com.apple.CoreBluetooth (1.0 - 1) <D2F48E3D-79FC-32D7-B281-658EAD2CC50B> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff43654000 - 0x7fff439f4feb com.apple.CoreData (120 - 865.2) <90A5058F-A5AF-311A-81CC-B20C2AC9E85E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff439f5000 - 0x7fff43adefff com.apple.CoreDisplay (101.3 - 101.17.6) <4AE5C221-B8E1-3A4F-91E0-96ED5926E82B> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff43adf000 - 0x7fff43f2efff com.apple.CoreFoundation (6.9 - 1555.10) <4A4C87BC-4C8E-392A-ABEE-824D4074C485> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff43f30000 - 0x7fff445bdfff com.apple.CoreGraphics (2.0 - 1245.8.4.8) <FFFFEAF0-14DD-38A3-BD68-AA9AB2C672C1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff445bf000 - 0x7fff448e4ff7 com.apple.CoreImage (14.0.0 - 700.2.220) <E9E7B27C-C4FD-3AD6-923E-DF7EAE36D1FF> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff44967000 - 0x7fff449c3ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <32CA3EA2-E1A4-34AC-97A6-5E71C2B10E6C> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x7fff449c6000 - 0x7fff44c35ff7 com.apple.CoreML (1.0 - 1) <E5919684-B63E-3B64-80E2-B73908B99D0F> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff44c36000 - 0x7fff44d37ff3 com.apple.CoreMedia (1.0 - 2280.133.4) <5E733D6B-B683-3931-9D02-82300A43378D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff44d38000 - 0x7fff44d9afff com.apple.CoreMediaIO (900.0 - 5025) <BFB3978A-FDBB-352B-A96D-E8761FC51370> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff44d9b000 - 0x7fff44d9bfff com.apple.CoreServices (933 - 933) <B79C910E-93B9-3686-8E72-E0B63083AAE5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff44d9c000 - 0x7fff44e1affb com.apple.AE (768 - 768) <E795749D-CE50-3B8C-91A7-8C2618887288> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff44e1b000 - 0x7fff450f3ff7 com.apple.CoreServices.CarbonCore (1178.11 - 1178.11) <9FBE7BFB-3A81-37AC-8E15-E6F7932BBDC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff450f4000 - 0x7fff4513eff7 com.apple.DictionaryServices (1.2 - 284.16.3) <D9388630-E7F2-321E-81FF-EBD5F3B47A52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff4513f000 - 0x7fff45147ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <E40A3C4A-79C7-37D8-999B-D1169A06870B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff45148000 - 0x7fff45313ff7 com.apple.LaunchServices (933 - 933) <4614A4B4-C358-3460-9FA7-DF8D6C466806> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff45314000 - 0x7fff453b6ffb com.apple.Metadata (10.7.0 - 1191.51) <6B9CCA98-6F68-3908-A7A9-96D3E2AE5968> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff453b7000 - 0x7fff45402ff7 com.apple.CoreServices.OSServices (933 - 933) <A92C846F-872D-3534-B60E-6CD445A9BAEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff45403000 - 0x7fff45471ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <C6A34D09-9707-3F28-838F-63B59B8A12D5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff45472000 - 0x7fff45496ffb com.apple.coreservices.SharedFileList (71.27 - 71.27) <B46A15E0-4C10-3616-BE49-58E07EC463FE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff457d9000 - 0x7fff4593efff com.apple.CoreText (352.0 - 584.24) <5B55B533-F4DE-32CE-8739-16FFFA1A64F8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff4593f000 - 0x7fff4597cfff com.apple.CoreVideo (1.8 - 0.0) <C7BB7D0F-3AF2-3046-A387-A802BCA52A3A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff4597d000 - 0x7fff45a13ffb com.apple.framework.CoreWLAN (13.0 - 1370.8) <19E41424-B956-34DF-AE02-9822308FA3DC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff45baf000 - 0x7fff45c69ff7 com.apple.DiscRecording (9.0.3 - 9030.4.5) <55E40DE0-500B-3AC4-81BA-4A54BC04740C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff45c90000 - 0x7fff45c95fff com.apple.DiskArbitration (2.7 - 2.7) <C53C1905-9BCF-3AE8-8BB3-C8A2C7DB7D25> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff45e5e000 - 0x7fff4622cfff com.apple.Foundation (6.9 - 1555.10) <0CCAF9AF-F7AF-3174-98D4-6C188B1079CC> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff4629d000 - 0x7fff462cdff3 com.apple.GSS (4.0 - 2.0) <74ACB1A1-A5A4-3180-AC00-688C94AA4434> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff462ce000 - 0x7fff462e6ff7 com.apple.GameController (1.0 - 1) <47CC84DD-9316-3AA1-BF94-EC026AECF112> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff463e6000 - 0x7fff464efff3 com.apple.Bluetooth (6.0.8 - 6.0.8f6) <6CB8A08E-1154-3333-83CC-2A939AC94562> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff46551000 - 0x7fff465e2fff com.apple.framework.IOKit (2.0.2 - 1483.201.1) <DA4ED91F-2CC9-3CFD-9200-9D5D31EEE4F3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff465e4000 - 0x7fff465eeff7 com.apple.IOSurface (255.1 - 255.1) <538F0257-A408-36AF-AB1E-1D7037D6359E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff465ef000 - 0x7fff46644ff7 com.apple.ImageCaptureCore (1.0 - 1529.7) <3A387CA8-BC6E-3554-91FB-42C074EECDA7> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff46645000 - 0x7fff467d9ff7 com.apple.ImageIO.framework (3.3.0 - 1796.5.4.1) <9D078F50-BB75-3D04-8636-3FDDAB9C95DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff467da000 - 0x7fff467deffb libGIF.dylib (1796.5.4.1) <93AD6FB9-03BA-350E-AF98-D371A2BFD58F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff467df000 - 0x7fff468c4fef libJP2.dylib (1796.5.4.1) <3780EB9B-5219-385D-9472-17B0397697A5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff468c5000 - 0x7fff468eaff7 libJPEG.dylib (1796.5.4.1) <83CA8BEB-34BD-3B58-A704-C6A875984FAD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff46bbd000 - 0x7fff46be3fe7 libPng.dylib (1796.5.4.1) <9F30FA63-8AB2-3646-A6A8-FCE9F8436C35> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff46be4000 - 0x7fff46be6ff7 libRadiance.dylib (1796.5.4.1) <2C07887C-0584-3538-A9EC-3988AA5B234B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff46be7000 - 0x7fff46c35fff libTIFF.dylib (1796.5.4.1) <F420B0DC-D0F7-3DD5-9E17-00462441635C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff46f31000 - 0x7fff47cb3ff7 com.apple.JavaScriptCore (14606 - 14606.1.36.1.9) <7FF80E53-3D6B-33BF-9538-A263513475EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff47ccb000 - 0x7fff47ce4fff com.apple.Kerberos (3.0 - 1) <8BE3D524-257D-3663-A937-F1AC76BDF4D9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff47fa1000 - 0x7fff47fabfff com.apple.MediaAccessibility (1.0 - 114.4) <29D89F2B-6254-3D0D-BD0C-8472FCA373F4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff48065000 - 0x7fff48701ff7 com.apple.MediaToolbox (1.0 - 2280.133.4) <FB1C3DD9-A91B-3952-A892-9F009B854F8F> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff48703000 - 0x7fff48796fff com.apple.Metal (157.55 - 157.55) <49CD402F-20CB-3930-B997-BBDC495ABF64> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff48798000 - 0x7fff487b2ff3 com.apple.MetalKit (1.0 - 113) <8949A0FA-337E-3C28-94D1-35853D69761B> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff487b3000 - 0x7fff487d3ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <9A841A76-43BC-3220-A4DA-99137C42A0BC> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff487d4000 - 0x7fff48851fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <C469D1E5-F621-3E56-87AC-1BD889664FA3> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff48852000 - 0x7fff4887afff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <8C57A3A2-8EBB-3401-87FC-368D1BE6DAAC> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff4887b000 - 0x7fff489a2ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <CE3201A3-4ACE-3E79-990B-8987C576B31B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff489a3000 - 0x7fff489beff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <8F02CFCA-41E1-3194-915F-3106E8B48B32> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff489bf000 - 0x7fff489bfff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <8B715D78-8357-38F4-A03C-926EE967CE71> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff49bbe000 - 0x7fff49bcaffb com.apple.NetFS (6.0 - 4.0) <529E29A9-5E77-3A8C-A982-CF55F949FE5D> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff4c68a000 - 0x7fff4c6e3ff7 com.apple.opencl (2.12.1 - 2.12.1) <3EAE5BC8-E948-3926-9319-9DAC2A8B5484> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff4c6e4000 - 0x7fff4c700ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <7E4EFF02-2596-31E6-88DE-29C89E2837E4> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff4c701000 - 0x7fff4c70dffb com.apple.OpenDirectory (10.14 - 207.200.4) <52A3918E-0F7A-33FD-87EE-21A37B37D13B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff4d070000 - 0x7fff4d072fff libCVMSPluginSupport.dylib (17.0.37) <38A18A32-BBF2-3A0F-AE37-51734B6CA91A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff4d073000 - 0x7fff4d078ff3 libCoreFSCache.dylib (163.20) <BF8F04DD-C1A1-3D2A-BF3F-639FE907E28D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff4d079000 - 0x7fff4d07dfff libCoreVMClient.dylib (163.20) <45A2C724-F3D1-316A-9A41-CAB8E2A390EC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff4d07e000 - 0x7fff4d086ffb libGFXShared.dylib (17.0.37) <267B40DF-2939-3D76-89FA-E8DBDEE96D92> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff4d087000 - 0x7fff4d092fff libGL.dylib (17.0.37) <2E25A83B-B560-34A1-B474-3027C8B75BA4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff4d093000 - 0x7fff4d0cdfef libGLImage.dylib (17.0.37) <49C5F799-66E5-3A81-AF88-948DD0E583FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff4d241000 - 0x7fff4d27efff libGLU.dylib (17.0.37) <79555E42-B816-3106-8FA0-FC14A54AE8B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff4dc2e000 - 0x7fff4dc3dff3 com.apple.opengl (17.0.37 - 17.0.37) <FA76EAA6-D035-3444-87F5-DD95446D651D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff4dfbf000 - 0x7fff4e109fff com.apple.QTKit (7.7.3 - 3034) <D612DC6C-0AA8-3D41-9E17-E8219984FC65> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff4e10a000 - 0x7fff4e365fff com.apple.imageKit (3.0 - 1067) <A43B90AB-8FCB-35BF-996A-CEB28B67EEB5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff4e366000 - 0x7fff4e452fff com.apple.PDFKit (1.0 - 737.3) <F6981903-7259-3D89-B70E-855F970D84E7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff4e453000 - 0x7fff4e969ff7 com.apple.QuartzComposer (5.1 - 370) <AA2ED670-1970-3888-B7DB-D11192EBF6BB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff4e96a000 - 0x7fff4e990ff3 com.apple.quartzfilters (1.10.0 - 83) <06F25528-5474-39BF-BCD4-DD6B3203EA3C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff4e991000 - 0x7fff4ea97ff7 com.apple.QuickLookUIFramework (5.0 - 775) <41F1FDD0-C99A-36D3-AC3A-A5E604D77F63> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff4ea98000 - 0x7fff4ea98fff com.apple.quartzframework (1.5 - 23) <103A742C-50F3-3A4A-B787-FDD35F36B6F1> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff4ea99000 - 0x7fff4eceffff com.apple.QuartzCore (1.11 - 693.16.4.2) <2C9E3279-3F97-3440-B937-E5FE888232E2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff4ecf0000 - 0x7fff4ed49ff7 com.apple.QuickLookFramework (5.0 - 775) <A4CA709A-2828-3F04-8786-7FAC8A95B98B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff4ef10000 - 0x7fff4ef28ffb com.apple.SafariServices.framework (14606 - 14606.1.36.1.9) <99E7035E-6B88-3F4D-A042-A24BEDCB0666> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff4f53d000 - 0x7fff4f863fff com.apple.security (7.0 - 58286.200.222) <AEB638D9-BFE9-319E-A70B-557ACF41117A> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff4f864000 - 0x7fff4f8f3fff com.apple.securityfoundation (6.0 - 55185.200.14) <770D67D1-3DA6-3FD3-8531-376712BA4F60> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff4f8f4000 - 0x7fff4f924ffb com.apple.securityinterface (10.0 - 55109.200.8) <8BDA8A18-C4EB-3267-96AB-0C2F2321866D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff4f925000 - 0x7fff4f929ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <20DB899D-3BAF-36FD-86A6-F66A82074607> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff4fb99000 - 0x7fff4fbaeffb com.apple.StoreKit (1.0 - 1) <3A4D0B33-E43C-3D96-8870-0084DA848A18> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x7fff4fce6000 - 0x7fff4fd56ff3 com.apple.SystemConfiguration (1.17 - 1.17) <EED5BC9B-CE8D-343C-BCDC-04A79F704828> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff4ffb7000 - 0x7fff50319ff7 com.apple.VideoToolbox (1.0 - 2280.133.4) <468A9F6D-33AB-31D3-A8A3-A6A432033C9E> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff52fbb000 - 0x7fff53060ff7 com.apple.APFS (1.0 - 1) <CBE5EE83-7A5F-3C10-93FF-F6DA84DFB875> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff53a9c000 - 0x7fff53a9dff3 com.apple.AggregateDictionary (1.0 - 1) <1DEBBE36-8945-3AD8-BD48-2850AD845711> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff53e49000 - 0x7fff53f92ff3 com.apple.AnnotationKit (1.0 - 232.3.27) <2F217C3B-CF60-355B-97B4-AF7CB62CA822> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff54098000 - 0x7fff540c4ff7 com.apple.framework.Apple80211 (13.0 - 1375.14) <79EBF155-EAB2-37EE-BF8C-57BC453217B1> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff543a0000 - 0x7fff543affcf com.apple.AppleFSCompression (96.200.3 - 1.0) <E093776E-C367-3CCF-BFD5-623476A89E9A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff544ad000 - 0x7fff544b8fff com.apple.AppleIDAuthSupport (1.0 - 1) <5362D9AD-A2AE-3436-97CE-C353124504E5> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff544f9000 - 0x7fff54542ff3 com.apple.AppleJPEG (1.0 - 1) <9A690E6E-F987-3660-BED6-B1A4D1906B6C> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff54792000 - 0x7fff547baff7 com.apple.applesauce (1.0 - ???) <60BB16D6-DE7E-356A-B9DE-F73EE179934A> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff54881000 - 0x7fff54884ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <2449197F-DF0D-32BB-B0B1-D78855528692> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff54885000 - 0x7fff548d5fff com.apple.AppleVAFramework (5.0.44 - 5.0.44) <F7B8CD3A-8671-3B2C-B67C-CE39C1442207> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff54920000 - 0x7fff54936ffb com.apple.AssertionServices (1.0 - 1) <8FB0D908-6C46-3399-92D6-4E7D4B5F4F19> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff54c66000 - 0x7fff54f09ffb com.apple.AuthKit (1.0 - 1) <ED375339-69F6-34AE-825D-F16BF0618E3E> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff550da000 - 0x7fff550e3ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <972F41B3-7DF7-3BF1-ACCA-A093A4328ADF> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff550e4000 - 0x7fff55186ff7 com.apple.backup.framework (1.10 - ???) <46534B04-DD0E-357B-9CB5-F88AAC6AF4ED> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff55187000 - 0x7fff551f8ffb com.apple.BaseBoard (360.18.4 - 360.18.4) <709EF03C-5BCE-3F47-BD58-A48C1F9378A5> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff55201000 - 0x7fff55207ff3 com.apple.BezelServicesFW (317 - 317) <44601C3E-4808-38A4-A554-71F36000B003> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff5609a000 - 0x7fff560e7fff com.apple.ChunkingLibrary (194 - 194) <13F1F769-E8E7-372A-8F0B-2BB4B7753248> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff56da7000 - 0x7fff56db0fff com.apple.CommonAuth (4.0 - 2.0) <7105F266-35C3-3582-9383-A2A9D7184A7B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff57260000 - 0x7fff57637fef com.apple.CoreAUC (273.0.0 - 273.0.0) <288EC7ED-A86A-30D0-ADE2-56C33CD93AA8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff57638000 - 0x7fff57669fff com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <507AC58B-4527-353B-99CB-67FF183BD4D5> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff57700000 - 0x7fff57752ffb com.apple.corebrightness (1.0 - 1) <84B0814D-7DE5-3518-9BA3-2DA235E0EA35> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff57aad000 - 0x7fff57ac0fff com.apple.CoreEmoji (1.0 - 69.15.9) <011E7853-BDD6-3197-BA8D-D6B977EF56EB> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff57c86000 - 0x7fff57d7aff7 com.apple.CoreHandwriting (161 - 1.2) <0BD558D9-387B-34BA-8FAA-F1F75F1F9F01> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff57f3d000 - 0x7fff57f53ffb com.apple.CoreMediaAuthoring (2.2 - 958) <FD761818-0B54-3DA6-B41C-20263BC2EDAE> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff58096000 - 0x7fff58108ff7 com.apple.CoreNLP (1.0 - 130.15.22) <401F5284-A984-32A1-A547-CC8156381070> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff58290000 - 0x7fff5831dff7 com.apple.CorePDF (4.0 - 414) <28DEBFFB-BABE-3493-8230-12CE3E5EC1E3> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff583c3000 - 0x7fff583cbffb com.apple.CorePhoneNumbers (1.0 - 1) <F47CA56F-6760-3282-BFD8-C8C8D2C33ECF> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff5855a000 - 0x7fff5858bfff com.apple.CoreServicesInternal (357 - 357) <2D012EB3-83BF-3E51-A2BE-41AF26F2DDF0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff58950000 - 0x7fff589deff7 com.apple.CoreSymbolication (10.0 - 64235.3.1) <912C63C0-473B-3352-A255-60F7CA3FE3F2> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff58a6e000 - 0x7fff58b9afff com.apple.coreui (2.1 - 498.46) <05F9736C-5A62-33B3-9607-551A332AEF28> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff58b9b000 - 0x7fff58d1affb com.apple.CoreUtils (5.7 - 570.70) <2554BA12-16A2-399F-A13A-E5C8EB4FC1EC> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff58d71000 - 0x7fff58dd4ffb com.apple.framework.CoreWiFi (13.0 - 1370.8) <5C6ACF32-14D3-35FD-8A4A-629521090F41> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff58dd5000 - 0x7fff58de6ffb com.apple.CrashReporterSupport (10.13 - 938.23) <36754BB2-680F-36AE-A5DE-548B4F41F0AE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff58e69000 - 0x7fff58e78ff3 com.apple.framework.DFRFoundation (1.0 - 210) <61EF0583-E946-3201-932D-7D117BC62CB2> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff58e79000 - 0x7fff58e7dff7 com.apple.DSExternalDisplay (3.1 - 380) <B6B26BB3-2DC9-34D0-817E-EB612432EC96> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff58f00000 - 0x7fff58f77ffb com.apple.datadetectorscore (7.0 - 590.24) <2D4CFF51-BCD4-3D08-AE73-AB2B8BEC8659> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff58fc5000 - 0x7fff59006fff com.apple.DebugSymbols (185 - 185) <01F561DA-4724-32FD-B2C7-6436F4CEB980> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff59007000 - 0x7fff59160ff7 com.apple.desktopservices (1.13 - ???) <053D3A96-9263-3242-8625-101DDB9350DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff59365000 - 0x7fff59429fff com.apple.DiskManagement (12.0 - 1530) <F844A618-613A-3609-9C31-621D92FB75DD> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff5942a000 - 0x7fff5942eff7 com.apple.DisplayServicesFW (3.1 - 380) <EE27909F-7790-3438-ACA4-3993233A67B8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff594cf000 - 0x7fff594d2fff com.apple.EFILogin (2.0 - 2) <8FCA68D2-CEA5-39F6-B222-AC31FCF79D1D> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff59cb7000 - 0x7fff59fe9fff com.apple.vision.EspressoFramework (1.0 - 120) <673D7C7E-62BC-3B81-8A32-B9AC3FD13A92> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff5a1a4000 - 0x7fff5a5ccfff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <CCBC466A-1AD4-3B0B-80B2-D6CFCBB37FC0> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff5deee000 - 0x7fff5deeffff libmetal_timestamp.dylib (902.1.49) <F0C95234-16BA-3F0B-A11E-087ABDC8DD6C> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff5f594000 - 0x7fff5f599ff7 com.apple.GPUWrangler (3.22.9 - 3.22.9) <A7FF28DC-3576-3E53-AFAF-0E29CB45E9AE> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff5f949000 - 0x7fff5f96eff7 com.apple.GenerationalStorage (2.0 - 285.101) <089301DF-60C9-3BED-9357-2F91336C1579> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff603f8000 - 0x7fff60407fff com.apple.GraphVisualizer (1.0 - 5) <C7040CD7-6CAB-3878-B29E-21F1665341D0> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff604ee000 - 0x7fff60562fff com.apple.Heimdal (4.0 - 2.0) <793E1D31-6166-37F2-A989-F98FE1706E5D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff60563000 - 0x7fff60592fff com.apple.HelpData (2.3 - 184) <56A7277E-B1C3-3AD8-AF4B-8BAA41D6E640> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff6193e000 - 0x7fff61945ffb com.apple.IOAccelerator (400.24 - 400.24) <01551ED8-6AE1-307D-A3F0-DCA85FAA5210> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff61949000 - 0x7fff61962ff7 com.apple.IOPresentment (1.0 - 37) <751130A1-8639-3BDA-BF8F-A3BE54427E43> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff61d75000 - 0x7fff61da4ff7 com.apple.IconServices (379 - 379) <BE9E71B4-C00E-317D-9093-6E637C905A09> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff61ecf000 - 0x7fff61ed3fff com.apple.InternationalSupport (1.0 - 10.15.6) <F0E300AD-1E67-3D57-B179-C2212F7CD00C> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff62043000 - 0x7fff62056fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <10A17A9D-564E-3841-A433-D6D7401ED733> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff62071000 - 0x7fff62168fff com.apple.LanguageModeling (1.0 - 159.15.15) <E524CC46-42C7-3046-AD6C-5D5D768EA478> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff62169000 - 0x7fff621aaff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <90C1CFE1-9935-3F4F-8A9B-1DD697F2FF3D> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff621b1000 - 0x7fff621b7ff7 com.apple.LinguisticData (1.0 - 238.15.29) <D27B30BA-3F5D-3AF2-895C-3B64569EEA1B> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff62a14000 - 0x7fff62a17fff com.apple.Mangrove (1.0 - 25) <8744DBF9-3375-392C-8EE6-24373E0D19E8> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff62aa5000 - 0x7fff62accffb com.apple.MarkupUI (1.0 - 232.3.27) <1A5E88CA-36C3-30A8-9D39-71CC6923D009> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff62b35000 - 0x7fff62b68ff3 com.apple.MediaKit (16 - 906) <15D4EDA2-AAAC-3CF3-BB2B-3A92AECC932D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff62f11000 - 0x7fff62f39ffb com.apple.spotlight.metadata.utilities (1.0 - 1191.51) <7CD28A81-F0D6-3575-8F83-3D45D53F72BB> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff62f3a000 - 0x7fff62fccfff com.apple.gpusw.MetalTools (1.0 - 1) <60BE7793-D8DE-3DF1-94D7-503301EC1E72> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff63176000 - 0x7fff63191fff com.apple.MobileKeyBag (2.0 - 1.0) <E9F2FF73-22D0-35B5-BD2C-9DD8FDB12BCC> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff631a2000 - 0x7fff6321eff7 com.apple.Montreal (1.0 - 42.15.8) <F7AAEEC2-B981-30C4-995F-4D98FB808984> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff6321f000 - 0x7fff63249ff7 com.apple.MultitouchSupport.framework (2400.15 - 2400.15) <A2BB198C-0B1A-3988-8611-9A9BCCE650B5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff634bb000 - 0x7fff634c5fff com.apple.NetAuth (6.2 - 6.2) <55DC741A-A01A-380C-B2D3-244241DA1F2C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff63d90000 - 0x7fff63de6fff com.apple.OTSVG (1.0 - ???) <A0E0FC0B-B48F-3639-9C50-BAECC72988D5> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff64e42000 - 0x7fff64f48fff com.apple.PencilKit (1.0 - 1) <30261DA0-5099-3ECE-8DF6-E2D15BFA2B5C> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff64f49000 - 0x7fff64f58ff3 com.apple.PerformanceAnalysis (1.217 - 217) <8560F263-31F4-3CCA-84B1-30C296DC1A7D> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff66eb9000 - 0x7fff66f10fff com.apple.ProtectedCloudStorage (1.0 - 1) <737DEC8B-342E-3BB2-AF69-D4428D467E4E> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff66f11000 - 0x7fff66f2fff7 com.apple.ProtocolBuffer (1 - 263) <C5AC21FB-74AD-3FC2-B231-B1376751BBAE> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff670c3000 - 0x7fff670c6ff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <941AB8E3-BA18-326D-AA59-BA30FFC4C6AC> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff670c7000 - 0x7fff670ddff3 com.apple.QuickLookThumbnailing (1.0 - 1) <AAF7A93C-5553-3476-B2F2-B8B1DA2BEF54> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff670de000 - 0x7fff67136f0f com.apple.ROCKit (24 - 24) <5437F6F7-453F-3D75-9E87-D2A090D82D25> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff671f7000 - 0x7fff67203ff3 com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.201.2) <FB030135-1633-378F-A7A6-B1A81AD068A2> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff67216000 - 0x7fff67239ffb com.apple.RemoteViewServices (2.0 - 128) <68530B4D-B2C0-3271-941B-D9EA62095727> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff6723a000 - 0x7fff6724efff com.apple.xpc.RemoteXPC (1.0 - 1336.201.2) <1E00A78B-1934-39A0-8F35-48CBEB93D04C> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff68ba7000 - 0x7fff68cc6fff com.apple.Sharing (1176.11 - 1176.11) <9881AEAD-5410-33F7-A852-770C7FE677C9> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff68cc7000 - 0x7fff68ce6ff3 com.apple.shortcut (2.16 - 101) <D724B49E-C972-31CC-B47C-8CB769A3E0B0> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff69a78000 - 0x7fff69d28ff7 com.apple.SkyLight (1.600.0 - 336.80.6) <5F7D2312-0003-354C-82BC-DC346B1A98E6> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff6a4f7000 - 0x7fff6a504fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <816EC315-3E76-37B7-A495-B4AE031DA439> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff6b365000 - 0x7fff6b3f2ff7 com.apple.Symbolication (10.0 - 64254.5) <7D5FB79E-1121-3DB0-9CBE-C023835ACE60> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff6b8fb000 - 0x7fff6b908ff3 com.apple.TCC (1.0 - 1) <55C045F7-D8AB-3BE6-970B-9457FA78E7E3> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff6bb77000 - 0x7fff6bc3eff7 com.apple.TextureIO (3.8.4 - 3.8.1) <F9D5F55D-9A33-326E-8B2F-B533CC91DD64> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff6bcff000 - 0x7fff6beb9fff com.apple.UIFoundation (1.0 - 550.35) <1CAAA3AC-1477-3E24-B55C-07A704D7CA03> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff6cba7000 - 0x7fff6cc90fff com.apple.ViewBridge (400.1 - 400.1) <0BCCA232-710B-3F84-8341-A30F77B3A4E9> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff6d4ab000 - 0x7fff6d4aefff com.apple.dt.XCTTargetBootstrap (1.0 - 1) <63A533F6-988D-3FED-A1C7-20BC725A0D4B> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff6d8df000 - 0x7fff6d8e1ff3 com.apple.loginsupport (1.0 - 1) <5F1E000D-0674-3413-AB3E-83F7974666FB> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff6db9b000 - 0x7fff6dbd3fff libCRFSuite.dylib (41.15.4) <62EDD39F-6D1B-334B-A9A2-5800714255BB> /usr/lib/libCRFSuite.dylib
0x7fff6dbd6000 - 0x7fff6dbe1ff7 libChineseTokenizer.dylib (28.15.3) <8CD1C213-7F62-3F02-BFB1-D0A5EFF92AB0> /usr/lib/libChineseTokenizer.dylib
0x7fff6dbe2000 - 0x7fff6dc6eff7 libCoreStorage.dylib (546.50.1) <F56AD958-416C-38EA-9829-DEAAB1F0C155> /usr/lib/libCoreStorage.dylib
0x7fff6dc72000 - 0x7fff6dc73ff7 libDiagnosticMessagesClient.dylib (107) <C542CB3C-AA44-3D7F-B88C-79CC31B481AB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff6dcaa000 - 0x7fff6de6dff7 libFosl_dynamic.dylib (18.3.2) <6EF1CB2A-2BDA-3458-B631-F794D72660FD> /usr/lib/libFosl_dynamic.dylib
0x7fff6de8e000 - 0x7fff6de95fff libMatch.1.dylib (31.200.1) <20216A5F-C625-3D87-9D95-C577F8687F6F> /usr/lib/libMatch.1.dylib
0x7fff6dec3000 - 0x7fff6dee2ffb libMobileGestalt.dylib (645.200.76) <A2C32318-0E35-3963-B9B7-E1E92AD33BA6> /usr/lib/libMobileGestalt.dylib
0x7fff6dee3000 - 0x7fff6dee3fff libOpenScriptingUtil.dylib (178) <2EEBF84D-9E00-3570-AC0C-C49C8D25A8BF> /usr/lib/libOpenScriptingUtil.dylib
0x7fff6e024000 - 0x7fff6e025ffb libSystem.B.dylib (1252.200.5) <D5133811-9D66-3DEB-9521-0A67347C9A54> /usr/lib/libSystem.B.dylib
0x7fff6e0af000 - 0x7fff6e0b0fff libThaiTokenizer.dylib (2.15.1) <A8235B04-F541-3856-BE2E-B58EE0483AD9> /usr/lib/libThaiTokenizer.dylib
0x7fff6e0c3000 - 0x7fff6e0d9ffb libapple_nghttp2.dylib (1.24.1) <B8D45114-3868-3154-BC35-22597E3E7D8A> /usr/lib/libapple_nghttp2.dylib
0x7fff6e0da000 - 0x7fff6e103ffb libarchive.2.dylib (54.200.3) <B47C54A0-3A30-374A-BD99-2304B9B0EC82> /usr/lib/libarchive.2.dylib
0x7fff6e104000 - 0x7fff6e183fef libate.dylib (1.13.8) <C647A80F-6F80-3FDA-A9B4-92800999F963> /usr/lib/libate.dylib
0x7fff6e187000 - 0x7fff6e187ff3 libauto.dylib (187) <01824E49-F2EF-3FC1-ABF3-782EFDF6CA17> /usr/lib/libauto.dylib
0x7fff6e188000 - 0x7fff6e25eff7 libboringssl.dylib (109.201.1) <EE1460C1-EA18-3BC8-BC43-BC916E09C790> /usr/lib/libboringssl.dylib
0x7fff6e25f000 - 0x7fff6e26fff3 libbsm.0.dylib (39.200.18) <5E5098D0-F7B2-32A1-8038-E709F6718D4E> /usr/lib/libbsm.0.dylib
0x7fff6e270000 - 0x7fff6e27efff libbz2.1.0.dylib (38.200.3) <4EE3C5E8-BEF3-3910-A231-B1AE2B437E01> /usr/lib/libbz2.1.0.dylib
0x7fff6e27f000 - 0x7fff6e2d6ff7 libc++.1.dylib (400.9.4) <D4AB366F-48A9-3C7D-91BD-41198F69DD57> /usr/lib/libc++.1.dylib
0x7fff6e2d7000 - 0x7fff6e2ecfff libc++abi.dylib (400.17) <BA948A32-9024-3E55-98D4-18E31F6AED25> /usr/lib/libc++abi.dylib
0x7fff6e2ed000 - 0x7fff6e2edff3 libcharset.1.dylib (51.200.6) <D998A58B-E4A8-3685-9A6A-43AFC28100EB> /usr/lib/libcharset.1.dylib
0x7fff6e2ee000 - 0x7fff6e2feffb libcmph.dylib (6.15.1) <5D776FF6-DF7F-3EDD-B920-C07ED76C672B> /usr/lib/libcmph.dylib
0x7fff6e2ff000 - 0x7fff6e317ffb libcompression.dylib (52.200.13) <EA767836-CBDC-318D-AC14-963C90D6CC67> /usr/lib/libcompression.dylib
0x7fff6e5c2000 - 0x7fff6e5d8fff libcoretls.dylib (155.200.6) <6E68F922-752C-311F-B56D-EE391E6AE1F7> /usr/lib/libcoretls.dylib
0x7fff6e5d9000 - 0x7fff6e5daff3 libcoretls_cfhelpers.dylib (155.200.6) <7300BA76-39D2-349E-9FB8-EBE5947A708A> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff6ec3d000 - 0x7fff6ec48ff7 libcsfde.dylib (546.50.1) <65E8F1F1-665A-381E-8932-D7CBA451991B> /usr/lib/libcsfde.dylib
0x7fff6ec51000 - 0x7fff6eca7ffb libcups.2.dylib (462.9) <51E06E95-891F-3B88-A8C3-35B514C57239> /usr/lib/libcups.2.dylib
0x7fff6eddf000 - 0x7fff6eddffff libenergytrace.dylib (17.200.1) <D62ED169-B91C-3CCB-ADF5-E66AE4007B51> /usr/lib/libenergytrace.dylib
0x7fff6ede0000 - 0x7fff6edf9ffb libexpat.1.dylib (16.1.1) <D91D81FF-D190-36A7-B440-F4AEB4220C80> /usr/lib/libexpat.1.dylib
0x7fff6ee11000 - 0x7fff6ee16ff7 libgermantok.dylib (17.15.2) <9CBF0658-E83B-32E6-B674-3EE72D22C041> /usr/lib/libgermantok.dylib
0x7fff6ee17000 - 0x7fff6ee1cff7 libheimdal-asn1.dylib (520.200.17) <58971629-3850-3905-A9A1-09FCF7A32815> /usr/lib/libheimdal-asn1.dylib
0x7fff6ee48000 - 0x7fff6ef39ff7 libiconv.2.dylib (51.200.6) <3240A278-F537-3EC8-BE0C-983797520A50> /usr/lib/libiconv.2.dylib
0x7fff6ef3a000 - 0x7fff6f19dffb libicucore.A.dylib (62107.0.1) <EAE6FC43-3AD2-3A53-9F7A-4E5E5F66D006> /usr/lib/libicucore.A.dylib
0x7fff6f1ea000 - 0x7fff6f1ebfff liblangid.dylib (128.15.1) <F79B6250-C0B1-3E8E-851F-6CA33B4311A3> /usr/lib/liblangid.dylib
0x7fff6f1ec000 - 0x7fff6f204fff liblzma.5.dylib (10.200.3) <3ADDFA63-F37A-3C9C-91E4-58EE3113B9A1> /usr/lib/liblzma.5.dylib
0x7fff6f21c000 - 0x7fff6f2ccfff libmecab.1.0.0.dylib (779.15.23) <6A38FCDA-17CE-30C3-AB66-A714CF645384> /usr/lib/libmecab.1.0.0.dylib
0x7fff6f2cd000 - 0x7fff6f50afff libmecabra.dylib (779.15.23) <30E102AA-F3D3-3572-A1AE-1F2287DEF696> /usr/lib/libmecabra.dylib
0x7fff6f6e2000 - 0x7fff6fa3afff libnetwork.dylib (1229.200.109) <AD59D28C-CCB2-3B34-B904-8CCCEB2CF320> /usr/lib/libnetwork.dylib
0x7fff6facb000 - 0x7fff70251fe7 libobjc.A.dylib (750) <2E868147-8818-359E-8CD7-A8B80665928F> /usr/lib/libobjc.A.dylib
0x7fff70264000 - 0x7fff70268ffb libpam.2.dylib (22.200.1) <8C419238-675A-3C41-B8D4-95E391CA630F> /usr/lib/libpam.2.dylib
0x7fff7026b000 - 0x7fff702a1ff7 libpcap.A.dylib (79.200.4) <5939AB23-B2A9-3C03-B6C1-4F0E5A21D9FC> /usr/lib/libpcap.A.dylib
0x7fff703bb000 - 0x7fff703d3ffb libresolv.9.dylib (65.200.2) <0FEAEB01-B926-37FA-AB47-99BAC481C10B> /usr/lib/libresolv.9.dylib
0x7fff703d5000 - 0x7fff70411ff7 libsandbox.1.dylib (851.201.1) <4498F061-7DEA-323C-88AC-3310556CE865> /usr/lib/libsandbox.1.dylib
0x7fff70425000 - 0x7fff70426ffb libspindump.dylib (266) <0E60D709-0A48-3905-ACD1-9DDE6FD8B476> /usr/lib/libspindump.dylib
0x7fff70427000 - 0x7fff705fefe7 libsqlite3.dylib (274.20) <4434B695-BC65-30D6-AFED-1B6488DB3D2E> /usr/lib/libsqlite3.dylib
0x7fff7082b000 - 0x7fff7088aff3 libusrtcp.dylib (1229.200.109) <07B2AEC8-5FD4-34BE-B35B-B595283D9DC9> /usr/lib/libusrtcp.dylib
0x7fff7088b000 - 0x7fff7088effb libutil.dylib (51.200.4) <91EE9BF4-FB06-3260-B502-7EFDAD5AF59B> /usr/lib/libutil.dylib
0x7fff7088f000 - 0x7fff7089cfff libxar.1.dylib (404) <4B4D0206-0B62-3E89-AD07-E7BB9E4DFA68> /usr/lib/libxar.1.dylib
0x7fff708a1000 - 0x7fff70984fff libxml2.2.dylib (32.6) <BFF70F01-6755-36B9-B7AA-724743E63503> /usr/lib/libxml2.2.dylib
0x7fff70985000 - 0x7fff709adff3 libxslt.1.dylib (16.1) <F191E8B9-7530-30CA-873B-2FA2BF2D6374> /usr/lib/libxslt.1.dylib
0x7fff709ae000 - 0x7fff709c0ffb libz.1.dylib (70.200.4) <99A3D725-8388-38B4-B66C-5E9006E6F072> /usr/lib/libz.1.dylib
0x7fff70a31000 - 0x7fff70a35ff3 libcache.dylib (81) <FE21A7E9-DBEB-33AC-836B-785AD036ACF4> /usr/lib/system/libcache.dylib
0x7fff70a36000 - 0x7fff70a40ff3 libcommonCrypto.dylib (60118.200.6) <78093D4F-91DB-35C8-981A-13375778B2E7> /usr/lib/system/libcommonCrypto.dylib
0x7fff70a41000 - 0x7fff70a48fff libcompiler_rt.dylib (63.4) <A4D9CF37-D076-3CE9-95F1-DA89DA1601B6> /usr/lib/system/libcompiler_rt.dylib
0x7fff70a49000 - 0x7fff70a52ff3 libcopyfile.dylib (146.200.3) <4BCDADBF-79F5-3829-B47D-64DA0D44BCBF> /usr/lib/system/libcopyfile.dylib
0x7fff70a53000 - 0x7fff70ad7fff libcorecrypto.dylib (602.200.50) <7AEC5B72-0B92-37E8-808B-6732DB714139> /usr/lib/system/libcorecrypto.dylib
0x7fff70b5d000 - 0x7fff70b97ff7 libdispatch.dylib (1008.200.78) <B8962879-AD55-3CF0-9B0A-5F1D57D1E14B> /usr/lib/system/libdispatch.dylib
0x7fff70b98000 - 0x7fff70bc7fff libdyld.dylib (625.13) <4B16C209-83D4-3817-9B62-C2F7FFB23755> /usr/lib/system/libdyld.dylib
0x7fff70bc8000 - 0x7fff70bc8ffb libkeymgr.dylib (30) <A73AA788-C35C-3284-BFCA-95B1BBDF0CF3> /usr/lib/system/libkeymgr.dylib
0x7fff70bc9000 - 0x7fff70bd5ff7 libkxld.dylib (4903.201.2) <EAF1CF8D-3843-33BE-8126-30994685B8F0> /usr/lib/system/libkxld.dylib
0x7fff70bd6000 - 0x7fff70bd6ff7 liblaunch.dylib (1336.201.2) <43E6698E-155E-3EAE-BAFF-CA5FCB35325C> /usr/lib/system/liblaunch.dylib
0x7fff70bd7000 - 0x7fff70bdcfff libmacho.dylib (917) <17BF7038-9C70-3EE1-9E96-3AE10D49669E> /usr/lib/system/libmacho.dylib
0x7fff70bdd000 - 0x7fff70bdfff3 libquarantine.dylib (86.200.11) <C70DA995-0D6E-302C-A15E-F7F03A3857B4> /usr/lib/system/libquarantine.dylib
0x7fff70be0000 - 0x7fff70be1ff3 libremovefile.dylib (45.200.2) <D74A307B-3DC7-3992-B16C-DACB8207BE13> /usr/lib/system/libremovefile.dylib
0x7fff70be2000 - 0x7fff70bf9ff3 libsystem_asl.dylib (356.200.4) <EC9D8AD4-E5CB-3765-804A-9E1E9DC045D2> /usr/lib/system/libsystem_asl.dylib
0x7fff70bfa000 - 0x7fff70bfafff libsystem_blocks.dylib (73) <26419398-C30C-30F1-B656-A92AFA9560F6> /usr/lib/system/libsystem_blocks.dylib
0x7fff70bfb000 - 0x7fff70c83fff libsystem_c.dylib (1272.200.26) <3DEEE96E-6DF6-35AD-8654-D69AC26B907B> /usr/lib/system/libsystem_c.dylib
0x7fff70c84000 - 0x7fff70c87ff7 libsystem_configuration.dylib (963.200.27) <02CC3996-B34E-333C-8806-AE2699D34424> /usr/lib/system/libsystem_configuration.dylib
0x7fff70c88000 - 0x7fff70c8bff7 libsystem_coreservices.dylib (66) <254B6849-2C8F-302C-8616-B8324A11AB30> /usr/lib/system/libsystem_coreservices.dylib
0x7fff70c8c000 - 0x7fff70c92ffb libsystem_darwin.dylib (1272.200.26) <974E9EF7-DE72-34B7-B056-0A81C10DF8EB> /usr/lib/system/libsystem_darwin.dylib
0x7fff70c93000 - 0x7fff70c99ff7 libsystem_dnssd.dylib (878.200.35) <FFC665AA-B257-35AD-BD8B-32FD42C2EEC1> /usr/lib/system/libsystem_dnssd.dylib
0x7fff70c9a000 - 0x7fff70ce6ff3 libsystem_info.dylib (517.200.9) <0707C387-D7DE-372E-8FF1-3DE5C91932D6> /usr/lib/system/libsystem_info.dylib
0x7fff70ce7000 - 0x7fff70d0eff7 libsystem_kernel.dylib (4903.201.2) <45FAA4C0-D553-34FD-ADF8-884886AE0D2A> /usr/lib/system/libsystem_kernel.dylib
0x7fff70d0f000 - 0x7fff70d5aff7 libsystem_m.dylib (3158.200.7) <43D1796B-954F-37D6-B1AC-9D80DF0655A2> /usr/lib/system/libsystem_m.dylib
0x7fff70d5b000 - 0x7fff70d7fff7 libsystem_malloc.dylib (166.200.60) <846F6898-117C-3427-A8FB-3772FFC2410B> /usr/lib/system/libsystem_malloc.dylib
0x7fff70d80000 - 0x7fff70d8bffb libsystem_networkextension.dylib (767.200.40) <F84D5474-4DC1-3E1A-AE00-8CE9593278B4> /usr/lib/system/libsystem_networkextension.dylib
0x7fff70d8c000 - 0x7fff70d93fff libsystem_notify.dylib (172.200.21) <BCCB222F-DC64-3954-A836-DCCE6659CA5A> /usr/lib/system/libsystem_notify.dylib
0x7fff70d94000 - 0x7fff70d9dfef libsystem_platform.dylib (177.200.16) <B75B04AD-69FE-3ADE-84D2-C17972FC8F49> /usr/lib/system/libsystem_platform.dylib
0x7fff70d9e000 - 0x7fff70da8fff libsystem_pthread.dylib (330.201.1) <87A6B136-E423-3B6D-A58A-137F392D7D9D> /usr/lib/system/libsystem_pthread.dylib
0x7fff70da9000 - 0x7fff70dacff7 libsystem_sandbox.dylib (851.201.1) <FBA7E09B-F10F-3424-90EA-B4999B7FB461> /usr/lib/system/libsystem_sandbox.dylib
0x7fff70dad000 - 0x7fff70dafff7 libsystem_secinit.dylib (30.200.13) <CBEAB62B-F0A0-342F-9878-CADC14A3CB0D> /usr/lib/system/libsystem_secinit.dylib
0x7fff70db0000 - 0x7fff70db7ff7 libsystem_symptoms.dylib (820.207.88) <B6E22FA8-0F7B-36FD-9D99-284056D3CB47> /usr/lib/system/libsystem_symptoms.dylib
0x7fff70db8000 - 0x7fff70dcdff7 libsystem_trace.dylib (906.200.86) <7983ED77-18B5-39A5-BE19-AE4F2832ADEA> /usr/lib/system/libsystem_trace.dylib
0x7fff70dcf000 - 0x7fff70dd4ffb libunwind.dylib (35.4) <41222EF6-2233-3CF4-947A-15D48CB8C030> /usr/lib/system/libunwind.dylib
0x7fff70dd5000 - 0x7fff70e05fff libxpc.dylib (1336.201.2) <0A8747D1-33AA-37E1-B97A-BA9B95FE4E8C> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 20109
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=518.9M resident=0K(0%) swapped_out_or_unallocated=518.9M(100%)
Writable regions: Total=895.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=895.3M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 256K 3
Activity Tracing 256K 2
CG backing stores 2540K 5
CG image 1508K 14
CoreAnimation 680K 9
CoreGraphics 8K 2
CoreImage 76K 7
CoreUI image data 1344K 16
CoreUI image file 416K 6
Foundation 4K 2
IOKit 7940K 2
Kernel Alloc Once 12K 3
MALLOC 190.8M 46
MALLOC guard page 48K 13
MALLOC_NANO (reserved) 384.0M 2 reserved VM address space (unallocated)
Memory Tag 242 12K 2
Memory Tag 255 530.0M 68
SQLite page cache 64K 2
STACK GUARD 56.2M 50
Stack 269.4M 50
VM_ALLOCATE 20.2M 22
__DATA 37.3M 306
__FONT_DATA 4K 2
__LINKEDIT 222.4M 11
__TEXT 296.5M 306
__UNICODE 560K 2
libnetwork 1664K 8
mapped file 73.2M 43
shared memory 2752K 16
=========== ======= =======
TOTAL 2.1G 991
TOTAL, minus reserved VM space 1.7G 991
Model: MacBookPro14,2, BootROM MBP142.0178.B00, 2 processors, Intel Core i5, 3.1 GHz, 8 GB, SMC 2.44f1
Graphics: Intel Iris Plus Graphics 650, Intel Iris Plus Graphics 650, Built-In
Memory Module: BANK 0/DIMM0, 4 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C3531324D3332443250462D3039
Memory Module: BANK 1/DIMM0, 4 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C3531324D3332443250462D3039
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x171), Broadcom BCM43xx 1.0 (7.77.61.1 AirPortDriverBrcmNIC-1305.2)
Bluetooth: Version 6.0.8f6, 3 services, 27 devices, 1 incoming serial ports
Network Service: iPhone, Ethernet, en7
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: MHA-L29
USB Device: iPhone
USB Device: iBridge
Thunderbolt Bus: MacBook Pro, Apple Inc., 37.1
Thunderbolt Bus: MacBook Pro, Apple Inc., 37.1
</details>
|
https://github.com/electron/electron/issues/14837
|
https://github.com/electron/electron/pull/16125
|
b57046e67d9f018031dc5559dbb2105dafe1f0d6
|
876064036dc827664506f8d8cfb08bcf203ca360
| 2018-09-27T12:21:12Z |
c++
| 2019-01-04T04:40:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,828 |
["script/upload-node-checksums.py", "script/upload-node-headers.py"]
|
Rebuild Native Module Failed On 4.0.0-nightly.20180821
|
* Output of `node_modules/.bin/electron --version`:
$ node_modules/.bin/electron --version
v4.0.0-nightly.20180821
* Operating System (Platform and Version):
Win7 x64
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable):
**Expected Behavior**
I use `HOME=~/.electron-gyp node-gyp rebuild --target=4.0.0-nightly.20180821 --arch=x64 --dist-url="https://atom.io/download/electron"` rebuild native modules
**Actual behavior**
the task download `node.lib`, not `iojs.lib`, rebuild failed
Output:
```
gyp info it worked if it ends with ok
gyp info using [email protected]
gyp info using [email protected] | win32 | x64
gyp http GET https://atom.io/download/electron/v4.0.0-nightly.20180821/node-v4.0.0-nightly.20180821.tar.gz
gyp http 200 https://atom.io/download/electron/v4.0.0-nightly.20180821/node-v4.0.0-nightly.20180821.tar.gz
gyp http GET https://atom.io/download/electron/v4.0.0-nightly.20180821/SHASUMS256.txt
gyp http GET https://atom.io/download/electron/v4.0.0-nightly.20180821/win-x86/node.lib
gyp http GET https://atom.io/download/electron/v4.0.0-nightly.20180821/win-x64/node.lib
gyp http 200 https://atom.io/download/electron/v4.0.0-nightly.20180821/SHASUMS256.txt
gyp http 404 https://atom.io/download/electron/v4.0.0-nightly.20180821/win-x64/node.lib
gyp WARN install got an error, rolling back install
gyp http 404 https://atom.io/download/electron/v4.0.0-nightly.20180821/win-x86/node.lib
```
|
https://github.com/electron/electron/issues/14828
|
https://github.com/electron/electron/pull/14829
|
7dc7cd1d89d5b2ffc63b03679d77d00de073a7b8
|
131b19403f2efefae30854ff6259c7bf33093bfd
| 2018-09-27T01:52:17Z |
c++
| 2018-09-27T12:38:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,818 |
["docs/api/accelerator.md"]
|
Shortcut triggers on pressing first and last keyboard button
|
* Output of `node_modules/.bin/electron --version`: v3.0.0
* Operating System (Platform and Version): macOS 10.13.6
**Expected Behavior**
Shortcut should be triggered **only** on CMD or CTRL + C + D
**Actual behavior**
Shortcut triggers when you press CMD or CTRL + D
**To Reproduce**
https://github.com/SilencerWeb/electron-shortcuts-bug
```sh
$ git clone https://github.com/SilencerWeb/electron-shortcuts-bug
$ npm install
$ npm start || electron .
```
|
https://github.com/electron/electron/issues/14818
|
https://github.com/electron/electron/pull/14823
|
1b4d425876ed52a5c09374bb76c101a8a6ba59b9
|
be2c27d5b8991016a7536921f669b266d1473afc
| 2018-09-26T09:31:42Z |
c++
| 2018-09-26T22:03:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,811 |
["atom/browser/api/atom_api_debugger.cc", "spec/api-debugger-spec.js"]
|
Debugger.sendCommand callback passes an empty error object on success
|
* Output of `node_modules/.bin/electron --version`: 3.0.0 x86
* Operating System (Platform and Version): win7 sp1 x64
**Expected Behavior**
to make it easy to differentiate success from failure, error should be null/undefined on success
**Actual behavior**
error is an empty object
```
[2018-09-26T02:17:14.805Z] sendCommand callback:
error: {}
result: {}
```
**To Reproduce**
run the following
```js
'use strict';
const {app, BrowserWindow} = require('electron'),
OFFSCREEN = true;
let win;
if (OFFSCREEN)
app.disableHardwareAcceleration();
app.on('ready', () => {
win = new BrowserWindow({
width: 1440,
height: 900,
useContentSize: true,
show: !OFFSCREEN,
webPreferences: {
nodeIntegration: false,
partition: 'memory_partition_1',
offscreen: OFFSCREEN
},
});
if (OFFSCREEN) {
win.webContents.setFrameRate(1);
win.webContents.stopPainting();
}
win.webContents.on('did-stop-loading', event => {
log('did-stop-loading: %s', win.webContents.getURL());
setTimeout(exit, 2000);
});
const dev = win.webContents.debugger;
dev.attach();
dev.on('message', (event, method, params) => {
log('%s:\n%O', method, params);
});
log('before sendCommand');
dev.sendCommand('Page.enable', {}, (error, result) => log('sendCommand callback:\nerror: %O\nresult: %O', error, result));
log('after sendCommand');
setTimeout(() => {
log('before loadURL');
win.loadURL('http://example.org/');
log('after loadURL');
});
});
function log(msg, ...args) {
console.log(`[${new Date().toISOString()}] ${msg}\n`, ...args);
}
function exit() {
log('exiting');
app.exit();
}
```
|
https://github.com/electron/electron/issues/14811
|
https://github.com/electron/electron/pull/14814
|
985d35fc1cab1fad5bad537592166f7311d86fe4
|
7dc7cd1d89d5b2ffc63b03679d77d00de073a7b8
| 2018-09-26T02:31:03Z |
c++
| 2018-09-27T07:43:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,778 |
["atom/common/native_mate_converters/net_converter.cc", "spec/api-protocol-spec.js"]
|
Converter<net::HttpResponseHeaders*>::FromV8 does not allow multiple headers with the same name
|
* Output of `node_modules/.bin/electron --version`: v2.0.8
* Operating System (Platform and Version): macos 10.13.6
**To Reproduce**
1. `protocol.interceptStreamProtocol` to handle requests from electron
2. In the callback, give a header like:
```
callback({
headers: {
'Set-Cookie': ['foo', 'bar', 'baz']
}
})
```
3. Request a url and inspect chrome dev tools
**Expected Behavior**
In dev tools you can see multiple set-cookie headers, and multiple cookies get set.
**Actual behavior**
No cookies are set.
---
**To Reproduce**
With a sample repo:
1. clone / checkout the branch I'm on
```
git clone [email protected]:ibash/nativefier.git
cd nativefier
git checkout offline_2
```
1. install dependencies and build nativefier
```
yarn install
cd app
yarn install
cd ..
yarn build
```
1. package an example app and then run it
```
node lib/cli.js --name "Queue Offline" "https://safaribooksonline.com"
./Queue\ Offline-darwin-x64/Queue\ Offline.app/Contents/MacOS/Queue\ Offline
```
1. open dev tools in the app
1. inspect a network request
**Expected Behavior**
All the network requests should have three headers: "TEST: first", "TEST: second", "TEST: third"
**Actual behavior**
A single header like: "TEST: first, second, third"
---
**Additional Information**
The problem is that `Converter<net::HttpResponseHeaders*>::FromV8` expects each header to only have a single string value, [see this line of code](https://github.com/electron/electron/blob/0e3b2d92d7de5e1d14051c7daf930639cc34c51f/atom/common/native_mate_converters/net_converter.cc#L190).
Oddly enough converting headers _to_ v8 is correct, and handles multiple headers with the same name [as a list](https://github.com/electron/electron/blob/0e3b2d92d7de5e1d14051c7daf930639cc34c51f/atom/common/native_mate_converters/net_converter.cc#L163).
As far as I can tell there's no way to actually respond with multiple header values with the same name.
Last but not least, I found you can crash electron if you send a header value like: `{bar: 'foo\0 bar: foo2'}`
|
https://github.com/electron/electron/issues/14778
|
https://github.com/electron/electron/pull/14887
|
6fa940f2c13548fcc93edfbb0c3fff225ba88fec
|
3b6f0d83e18d6b917f875567ba3960a9bd32468b
| 2018-09-24T01:27:46Z |
c++
| 2018-10-25T00:34:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,697 |
["atom/app/atom_main.cc"]
|
v3.0.0 fails to create a working renderer on Linux
|
* Output of `node_modules/.bin/electron --version`: `v3.0.0`
* Operating System (Platform and Version): `Debian GNU/Linux 9.5 x86_64`
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): `v2.0.10`
**Expected Behavior**
My previously working application, not concerned by any of the [breaking changes](https://github.com/electron/electron/blob/master/docs/api/breaking-changes.md#breaking-api-changes-30), still works fine after upgrading Electron to v3.
**Actual behavior**
The renderer window shows a frozen view of what was underneath it when it opened. Hitting the usual keyboard shortcut to open the devtools doesn't work. Rolling back to the latest v2.x and everything works fine again.
**To Reproduce**
Simply launch electron v3.0 without any arguments (or `-d`), even the default bundled app doesn't work.
**Screenshots**

On the left is the working default app on v2. On the right is v3. I blurred the window for privacy reasons, the point is it's showing a frozen view of my desktop.
---
**Additional Information**
Debian 9.5 x86_64.
Kernel is `4.9.0-8-amd64`.
Integrated GPU is `Intel HD Graphics 4600` on an `i5-4200H` Haswell chip.
2nd GPU is `Nvidia GeForce 850M`.
Intel driver: [`xserver-xorg-video-intel`](https://packages.debian.org/stretch/xserver-xorg-video-intel) `2:2.99.917+git20161206-1 amd64` (latest in stretch) aka default xorg handler for integrated GPUs
Nvidia driver: [`nvidia-driver`](https://packages.debian.org/stretch/nvidia-driver) `384.130-1 amd64` (also latest in stretch) aka latest closed source driver from nvidia
*Side note: I'm using [`bumblebee`](https://packages.debian.org/stretch/bumblebee) to handle the Optimus logic and switching between GPUs.*
|
https://github.com/electron/electron/issues/14697
|
https://github.com/electron/electron/pull/15555
|
b97d7e7ecd6ed403cea700ab4aab0d0d20624f7f
|
51cb36fa9b2c9c829050b6612bc6770f048db245
| 2018-09-19T16:44:33Z |
c++
| 2018-11-19T16:53:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 14,685 |
["atom/browser/common_web_contents_delegate_mac.mm", "atom/browser/common_web_contents_delegate_views.cc", "spec/api-web-contents-spec.js", "spec/package-lock.json", "spec/package.json", "tools/run-if-exists.js"]
|
Paste shortcut doesn't work in DevTools in 3.0.0
|
* Output of `node_modules/.bin/electron --version`: 3.0.0
* Operating System (Platform and Version): macOS High Sierra 10.13.6
* Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): 2.0.0
**Expected Behavior**
Hitting `Cmd+V` should paste the contents of the clipboard in the DevTools Console tab.
**Actual behavior**
Nothing happens as if I haven't pressed anything.
**To Reproduce**
You can run any Electron app running 3.0.0 and the issue will be reproduced. I tried it with our own project and also a boilerplate project that contained nothing but the setup code to run the app.
|
https://github.com/electron/electron/issues/14685
|
https://github.com/electron/electron/pull/14766
|
0d2a0c758353667aaf37450612585562a9ef1b55
|
6be69048e648861c8e4e3f947f78dde8314545f8
| 2018-09-19T09:23:09Z |
c++
| 2018-09-27T15:41:09Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.