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
25,267
["shell/common/gin_converters/content_converter.cc", "spec-main/fixtures/crash-cases/webview-attach-destroyed/index.js"]
Electron 10 - sporadic `illegal access` errors resulting in exit code 7 during `process.exit`
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.0.0 and above * **Operating System:** * Pop_OS 20.04, Debian 10 * **Last Known Working Electron version:** * 9.2.1 ### Expected Behavior `process.exit(code)` exits the process with exit code `code`. ### Actual Behavior After updating to Electron 10.0.0, `process.exit(0)` sporadically results in an error that looks like this: ``` undefined:0 illegal access (Use `node --trace-uncaught ...` to show where the exception was thrown) ``` The process then exits with exit code `7`. Passing `--trace-uncaught` to `electron` seems to have no effect on the output. ### To Reproduce You can see this error popping up in the status checks on our Electron 10 upgrade PR: https://github.com/cypress-io/cypress/pull/8406 I attempted to make a reproducible example for this, but couldn't reproduce it outside of Cypress's tests. To reproduce using Cypress's tests: 1. Clone Cypress, check out the Electron 10 branch, install dependencies: ``` git clone https://github.com/cypress-io/cypress.git cd cypress git checkout renovate/electron-10.x yarn ``` 2. Open `packages/server/test/e2e/1_deprecated_spec.ts` and add a `.only` to the `e2e.it` on line 22, so it reads: ``` e2e.it.only('push and no return - warns user exactly once', { ``` 3. Run the test until it fails: ``` cd packages/server # run this until it fails: yarn test-e2e 1_dep --browser electron # if you're using zsh, this will do the trick: while yarn test-e2e 1_dep --browser electron; do echo 'passed'; done ``` You should see the test fail about 1/3 of the time with exit code `7` and the error mentioned above. You can enable Cypress's debug logging by setting env var `DEBUG=cypress:*`, from which you can see that the last thing that happens before the crash is a call to `process.exit(0)`. --- This is blocking us from upgrading to Electron 10, so please let me know if there is a way I can investigate further, or if I can provide any additional information to help debug.
https://github.com/electron/electron/issues/25267
https://github.com/electron/electron/pull/25431
1ba46a91b6a68bd9ca358f6a4d9f5f7cb0b968c3
ba55aaa53b26c5aed9d4b3f07a0ba795d33d6c91
2020-09-01T20:18:35Z
c++
2020-09-16T19:25:49Z
closed
electron/electron
https://github.com/electron/electron
25,254
["patches/chromium/.patches", "patches/chromium/fix_use_electron_generated_resources.patch", "patches/chromium/use_electron_resources_in_icon_reader_service.patch", "patches/chromium/use_electron_resources_in_pdf_util.patch"]
App crashes after printing using webContents.print()
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.0.1 * 10.1.0 * 10.1.1 * **Operating System:** * Windows 10 * **Last Known Working Electron version:** * 9.2.1 * 10.0.0 ### Expected Behavior Printing is succesful and the application does not crash after printing. ### Actual Behavior Printing is succesful but immediately after the application closes with Exit status 3221225477 ### To Reproduce Use web Contents.print() in affected versions. See Fiddle at https://gist.github.com/3f840923e139cf11121a46e9bec3f5f9 ### Additional Information It does not seem to affect the V11 Beta's (tested in Electron Fiddle).
https://github.com/electron/electron/issues/25254
https://github.com/electron/electron/pull/25622
4c9638e2b59d4e92262a5f38f910df03e99a06a7
69ee443c50a919318de4f66f778d7b1f36a1c74a
2020-09-01T12:09:57Z
c++
2020-09-28T02:00:05Z
closed
electron/electron
https://github.com/electron/electron
25,253
["shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_browser_window.h", "spec-main/api-browser-window-spec.ts"]
ready-to-show event is not fired and app window doesn't show
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.1.1 * **Operating System:** * Windows 10 (20H2) * **Last Known Working Electron version:** * 9.0.0 ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> Calling `mainWindow.once('ready-to-show' ...)` and inside it `mainWindow.show()` after creating a new BrowserWindow() on windows shouldshow the main window when it is ready to show. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> The `mainWindow.once('ready-to-show' ...)` is not fired and window doesn't show. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> - Clone my [boilerplate](https://github.com/alexdevero/electron-react-webpack-boilerplate). - Update electron to +10.0.0 - Start the app with `npm run` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Additional Information Content of `main.js`. ``` 'use strict' // Import parts of electron to use const { app, BrowserWindow } = require('electron') const path = require('path') const url = require('url') // Keep a global reference of the window object, if you don't, the window will // be closed automatically when the JavaScript object is garbage collected. let mainWindow // Keep a reference for dev mode let dev = false // Broken: // if (process.defaultApp || /[\\/]electron-prebuilt[\\/]/.test(process.execPath) || /[\\/]electron[\\/]/.test(process.execPath)) { // dev = true // } if (process.env.NODE_ENV !== undefined && process.env.NODE_ENV === 'development') { dev = true } // Temporary fix broken high-dpi scale factor on Windows (125% scaling) // info: https://github.com/electron/electron/issues/9691 if (process.platform === 'win32') { app.commandLine.appendSwitch('high-dpi-support', 'true') app.commandLine.appendSwitch('force-device-scale-factor', '1') } function createWindow() { // Create the browser window. mainWindow = new BrowserWindow({ width: 1024, height: 768, show: false, webPreferences: { nodeIntegration: true } }) // and load the index.html of the app. let indexPath if (dev && process.argv.indexOf('--noDevServer') === -1) { indexPath = url.format({ protocol: 'http:', host: 'localhost:8080', pathname: 'index.html', slashes: true }) } else { indexPath = url.format({ protocol: 'file:', pathname: path.join(__dirname, 'dist', 'index.html'), slashes: true }) } mainWindow.loadURL(indexPath) // Don't show until we are ready and loaded mainWindow.once('ready-to-show', () => { mainWindow.show() // Open the DevTools automatically if developing if (dev) { const { default: installExtension, REACT_DEVELOPER_TOOLS } = require('electron-devtools-installer') installExtension(REACT_DEVELOPER_TOOLS) .catch(err => console.log('Error loading React DevTools: ', err)) mainWindow.webContents.openDevTools() } }) // Emitted when the window is closed. mainWindow.on('closed', function() { // Dereference the window object, usually you would store windows // in an array if your app supports multi windows, this is the time // when you should delete the corresponding element. mainWindow = null }) } // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. app.on('ready', createWindow) // Quit when all windows are closed. app.on('window-all-closed', () => { // On macOS it is common for applications and their menu bar // to stay active until the user quits explicitly with Cmd + Q if (process.platform !== 'darwin') { app.quit() } }) app.on('activate', () => { // On macOS it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (mainWindow === null) { createWindow() } }) ```
https://github.com/electron/electron/issues/25253
https://github.com/electron/electron/pull/25448
2091fd7dd9bed0f889a14321a479c965ab45eeae
e5933c691097a272776330fc05133068316ca43d
2020-09-01T09:07:06Z
c++
2020-09-15T18:48:39Z
closed
electron/electron
https://github.com/electron/electron
25,248
["shell/common/api/electron_bindings.cc", "shell/common/api/electron_bindings.h", "shell/common/node_bindings.cc", "shell/common/node_bindings.h"]
AudioWorklet hangs UI when `nodeIntegrationInWorker` is enabled
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.0.1 * 10.0.0-beta.10 * 9.2.1 * **Operating System:** * Windows 10 (2004) * macOS 10.15.6 * **Last Known Working Electron version:** * 10.0.0-beta.9 * Issue is seen in 10.0.0-beta.10 ### Expected Behavior AudioWorklets can be created and destroyed multiple times while `nodeIntegrationInWorker` is enabled. ### Actual Behavior AudioWorklet can only be created and destroyed once. Upon creating a second AudioWorklet, the UI hangs indefinitely. ### To Reproduce Electron Fiddle: https://gist.github.com/samuelmaddock/5430479c0a08eca3f693df2518c9887d 1. Load Audio Worklet examples directory: https://googlechromelabs.github.io/web-audio-samples/audio-worklet/ 2. Open a demo and click start. 3. Navigate back and return to the demos directory. 4. Open another demo and click start. UI should no longer be responsive.
https://github.com/electron/electron/issues/25248
https://github.com/electron/electron/pull/25332
a3389d017f3a33b9aa5698e0579a2f5924a3ea32
70e3aa01821808be311392e4e82bb8ee016e3ddf
2020-09-01T01:15:44Z
c++
2020-09-14T00:53:50Z
closed
electron/electron
https://github.com/electron/electron
25,184
["shell/browser/net/proxying_url_loader_factory.cc"]
Second socket on a session does not send Proxy-Authenticate for ntlm
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.0, 9.2.0, 9.2.1 0 All broken * **Operating System:** * Windows 10 (1809) * **Last Known Working Electron version:** * 8.5.0 ### Expected Behavior When requesting url's and having a socket connect, when it is rejected with proxy authentication required, consistently try again with the proxy authentication credentials. ### Actual Behavior See logs - good and bad. In the good logs, electron always makes a 2nd socket request with the proxy authentication headers and succeeds. In the bad logs, electron does not make a 2nd socket request. Note that for the first socket request on a web page, it works, but when a second socket is opened to make requests it seems to fail. ### To Reproduce Be behind a NTLM proxy that requires authentication for a domain Visit a website that makes multiple requests so that multiple sockets are opened.
https://github.com/electron/electron/issues/25184
https://github.com/electron/electron/pull/29266
d4a1b411297ae7651441cf697b5251445c7a575c
507cbdc80a45580acfecf6c1c136471146910c83
2020-08-28T07:49:19Z
c++
2021-06-21T05:06:52Z
closed
electron/electron
https://github.com/electron/electron
25,152
["shell/browser/ui/file_dialog_mac.mm"]
Save dialog: cannot provide a extension to pick when specifying multiple
### Issue Details * **Electron Version:** * `9.2.1` * **Operating System:** * `macOS 10.15` ### Expected Behavior I can specify an extension to pick in the save dialog when multiple are provided. ### Actual Behavior A random extension is picked from the list. ### To Reproduce Bring up a dialog on macOS like this: ```js dialog.showSaveDialog(mainWindow, { filters: [ { name: 'Python', extensions: [ 'py', 'rpy', 'pyw', 'cpy', 'gyp', 'gypi', 'pyi', 'ipy' ] }, ] }); ``` I would expect that the first extension is picked (`py`) and not `gyp`. ### Screenshots ![image](https://user-images.githubusercontent.com/900690/91400284-ac542200-e83f-11ea-81bb-2f987099b6d7.png)
https://github.com/electron/electron/issues/25152
https://github.com/electron/electron/pull/25164
6cc960f2145189196ab511ccfdabe3f53d90b1ef
c5320b395183cef7b36736050cfd236eb5d37b45
2020-08-27T06:31:34Z
c++
2020-08-28T16:40:47Z
closed
electron/electron
https://github.com/electron/electron
25,143
["lib/renderer/web-view/guest-view-internal.ts", "lib/renderer/web-view/web-view-element.ts", "lib/renderer/web-view/web-view-impl.ts", "spec-main/webview-spec.ts", "typings/internal-electron.d.ts"]
Webview: the 'console-message' event doesn't have the appropriate properties when contextIsolation is true
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.0.0 * **Operating System:** * Windows 10 (1909) * **Last Known Working Electron version:** * unknown ### Expected Behavior When listen to the 'console-message' event of a webview element the event should have a 'message' property. ### Actual Behavior This works perfectly when contextIsolation is set to 'false' (or not at all in 10.0.0). ### To Reproduce * Create a BrowserWindow with contextIsolation: false in webPreferences. * Create a webview in the BrowserWindow. * Add a 'console-message' listener to the webview. * Load an URL in webview and print something in the console from the guest page. * The console message should appear as a property of the event (event.message). * Now set contextIsolation: true. * Load the URL in the webview. * The 'console-message' event will be fired, but the event.message property isn't available anymore. <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> https://gist.github.com/AmarBouchibane/80b89651d776f0b1cdf11748e6a2d090 <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/25143
https://github.com/electron/electron/pull/26289
c856b5fa53867f9e6672df5364f91dec067c6ee6
34156c424cb1964cdd203293cbed138d19ee9c9d
2020-08-26T15:31:13Z
c++
2020-11-04T02:15:20Z
closed
electron/electron
https://github.com/electron/electron
25,141
["shell/browser/electron_browser_client.cc", "spec/chromium-spec.js"]
Renderer crash after calling navigator.setAppBadge(42)
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [ ] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [ ] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [ ] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9, 10 * **Operating System:** * Windows * **Last Known Working Electron version:** * none ### Expected Behavior Calling navigator.setAppBadge(42) should create an application badge on taskbar with the number 42. ### Actual Behavior Render process crashed after calling navigator.setAppBadge(42) ### To Reproduce Start Electron, open console and try to execute navigator.setAppBadge(42) <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. --> https://web.dev/badging-api/
https://github.com/electron/electron/issues/25141
https://github.com/electron/electron/pull/25294
5a8046c994d11263c5448772c46d572fa1fb25a6
f6df79b92704fc9e2ea6094a5511968511bc50a8
2020-08-26T12:52:26Z
c++
2020-09-08T15:13:56Z
closed
electron/electron
https://github.com/electron/electron
25,130
["lib/browser/api/net.ts", "shell/browser/api/electron_api_url_loader.cc", "spec-main/api-net-spec.ts", "typings/internal-ambient.d.ts"]
ClientRequest responses cannot be throttled
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details I'm trying to throttle the download speeds and the expected method of throttling the stream does not work. In my example, I use `stream-throttle` to reduce my download speed to 1 KB/s. The file gets written out at this speed - but when I look at network tab of the activity monitor I see the download complete as fast as possible. I looked into why that is, and I see that the IncomingMessage class is implementing the Readable stream property correctly. However, its buffer will get filled without stopping by the `SimpleURLLoaderWrapper`. There doesn't seem to be a way for the IncomingMessage class to message back that it is full or that the request should pause. I can use a node library like https or request and the download will be throttled correctly. * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->9.2.0 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->macOS 10.14.6 ### Expected Behavior When the IncomingMessage is full (`this._shouldPush = false`), the underlying networking should be throttled. <!-- A clear and concise description of what you expected to happen. --> ### Actual Behavior The incomingMessage `_data` buffer continues to fill up and networking continues. I've gotten it as high as 1GB with it slowly streaming out. <!-- A clear and concise description of what actually happened. --> ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> Here's my example code that downloads a 100MB files and attempts to write it to disk a 1KB/s. https://gist.github.com/burnhamup/fcb9269f294382d3bdc8fa66cb8655df ``` const exampleFunction = async () => { const {net} = require('electron'); const {Throttle} = require('stream-throttle'); const path = require('path'); const fs = require('fs'); const url = 'http://ipv4.download.thinkbroadband.com/100MB.zip'; const request = net.request(url); request.end(); const response = await new Promise(resolve => { request.on('response', resolve); }); const throttle = new Throttle({rate: 1000}); // 1 KB/s const downloadLocation = path.join(app.getPath('downloads'), 'example.zip'); const filestream = fs.createWriteStream(downloadLocation); response.pipe(throttle); throttle.pipe(filestream); } ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` -->
https://github.com/electron/electron/issues/25130
https://github.com/electron/electron/pull/25531
53ee708fe8135d10e651bf399dae06499b595d8d
6356cd4018bd80f531085ed6afd1cccb0def30ae
2020-08-25T23:24:33Z
c++
2020-10-06T00:47:41Z
closed
electron/electron
https://github.com/electron/electron
25,127
["patches/chromium/.patches", "patches/chromium/chore_expose_v8_initialization_isolate_callbacks.patch", "patches/node/.patches", "patches/node/chore_expose_v8_initialization_isolate_callbacks.patch", "shell/common/node_bindings.cc"]
v10.0.0: cannot compile wasm when contextIsolation is enabled
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x ] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [ x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [ x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 10.0.0 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> macOS 10.14.6 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> 9.2.1 ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> Wasm should be allowed to compile when contextIsolation is enabled, as it did in v9.2.1. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Wasm compilation fails: <img width="1125" alt="Screen Shot 2020-08-25 at 4 24 19 PM" src="https://user-images.githubusercontent.com/3028875/91225978-63db1e00-e6f2-11ea-9a70-7595d51969f9.png"> Turning off contextIsolation fixes the problem. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. --> Note that this error is different from #25066, in which it was clarified that Node is not available to the web page and emscripten when contextIsolation is turned on. In this case, it looks like the browser is not permitting wasm compilation at all.
https://github.com/electron/electron/issues/25127
https://github.com/electron/electron/pull/25777
2ca2a88afcc474970f129ceae2f10432efc9279e
042d25e926a268a869775bc16d08046172443359
2020-08-25T20:55:35Z
c++
2020-10-08T19:26:01Z
closed
electron/electron
https://github.com/electron/electron
25,115
["patches/chromium/mas_no_private_api.patch"]
Electron 10.0.0 App Store Rejected - Private API - Framework/_CGFontRenderingGetFontSmoothingDisabled
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. ### Issue Details * **Electron Version:** * 10.0.0 ### Rejection Email Guideline 2.5.1 - Performance - Software Requirements Your app includes a version of an SDK from Electron that violates the App Store Review Guidelines. The version of the Electron SDK you are using in your app attempts to hide the use of private APIs. This is a violation Section 2.5.1 of the App Store Review Guidelines. • Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework/_CGFontRenderingGetFontSmoothingDisabled Guideline 2.5.1: Apps may only use public APIs. ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/25115
https://github.com/electron/electron/pull/25117
c8a0b2b71d8622bbb848e364a842ea12bd5966fb
be8db589ebe2858af76d698b097416b554311355
2020-08-25T00:05:30Z
c++
2020-08-26T04:13:42Z
closed
electron/electron
https://github.com/electron/electron
25,069
["BUILD.gn", "spec/api-native-image-spec.js"]
nativeImage.createFromBuffer crashes on Windows on ARM
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details This issue was discovered while working on #25018 * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->11.0.0-nightly.20200723 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->Windows on ARM * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 -->11.0.0-nightly.20200721. ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> Calling `nativeImage.createFromBuffer` with an invalid image or a bitmap image should not crash Electron on Windows on ARM ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Calling `nativeImage.createFromBuffer` with an invalid image or a bitmap image crashes Electron on Windows on ARM ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> The following example of calling nativeImage.createFromBuffer with a bitmap will crash: ``` const imageA = nativeImage.createFromPath(path.join(__dirname, 'fixtures', 'assets', 'logo.png')); const imageC = nativeImage.createFromBuffer(imageA.toBitmap(), { ...imageA.getSize(), scaleFactor: 2.0 }); ``` The following example will also crash when the file passed into `nativeImage.createFromPath` isn't an image: ``` const image = nativeImage.createFromPath('/Users/somebody/readme.txt') ``` webContents.startDrag will also cause this crash if the icon passed in isn't an image: ``` const w = new BrowserWindow({ show: false }); w.webContents.startDrag({ file: __filename, icon: __filename }); ``` ### Additional Information Running test cases through windbg reveals the following stack traces: #### nativeImage.createFromBuffer(imageA.toBitmap()....) <img width="950" alt="callstack2" src="https://user-images.githubusercontent.com/609052/90827170-bccd3f80-e309-11ea-8b48-652c4d54ed5e.png"> #### webContents.startDrag ![callstack3](https://user-images.githubusercontent.com/609052/90827581-775d4200-e30a-11ea-836a-bb8df594b5c4.png) #### Assessment In both cases a longjmp is failing. Apparently Windows thinks it is invalid for the process, as far as I can understand from this: https://docs.microsoft.com/en-us/windows/win32/devnotes/guardchecklongjumptarget Here's where setjmp gets called: https://source.chromium.org/chromium/chromium/src/+/master:ui/gfx/codec/jpeg_codec.cc;l=179 and here's where longjmp gets called: https://source.chromium.org/chromium/chromium/src/+/master:ui/gfx/codec/jpeg_codec.cc;l=43 This issue was introduced in the chromium roll: #24575 In that chromium roll libjpeg_turbo was updated: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo/+log/0241a1304fd183ee24fbdfe6891f18fdedea38f9..9d4f8005bc6c888e66b00fd00188531ee9bd3344?n=10000&pretty=fuller (edited) That update includes an update to TurboJPEG 2.0.5 which includes this change: https://github.com/libjpeg-turbo/libjpeg-turbo/commit/ae87a958613b69628b92088b313ded0d4f59a716 which may be the root of the issue.
https://github.com/electron/electron/issues/25069
https://github.com/electron/electron/pull/25396
dd781c4f632861e809d7b400859a08cf0376b6ce
acf5d487d28b78aaf81929e5fc46262244b4b63e
2020-08-20T21:32:03Z
c++
2020-09-10T18:42:41Z
closed
electron/electron
https://github.com/electron/electron
25,062
["shell/browser/notifications/mac/notification_center_delegate.mm", "shell/browser/notifications/notification.cc", "shell/browser/notifications/notification.h", "shell/browser/notifications/win/windows_toast_notification.cc"]
Notification reply stop working after click on notification
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.5.0 * **Operating System:** * macOS 10.15.5 * **Last Known Working Electron version:** * none ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> After `click` on the notification that is in the reply mode one of the following should apply: - don't destroy notification and provide additional property with `event`, that includes information if notification is in the reply mode or not. - close notification completely (remove it from the screen) ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Clicking on notification when in reply "mode", doesn't remove notification from the screen, but all the listeners are destroyed. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> Issues is reproducible with `NSUserNotificationAlertStyle` set to `alert` or `banner` Main Process: ```ts let notification; app.on('ready', () => { notification = new Notification({ title: 'Title', body: 'Notification body', hasReply: true, }); notification.on('reply', (ev, reply) => { console.log('Reply: ', reply); }); notification.show(); }); ``` 1. When notification appears click on the `reply` button. 2. Start typing text 3. Click on the notification body 4. Click `reply` to send text from input Result: `reply` callback is not executed. Nothing appears in the console. ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> Notification in reply mode (waiting for input): <img width="358" alt="Screenshot 2020-08-20 at 14 29 33" src="https://user-images.githubusercontent.com/27143015/90770210-b9c65500-e2f1-11ea-98c9-111fbb74a0a1.png"> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/25062
https://github.com/electron/electron/pull/25086
a23c66e4e1d1ac8ff3f8829632da09183bcc9429
bea6c9e4e17d94d6d9a8d8938acb18a1634e024e
2020-08-20T13:00:03Z
c++
2020-08-24T04:27:46Z
closed
electron/electron
https://github.com/electron/electron
25,053
["docs/api/structures/product.md", "shell/browser/api/electron_api_in_app_purchase.cc", "shell/browser/mac/in_app_purchase_product.h", "shell/browser/mac/in_app_purchase_product.mm"]
Expose currencyCode for in-app-purchase products
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [ x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * x[ ] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [ x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description <!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> Since currency codes are actually not present in the receipt Apple returns, it's much easier to do server-side calculations for validating receipts that require currency codes for business-logic if we can pass that into our verification calls to the backend. Currency look-ups are often in-exact and Apple doesn't actually provide this information in an easy to find way with the exception of putting it into the product data that come back from the call to [getProducts](https://www.electronjs.org/docs/api/in-app-purchase#inapppurchasegetproductsproductids). As of right now, the data being returned is not forwarding the currencyCode for each product. ### Proposed Solution <!-- Describe the solution you'd like in a clear and concise manner --> Forward the currencyCode found on [SKProductData#priceLocale](https://developer.apple.com/documentation/storekit/skproduct/1506145-pricelocale). That object has a field [currencyCode](https://developer.apple.com/documentation/foundation/nslocale/1642836-currencycode). Providing that value in the Product object that electron provides will allow developers to know how to handle purchases better. ### Alternatives Considered <!-- A clear and concise description of any alternative solutions or features you've considered. --> Not aware of any other way of getting a user's Apple locale. ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/25053
https://github.com/electron/electron/pull/25058
5d3301769bf43c1c8559aa47e9f6750e05fa28c9
a17e97c3b254a711b27d26409e8e9f8ce4945d80
2020-08-20T02:57:01Z
c++
2020-08-21T17:41:40Z
closed
electron/electron
https://github.com/electron/electron
25,039
["docs/api/power-monitor.md", "shell/browser/api/electron_api_power_monitor_mac.mm"]
MacOS powerMonitor events, fast user switching detection
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description On MacOS, I can't find any way to detect when "fast user switching" has occurred. The powerMonitor events lock-screen/unlock-screen don't fire (technically the screen isn't being locked). ### Proposed Solution I'd propose 2 new events be added that signal user switch notifications (one for kEventSystemUserSessionActivated and one for kEventSystemUserSessionDeactivated). See https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPMultipleUsers/Concepts/UserSwitchNotifications.html#//apple_ref/doc/uid/20002210-CJBJDAGF for more details. ### Alternatives Considered A few potential alternatives are mentioned at https://stackoverflow.com/questions/8519051/api-to-detect-active-session-in-mac-os-x-with-fast-user-switch.
https://github.com/electron/electron/issues/25039
https://github.com/electron/electron/pull/25321
f6f05c34e645e5943d5cd7a628c8131b81f82351
6acf34fa4c77e88ee8e28006edc61742b7de4e36
2020-08-19T17:50:41Z
c++
2020-09-22T17:12:39Z
closed
electron/electron
https://github.com/electron/electron
25,028
["docs/api/menu.md"]
Unable to to use the '&' character literally in menu labels
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.3.4 * **Operating System:** * All * **Last Known Working Electron version:** * Unknown ### Expected Behavior Some sort of way to escape the ampersand character when creating menu items. ### Actual Behavior No (documented) way to escape ampersand characters. Electron always interprets ampersands as accelerators and strips them out of the label. ### To Reproduce 1. Create a menu item with "&" as the label. <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/25028
https://github.com/electron/electron/pull/27770
6a9ba42273f6e59dc68c93aaba9475bd7b601ef2
0dd283a7a6736b5a523653d9e6e4c7f9baea772d
2020-08-18T22:55:08Z
c++
2021-02-19T06:41:16Z
closed
electron/electron
https://github.com/electron/electron
25,013
["docs/api/web-contents.md", "docs/api/webview-tag.md", "patches/chromium/.patches", "patches/chromium/fix_properly_honor_printing_page_ranges.patch", "shell/browser/api/electron_api_web_contents.cc"]
webContents.print()'s pageRanges property is not honored
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->9.2.0 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->win10 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior [this is config](https://www.electronjs.org/docs/api/web-contents#contentsprintoptions-callback) <!-- A clear and concise description of what you expected to happen. -->The saved PDF has a custom `header`, and the `pageRanges` is work. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> `header` and `pageRanges` is not work. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> [my electron fiddle](https://gist.github.com/36d96e2fe459dab8ffed2a764d751528) <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ![image](https://user-images.githubusercontent.com/19225429/90504323-7d74e680-e183-11ea-86df-6f6925e77616.png) ### Additional Information <!-- Add any other context about the problem here. --> Finally, who can tell me how to determine the total number of pages generated by the printer system of Chrome?
https://github.com/electron/electron/issues/25013
https://github.com/electron/electron/pull/25064
8f727b35696435cdf32468d43db077c76299cd00
a4b6fce907080af9c5329aa32767ba3e786e1bb5
2020-08-18T10:50:05Z
c++
2020-08-28T03:21:29Z
closed
electron/electron
https://github.com/electron/electron
24,991
["shell/browser/electron_browser_client.cc", "spec-main/chromium-spec.ts"]
Two BrowserView loadUrl (or loadFile) without await will cause upload file error in renderer process
OS: `windows 10` Electron: `9.2.0` `9.1.2` `9.0.0` `8.5.0` `7.3.0` Main process code: ```javascript const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true, webSecurity:false } }) let view1 = new BrowserView({ webPreferences: { nodeIntegration: true, devTools: true, webSecurity: false, }, }); mainWindow.setBrowserView(view1); let size = mainWindow.getSize(); view1.setBounds({ x: 0, y: 0, width: size[0], height: size[1], }); view1.setAutoResize({ width: true, height: true, }); view1.webContents.loadFile(`index.html`) view1.webContents.openDevTools({ mode: "undocked" }) let view2 = new BrowserView({ webPreferences: { nodeIntegration: true, devTools: true, webSecurity: false, }, }); view2.webContents.loadFile(`index.html`); ``` Renderer process code ```javascript //HTML // <input id="fileInput" type="file" /> postFile = (data)=> { let _url = 'https://******.com/upload' return fetch(_url, { method: 'POST', body: data, }).then(response => response.json()) .catch(error => { console.error(error) }) } let fileInput = document.getElementById("fileInput") fileInput.addEventListener('change', function() { var file = fileInput.files[0]; let formData = new FormData() formData.append('filetype', 'image') formData.append('file', file) postFile(formData); }); ``` Error: > POST https://******.com/upload net::ERR_ACCESS_DENIED Description: When add `await` before `view1.webContents.loadFile`,the renderer process will work correctly.
https://github.com/electron/electron/issues/24991
https://github.com/electron/electron/pull/25139
95073decd390734dd78d993194be069a23bf5e4c
8f727b35696435cdf32468d43db077c76299cd00
2020-08-17T01:34:43Z
c++
2020-08-28T01:43:08Z
closed
electron/electron
https://github.com/electron/electron
24,965
["shell/common/api/electron_bindings.cc", "shell/common/api/electron_bindings.h", "shell/common/node_bindings.cc", "shell/common/node_bindings.h"]
Web worker memory is not released when webworker is terminated
### Issue Details * **Electron Version:** 8.4.1 & 9.2.0. **This is actually a regression** the bug seems to not be present in 8.4.0 and 9.1 My speculation is that it has something to do with some fixes done to address crashes due to terminated workers. * **Operating System:** Tested mainly on macos, but probably apply to windows as well * **Last Known Working Electron version:** 8.4.0 and 9.1 (probably also 9.1.1 and or 9.1.2, not sure in which it stopped working) ### Expected Behavior When a web worker is terminated with `terminate()` its memory should be freed. ### Actual Behavior RAM is not released ### To Reproduce Repo to reproduce: https://github.com/oltreseba/electron-web-worker-example - Every 3 second a worker is terminated an restarted - Old workers are still visible in devtool memory tab - Old workers keep using RAM according to macos activity monitor (or equivalent, like task manager on window) General steps to reproduce: - Create worker - Terminate worker - Notice that it's not clear from memory tab and its memory is not actually freed from the application. ### Screenshots **In electron 8.4.1:** <img width="328" alt="Screenshot 2020-08-12 at 22 27 21" src="https://user-images.githubusercontent.com/5563210/90064399-01921e80-dceb-11ea-982b-8d45f784b99c.png"> And: <img width="292" alt="Screenshot 2020-08-12 at 22 27 56" src="https://user-images.githubusercontent.com/5563210/90064445-140c5800-dceb-11ea-9eb4-9fc1118607ea.png"> **In electron 8.4.0:** <img width="358" alt="Screenshot 2020-08-12 at 22 29 03" src="https://user-images.githubusercontent.com/5563210/90064550-3b632500-dceb-11ea-8907-7f11907b07dd.png"> <img width="303" alt="Screenshot 2020-08-12 at 22 29 50" src="https://user-images.githubusercontent.com/5563210/90064627-5afa4d80-dceb-11ea-89ab-b57f4c082b18.png"> ### Additional Information Of course 8.4.0 is less stable and tends to crash when workers are terminated. ### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success.
https://github.com/electron/electron/issues/24965
https://github.com/electron/electron/pull/25332
a3389d017f3a33b9aa5698e0579a2f5924a3ea32
70e3aa01821808be311392e4e82bb8ee016e3ddf
2020-08-12T20:34:57Z
c++
2020-09-14T00:53:50Z
closed
electron/electron
https://github.com/electron/electron
24,939
["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.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "shell/browser/native_window_views.cc", "shell/browser/native_window_views.h"]
Why visibleOnFullScreen is deprecated, it works fine on my mac 10.15.4
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description <!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> My electron version is 6.1.11, and I can't update because visibleOnFullScreen option on setVisibleOnAllWorkspaces is deprecated. It works fine on mac 10.15.4 and newer version. To code like this: app.dock.hide() window.setAlwaysOnTop(true, 'floating') window.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true }) The visibleOnFullScreen option is very important to my electron app and I'm so appreciate if you can check this feature again!
https://github.com/electron/electron/issues/24939
https://github.com/electron/electron/pull/24956
52d7afa4efbdaee6fd3d3b3497d0ed6cb17298e6
53668445bac8a9cd602300fe13f57bd2c01e8035
2020-08-11T15:57:52Z
c++
2020-08-19T20:31:25Z
closed
electron/electron
https://github.com/electron/electron
24,934
["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_observer.h", "shell/browser/native_window_views.h", "shell/browser/native_window_views_win.cc", "shell/browser/ui/cocoa/electron_ns_window_delegate.mm", "spec-main/api-browser-window-spec.ts"]
BrowserWindow resized event
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description <!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> BrowserWindow currently offers "moved" event related to moving a window, but it only has "will-resize" and "resize" events. I want to save the current dimensions of a window when its size changes, but "will-resize" and "resize" events get fired at every single pixel change. This results in an unnecessarily large number of saving function calls or a need for debouncing the event. ### Proposed Solution <!-- Describe the solution you'd like in a clear and concise manner --> Adding "resized" event to BrowserWindow will solve the problem stated above. ### Alternatives Considered <!-- A clear and concise description of any alternative solutions or features you've considered. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24934
https://github.com/electron/electron/pull/26216
bb3fb548d817c101b11ed54af1eb77f3ee7ccc6e
83d30c5c2a82a42ab074b6201f6476004a2bee89
2020-08-11T11:08:32Z
c++
2020-11-12T00:27:24Z
closed
electron/electron
https://github.com/electron/electron
24,851
["shell/browser/api/electron_api_app.cc"]
Electron 10: Segmentation fault if client certificate is requested
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 10.0.0-beta.17 * **Operating System:** * Windows 10 (1903) x64, macOS 10.15.5 * **Last Known Working Electron version:** * 9.1.2 ### Expected Behavior An Electron client should not crash if a server requests a client-certificate from it at the beginning of an (M)TLS session. ### Actual Behavior Starting with Electron 10, a segmentation fault occurs if a remote server requests a client-certificate. The described behavior occurs on Windows 10 and macOS, possibly on Linux as well (this was not tested yet by myself). What follows is the crash-log produced on macOS: ``` Process: Electron [58254] Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron Identifier: com.github.Electron Version: 10.0.0-beta.17 (10.0.0-beta.17) Code Type: X86-64 (Native) Parent Process: ??? [58253] Responsible: iTerm2 [3694] User ID: 456810719 Date/Time: 2020-08-05 15:48:24.357 +0200 OS Version: Mac OS X 10.15.5 (19F101) Report Version: 12 Bridge OS Version: 3.0 (14Y908) Anonymous UUID: 2D5AD106-7B18-3EFA-7FC1-B9A5244D0155 Sleep/Wake UUID: E2E9CF1F-A519-4833-A9A7-8E7A2A017C67 Time Awake Since Boot: 110000 seconds Time Since Wake: 27000 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 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [58254] VM Regions Near 0: --> __TEXT 0000000102d79000-0000000102da1000 [ 160K] r-x/r-x SM=COW /Users/USER/*/Electron.app/Contents/MacOS/Electron Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 com.github.Electron.framework 0x000000010957ea30 ElectronInitializeICUandStartNode + 1385776 1 com.github.Electron.framework 0x000000010a225d9e v8::internal::FatalProcessOutOfMemory(v8::internal::Isolate*, char const*) + 862 2 com.github.Electron.framework 0x000000010a394cf2 v8::internal::HandleScope::Extend(v8::internal::Isolate*) + 402 3 com.github.Electron.framework 0x000000010a228178 v8::HandleScope::CreateHandle(v8::internal::Isolate*, unsigned long) + 56 4 com.github.Electron.framework 0x00000001094bd572 ElectronInitializeICUandStartNode + 594034 5 com.github.Electron.framework 0x0000000109436b16 ElectronInitializeICUandStartNode + 42518 6 com.github.Electron.framework 0x00000001094f48e5 ElectronInitializeICUandStartNode + 820197 7 com.github.Electron.framework 0x000000010b5ac061 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 8937153 8 com.github.Electron.framework 0x000000010b5ac469 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 8938185 9 com.github.Electron.framework 0x000000010bd96072 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17235666 10 com.github.Electron.framework 0x000000010bda6ae8 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17303880 11 com.github.Electron.framework 0x000000010bda67a1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17303041 12 com.github.Electron.framework 0x000000010bde5bae v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17562126 13 com.github.Electron.framework 0x000000010bde14ba v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17543962 14 com.github.Electron.framework 0x000000010bde556f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17560527 15 com.apple.CoreFoundation 0x00007fff34738de2 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 16 com.apple.CoreFoundation 0x00007fff34738d81 __CFRunLoopDoSource0 + 103 17 com.apple.CoreFoundation 0x00007fff34738b9b __CFRunLoopDoSources0 + 209 18 com.apple.CoreFoundation 0x00007fff347378ca __CFRunLoopRun + 927 19 com.apple.CoreFoundation 0x00007fff34736ece CFRunLoopRunSpecific + 462 20 com.apple.HIToolbox 0x00007fff33365abd RunCurrentEventLoopInMode + 292 21 com.apple.HIToolbox 0x00007fff333657d5 ReceiveNextEventCommon + 584 22 com.apple.HIToolbox 0x00007fff33365579 _BlockUntilNextEventMatchingListInModeWithFilter + 64 23 com.apple.AppKit 0x00007fff319ad829 _DPSNextEvent + 883 24 com.apple.AppKit 0x00007fff319ac070 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352 25 com.apple.AppKit 0x00007fff3199dd7e -[NSApplication run] + 658 26 com.github.Electron.framework 0x000000010bde6346 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17564070 27 com.github.Electron.framework 0x000000010bde50f2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17559378 28 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 29 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 30 com.github.Electron.framework 0x000000010b13e07a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4292314 31 com.github.Electron.framework 0x000000010b13fb12 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4299122 32 com.github.Electron.framework 0x000000010b13b401 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4280929 33 com.github.Electron.framework 0x000000010afd9afe v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2832734 34 com.github.Electron.framework 0x000000010afd97fe v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 2831966 35 com.github.Electron.framework 0x000000010d596165 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 42401733 36 com.github.Electron.framework 0x000000010a159145 ElectronInitializeICUandStartNode + 13814853 37 com.github.Electron.framework 0x000000010942c4ca ElectronMain + 74 38 com.github.Electron 0x0000000102d79fc0 0x102d79000 + 4032 39 libdyld.dylib 0x00007fff6e733cc9 start + 1 Thread 1: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 5:: ThreadPoolServiceThread 0 libsystem_kernel.dylib 0x00007fff6e87db96 kevent64 + 10 1 com.github.Electron.framework 0x000000010bdf8126 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17637254 2 com.github.Electron.framework 0x000000010bdf800b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17636971 3 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 4 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 5 com.github.Electron.framework 0x000000010bdb0f0d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17345901 6 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 7 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 8 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 9 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 6:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 7:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba8ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385229 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 8:: Chrome_IOThread 0 libsystem_kernel.dylib 0x00007fff6e87db96 kevent64 + 10 1 com.github.Electron.framework 0x000000010bdf8126 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17637254 2 com.github.Electron.framework 0x000000010bdf800b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17636971 3 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 4 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 5 com.github.Electron.framework 0x000000010b141d67 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 4307911 6 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 7 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 8 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 9 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 9:: MemoryInfra 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdeacae v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17582862 4 com.github.Electron.framework 0x000000010bd5d92f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17004431 5 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 6 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 7 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 8 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 9 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 10 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 10: 0 libsystem_kernel.dylib 0x00007fff6e879766 kevent + 10 1 com.github.Electron.framework 0x000000010f8ddb87 uv_free_interface_addresses + 1303 2 com.github.Electron.framework 0x000000010f8cd8fd uv_run + 365 3 com.github.Electron.framework 0x000000010f82c8b3 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 675 4 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 5 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 11: 0 libsystem_kernel.dylib 0x00007fff6e877882 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e938425 _pthread_cond_wait + 698 2 com.github.Electron.framework 0x000000010f8d8f09 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010f82ca72 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1122 4 com.github.Electron.framework 0x000000010f82a8f9 node::Buffer::New(v8::Isolate*, char*, unsigned long, void (*)(char*, void*), void*) + 540553 5 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 12: 0 libsystem_kernel.dylib 0x00007fff6e877882 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e938425 _pthread_cond_wait + 698 2 com.github.Electron.framework 0x000000010f8d8f09 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010f82ca72 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1122 4 com.github.Electron.framework 0x000000010f82a8f9 node::Buffer::New(v8::Isolate*, char*, unsigned long, void (*)(char*, void*), void*) + 540553 5 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 13: 0 libsystem_kernel.dylib 0x00007fff6e877882 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e938425 _pthread_cond_wait + 698 2 com.github.Electron.framework 0x000000010f8d8f09 uv_cond_wait + 9 3 com.github.Electron.framework 0x000000010f82ca72 node::MultiIsolatePlatform::CancelPendingDelayedTasks(v8::Isolate*) + 1122 4 com.github.Electron.framework 0x000000010f82a8f9 node::Buffer::New(v8::Isolate*, char*, unsigned long, void (*)(char*, void*), void*) + 540553 5 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 14: 0 libsystem_kernel.dylib 0x00007fff6e874e36 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x000000010f8d9460 uv_sem_wait + 16 2 com.github.Electron.framework 0x000000010f88eec3 node::inspector::Agent::GetWsUrl() const + 83 3 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 4 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 15:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff34738f85 __CFRunLoopServiceMachPort + 247 3 com.apple.CoreFoundation 0x00007fff34737a52 __CFRunLoopRun + 1319 4 com.apple.CoreFoundation 0x00007fff34736ece CFRunLoopRunSpecific + 462 5 com.apple.Foundation 0x00007fff36dcf1c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212 6 com.github.Electron.framework 0x000000010bde61b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17563673 7 com.github.Electron.framework 0x000000010bde50f2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17559378 8 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 9 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 10 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 11 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 12 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 13 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 16:: CrShutdownDetector 0 libsystem_kernel.dylib 0x00007fff6e87581e read + 10 1 com.github.Electron.framework 0x00000001094ffeac ElectronInitializeICUandStartNode + 866732 2 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 3 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 4 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 17:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff34738f85 __CFRunLoopServiceMachPort + 247 3 com.apple.CoreFoundation 0x00007fff34737a52 __CFRunLoopRun + 1319 4 com.apple.CoreFoundation 0x00007fff34736ece CFRunLoopRunSpecific + 462 5 com.apple.Foundation 0x00007fff36dcf1c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212 6 com.github.Electron.framework 0x000000010bde61b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17563673 7 com.github.Electron.framework 0x000000010bde50f2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17559378 8 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 9 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 10 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 11 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 12 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 13 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 18:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 19:: CompositorTileWorker1 0 libsystem_kernel.dylib 0x00007fff6e877882 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e938425 _pthread_cond_wait + 698 2 com.github.Electron.framework 0x000000010bddeed7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17534263 3 com.github.Electron.framework 0x000000010d047bd1 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 36837937 4 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 5 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 6 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 20:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 21:: ThreadPoolSingleThreadForegroundBlocking0 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdeacae v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17582862 4 com.github.Electron.framework 0x000000010bdba3fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384029 5 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 6 com.github.Electron.framework 0x000000010bdba99d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385469 7 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 8 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 9 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 22: 0 libsystem_kernel.dylib 0x00007fff6e87d0fe __select + 10 1 com.github.Electron.framework 0x000000010959bdea ElectronInitializeICUandStartNode + 1505514 2 com.github.Electron.framework 0x000000010959adc8 ElectronInitializeICUandStartNode + 1501384 3 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 4 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 23:: ThreadPoolSingleThreadSharedBackgroundBlocking1 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdeacae v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17582862 4 com.github.Electron.framework 0x000000010bdba3fd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384029 5 com.github.Electron.framework 0x000000010bdbaa4f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385647 6 com.github.Electron.framework 0x000000010bdba8dd v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385277 7 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 8 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 9 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 24: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 25: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 26: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 27: 0 libsystem_pthread.dylib 0x00007fff6e933b68 start_wqthread + 0 Thread 28:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbaa4f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385647 5 com.github.Electron.framework 0x000000010bdba8ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385229 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 29:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff34738f85 __CFRunLoopServiceMachPort + 247 3 com.apple.CoreFoundation 0x00007fff34737a52 __CFRunLoopRun + 1319 4 com.apple.CoreFoundation 0x00007fff34736ece CFRunLoopRunSpecific + 462 5 com.apple.Foundation 0x00007fff36dcf1c8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212 6 com.github.Electron.framework 0x000000010bde61b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17563673 7 com.github.Electron.framework 0x000000010bde50f2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17559378 8 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 9 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 10 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 11 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 12 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 13 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 30:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 31:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 32:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 33:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 34:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbac0e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17386094 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 35:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdba3ee v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17384014 4 com.github.Electron.framework 0x000000010bdbaa4f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385647 5 com.github.Electron.framework 0x000000010bdba93d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17385373 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 36:: CacheThread_BlockFile 0 libsystem_kernel.dylib 0x00007fff6e87db96 kevent64 + 10 1 com.github.Electron.framework 0x000000010bdf8126 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17637254 2 com.github.Electron.framework 0x000000010bdf800b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17636971 3 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 4 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 5 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 6 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 7 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 8 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 37:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff34738f85 __CFRunLoopServiceMachPort + 247 3 com.apple.CoreFoundation 0x00007fff34737a52 __CFRunLoopRun + 1319 4 com.apple.CoreFoundation 0x00007fff34736ece CFRunLoopRunSpecific + 462 5 com.apple.AppKit 0x00007fff31b4f144 _NSEventThread + 132 6 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 7 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 38:: Platform Key Thread 0 libsystem_kernel.dylib 0x00007fff6e874dfa mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e875170 mach_msg + 60 2 com.github.Electron.framework 0x000000010bdeade0 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17583168 3 com.github.Electron.framework 0x000000010bdeacae v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17582862 4 com.github.Electron.framework 0x000000010bd5d92f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17004431 5 com.github.Electron.framework 0x000000010bda7011 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17305201 6 com.github.Electron.framework 0x000000010bd7cc0a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17132138 7 com.github.Electron.framework 0x000000010bdc386a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17422026 8 com.github.Electron.framework 0x000000010bddfe17 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 17538167 9 libsystem_pthread.dylib 0x00007fff6e938109 _pthread_start + 148 10 libsystem_pthread.dylib 0x00007fff6e933b8b thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x000000010fb99bb2 rcx: 0x0000000000000000 rdx: 0x000000010fb99bd2 rdi: 0x0000000000000002 rsi: 0x000000010fb99bd2 rbp: 0x00007ffeece82c00 rsp: 0x00007ffeece82aa0 r8: 0x0000000000000001 r9: 0x0000000000000002 r10: 0x00000000ffff9fff r11: 0xffffffffffffffff r12: 0x00007fd1674ae930 r13: 0x00007fd16d527940 r14: 0x000027a90841bef9 r15: 0x000000010fb99bd2 rip: 0x000000010957ea30 rfl: 0x0000000000010246 cr2: 0x0000000000000000 Logical CPU: 6 Error Code: 0x00000006 (no mapping for user data write) Trap Number: 14 Binary Images: 0x102d79000 - 0x102da0ff3 +com.github.Electron (10.0.0-beta.17 - 10.0.0-beta.17) <E878EDAE-3537-3E37-BFF7-60679E0B87E4> /Users/USER/*/Electron.app/Contents/MacOS/Electron 0x102da7000 - 0x103035fff +libffmpeg.dylib (0) <4BF60403-2398-33FD-820F-88B442DA1A5D> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib 0x1033f5000 - 0x103410fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x103432000 - 0x103495ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x103507000 - 0x10351bfff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10895c000 - 0x10895f047 libobjc-trampolines.dylib (787.1) <8212B354-A106-3806-A022-A60F2B2FA5C9> /usr/lib/libobjc-trampolines.dylib 0x109325000 - 0x1093b6eff dyld (750.5) <E4698FBD-806A-3396-B279-E685BA37430B> /usr/lib/dyld 0x10942a000 - 0x110862f4f +com.github.Electron.framework (10.0.0-beta.17) <AAA56F1F-73B6-3C95-A447-37E4D94D05F1> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework 0x7fff279f7000 - 0x7fff27b25ff0 com.apple.AMDMTLBronzeDriver (3.9.15 - 3.0.9) <D901C675-0E10-38B7-975A-82BB92383B60> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff2d0b9000 - 0x7fff2d4b8ff1 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.6.18 - 14.0.6) <568AB53D-A275-3FAC-932C-A32C3E277CA3> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff2ff58000 - 0x7fff30153ffb com.apple.avfoundation (2.0 - 1850.2) <4820F165-5E20-3120-913D-C047FDB68392> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff30154000 - 0x7fff30220ffe com.apple.audio.AVFAudio (1.0 - 415.72) <C0FE6926-F8E6-339A-9D11-C6E3BEE688BF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff30340000 - 0x7fff30340fff com.apple.Accelerate (1.11 - Accelerate 1.11) <56DFF715-6A4E-3231-BDCC-A348BCB05047> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff30341000 - 0x7fff30357fef libCGInterfaces.dylib (524.2.1) <A423F932-C044-3CEB-BF20-BF4CB323361E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff30358000 - 0x7fff309aefff com.apple.vImage (8.1 - 524.2.1) <17C93AB9-1625-3FDB-9851-C5E77BBE3428> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff309af000 - 0x7fff30c16ff7 libBLAS.dylib (1303.60.1) <CBC28BE4-3C78-3AED-9565-0D625251D121> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff30c17000 - 0x7fff310eafef libBNNS.dylib (144.100.2) <8D653678-1F9B-3670-AAE2-46DFB8D37643> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff310eb000 - 0x7fff31486fff libLAPACK.dylib (1303.60.1) <F8E9D081-7C60-32EC-A47D-2D30CAD73C5F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff31487000 - 0x7fff3149cfec libLinearAlgebra.dylib (1303.60.1) <D2C1ACEA-2B6A-339A-9EEB-62A76CC92CBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff3149d000 - 0x7fff314a2ff3 libQuadrature.dylib (7) <3112C977-8306-3190-8313-01A952B7F3CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff314a3000 - 0x7fff31513fff libSparse.dylib (103) <40510BF9-99A7-3155-A81D-6DE5A0C73EDC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff31514000 - 0x7fff31526fef libSparseBLAS.dylib (1303.60.1) <3C1066AB-20D5-38D2-B1F2-70A03DE76D0B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff31527000 - 0x7fff316fefd7 libvDSP.dylib (735.121.1) <74702E2E-ED05-3765-B18C-64BEFF62B517> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff316ff000 - 0x7fff317c1fef libvMisc.dylib (735.121.1) <137558BF-503D-3A6E-96DC-A181E3FB31FF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff317c2000 - 0x7fff317c2fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <D7E8E400-35C8-3174-9956-8D1B483620DA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff317c3000 - 0x7fff31822ff0 com.apple.Accounts (113 - 113) <0510C893-F1F2-38B2-B3AA-A30DB2F5B688> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff3196c000 - 0x7fff3272cffd com.apple.AppKit (6.9 - 1894.50.103) <61269B8C-C432-335F-8894-B95C235A41A5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff3277c000 - 0x7fff3277cfff com.apple.ApplicationServices (48 - 50) <EEC73694-1A37-3C14-A839-6991E2BD8655> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff3277d000 - 0x7fff327e8fff com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <A6912C4A-55CC-3701-BACA-E63423B99481> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff32881000 - 0x7fff328bfff0 libFontRegistry.dylib (274.0.5.1) <A78A7869-C96C-3AD6-A038-DE541639BB60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff3291a000 - 0x7fff32949fff com.apple.ATSUI (1.0 - 1) <4B3C2201-DBB3-352C-936B-9C423122EFF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff3294a000 - 0x7fff3294effb com.apple.ColorSyncLegacy (4.13.0 - 1) <47D42CDE-2E9A-3AF6-9365-1BFD1189196B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff329e8000 - 0x7fff32a3fffa com.apple.HIServices (1.22 - 675.1) <273492E3-FF0F-3A8A-A83F-0F11F99B5F26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff32a40000 - 0x7fff32a4efff com.apple.LangAnalysis (1.7.0 - 1.7.0) <DA175323-5BE3-3C54-92D4-A171A4A067E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff32a4f000 - 0x7fff32a94ffa com.apple.print.framework.PrintCore (15.4 - 516.2) <99AEBCDB-2DCA-3A13-906F-7F0D7962B002> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff32a95000 - 0x7fff32a9fff7 com.apple.QD (4.0 - 413) <D2E1DC80-D26F-3508-BBA5-B8AE7ED6CB0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff32aa0000 - 0x7fff32aadffc com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <823C0DE7-1351-3B39-8F06-AB5FCAD2C874> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff32aae000 - 0x7fff32b8fffa com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <75651F0A-F2CE-3F68-B86A-E66B8815DCF4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff32b91000 - 0x7fff32b91fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <E51DCB3C-CF4F-320B-AC86-D445E30C0891> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff32f27000 - 0x7fff332b5ffd com.apple.CFNetwork (1126 - 1126) <BB8F4C63-10B8-3ACD-84CF-D4DCFA9245DD> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff33331000 - 0x7fff33331fff com.apple.Carbon (160 - 162) <4F1F60CB-6C1E-3D79-832E-8D606601F282> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff33332000 - 0x7fff33335ff3 com.apple.CommonPanels (1.2.6 - 101) <333BBF55-AF23-3B99-A9FF-7906175B9406> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff33336000 - 0x7fff3362aff3 com.apple.HIToolbox (2.1.1 - 994.6) <5C44ACA7-D158-3F9B-8F88-0477510D44FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff3362b000 - 0x7fff3362eff3 com.apple.help (1.3.8 - 71) <4B2701A0-8813-35F8-82F8-676B184D15C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff3362f000 - 0x7fff33634ff7 com.apple.ImageCapture (9.0 - 1600.60.4.2) <20872A2D-CBF9-38E6-BD16-C1D387120651> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff33635000 - 0x7fff33635fff com.apple.ink.framework (10.15 - 227) <5B60FDDE-D60E-326B-BD3D-6EA5FA1CBB76> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff33636000 - 0x7fff33650ffa com.apple.openscripting (1.7 - 185.1) <E59F893B-1A73-3098-8924-79227EC9787E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff33671000 - 0x7fff33671fff com.apple.print.framework.Print (15 - 271) <07C50BF6-2222-3769-A5B8-79D7F996183F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff33672000 - 0x7fff33674ff7 com.apple.securityhi (9.0 - 55008) <D7017D5A-4206-3E2F-9F8E-0F932422CA87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff33675000 - 0x7fff3367bfff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <1188E643-967C-334E-BC1A-60A0F82C67E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff3367c000 - 0x7fff33814ffa com.apple.cloudkit.CloudKit (867 - 867) <C68C376E-E2CF-34FE-BC1F-B254233F980D> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit 0x7fff33815000 - 0x7fff33815fff com.apple.Cocoa (6.11 - 23) <87426C3A-7C6C-39D0-905C-C591B997029E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff33823000 - 0x7fff33919fff com.apple.ColorSync (4.13.0 - 3394.9) <61698A7B-BB8C-3891-9547-703FF84671A8> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff33c04000 - 0x7fff3410dffb com.apple.audio.CoreAudio (5.0 - 5.0) <62BEE4B7-8A26-3951-9D78-4E193617AF7A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff34160000 - 0x7fff34198fff com.apple.CoreBluetooth (1.0 - 1) <6BC7F863-4495-371F-BC54-543E5CFE1665> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff34199000 - 0x7fff34583fe8 com.apple.CoreData (120 - 977.3) <D902A2E3-1D0A-3995-974E-A526976E5735> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff34584000 - 0x7fff346b4ffe com.apple.CoreDisplay (1.0 - 186.6.12) <EA74CC46-8715-3B90-95E8-4594D2F0CC8A> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff346b5000 - 0x7fff34b34ffb com.apple.CoreFoundation (6.9 - 1676.105) <6AF8B3CC-BC3F-3869-B9FB-1D881422364E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff34b36000 - 0x7fff351aaff8 com.apple.CoreGraphics (2.0 - 1355.17) <E1CE3919-F36B-309F-89BA-79F36DC8125E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff351b8000 - 0x7fff35513ff0 com.apple.CoreImage (15.0.0 - 940.9) <44F68E8C-315A-32A6-BB19-7F24C00AB347> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff35514000 - 0x7fff3557dff0 com.apple.corelocation (2394.0.22 - 2394.0.22) <B1E3382A-62ED-36F0-AB86-F46D7B7FF9AE> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation 0x7fff3557e000 - 0x7fff355ceff6 com.apple.audio.midi.CoreMIDI (1.10 - 88) <E35AE117-37C5-3AD5-A38F-C43D1F6EE1E6> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff355d1000 - 0x7fff358d3ff2 com.apple.CoreML (1.0 - 1) <06598905-BA5B-3D89-9921-39C6D5889DD9> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML 0x7fff358d4000 - 0x7fff359afffc com.apple.CoreMedia (1.0 - 2620.11.40.2) <0F490101-ED30-3189-B099-E247B6361A0B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff359b0000 - 0x7fff35a12ffe com.apple.CoreMediaIO (1000.0 - 5125.6) <9435B82E-4728-362C-9FF0-E8AEC19D6E3C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff35a9c000 - 0x7fff35a9cfff com.apple.CoreServices (1069.24 - 1069.24) <D9F6AB40-10EC-3682-A969-85560E2E4768> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff35a9d000 - 0x7fff35b22fff com.apple.AE (838.1 - 838.1) <5F26DA9B-FB2E-3AF8-964B-63BD6671CF12> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff35b23000 - 0x7fff35e04ff7 com.apple.CoreServices.CarbonCore (1217 - 1217) <8022AF47-AA99-3786-B086-141D84F00387> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff35e05000 - 0x7fff35e52ffd com.apple.DictionaryServices (1.2 - 323.6) <C0F3830C-A4C6-3046-9A6A-DE1B5D448C2C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff35e53000 - 0x7fff35e5bff7 com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) <E4B2CAF2-1203-335F-9971-1278CB6E2AE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff35e5c000 - 0x7fff36096ff6 com.apple.LaunchServices (1069.24 - 1069.24) <2E0AD228-B1CC-3645-91EE-EB7F46F2147B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff36097000 - 0x7fff3612fff1 com.apple.Metadata (10.7.0 - 2076.6) <C8034E84-7DD4-34B9-9CDF-16A05032FF39> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff36130000 - 0x7fff3615dfff com.apple.CoreServices.OSServices (1069.24 - 1069.24) <72FDEA52-7607-3745-AC43-630D80962099> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff3615e000 - 0x7fff361c5fff com.apple.SearchKit (1.4.1 - 1.4.1) <086EB5DF-A2EC-3342-8028-CA7996BE5CB2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff361c6000 - 0x7fff361eaff5 com.apple.coreservices.SharedFileList (131.4 - 131.4) <AE333DA2-C279-3751-8C15-B963E58EE61E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff36447000 - 0x7fff3650effc com.apple.CoreTelephony (113 - 7560.1) <BAC6EEA9-89A0-3D03-BE0B-C65A3838C9D0> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony 0x7fff3650f000 - 0x7fff366c6ffc com.apple.CoreText (643.1.5.1 - 643.1.5.1) <715FE3F7-E8FB-3997-85A0-3AB2839F6C30> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff366c7000 - 0x7fff3670bffb com.apple.CoreVideo (1.8 - 344.3) <A200AFC7-2CB2-30CD-8B2A-1269CA64A29B> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff3670c000 - 0x7fff36799ffc com.apple.framework.CoreWLAN (13.0 - 1601.2) <855E51AA-DF3A-3BB9-A4F0-6880D42B8762> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff367d0000 - 0x7fff36810ff5 com.apple.CryptoTokenKit (1.0 - 1) <984AD67F-1C56-374D-9CEB-8816E53B3193> /System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/CryptoTokenKit 0x7fff36955000 - 0x7fff36960ff7 com.apple.DirectoryService.Framework (10.15 - 220.40.1) <06D98FD0-796F-356F-B492-A6D8F3D5BEC0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff36961000 - 0x7fff36a0bff0 com.apple.DiscRecording (9.0.3 - 9030.4.5) <D9033DDA-E4C8-36FB-AE60-4EF66F4F1F9E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff36a30000 - 0x7fff36a36fff com.apple.DiskArbitration (2.7 - 2.7) <52E7D181-2A18-37CD-B24F-AA32E93F7A69> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff36c29000 - 0x7fff36d57ff6 com.apple.FileProvider (304.1 - 304.1) <58D64236-947E-3E6A-85E6-C66AEF9E0EE0> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff36d6c000 - 0x7fff36d6eff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) <F9831460-E612-3812-910C-8708822F3DA1> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff36d6f000 - 0x7fff37134fff com.apple.Foundation (6.9 - 1676.105) <1FA28BAB-7296-3A09-8E1E-E62A7D233DB8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff371a1000 - 0x7fff371f1ff7 com.apple.GSS (4.0 - 2.0) <4E241C00-42A5-3572-9430-D950FBB7A4A0> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff371f2000 - 0x7fff3721aff4 com.apple.GameController (1.0 - 1) <43C44DA1-D41E-355B-BE52-30865EBC3734> /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff3732e000 - 0x7fff37442ff3 com.apple.Bluetooth (7.0.5 - 7.0.5f6) <5897C368-9674-3E34-B144-FFB06A2DF37B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff374a8000 - 0x7fff3754cff3 com.apple.framework.IOKit (2.0.2 - 1726.121.1) <A0F54725-036F-3279-A46E-C2ABDBFD479B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff3754e000 - 0x7fff3755fffb com.apple.IOSurface (269.11 - 269.11) <D3CC2AA1-4AE2-30EE-A9DB-C04CCAA88ADE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff3757d000 - 0x7fff375ddff7 com.apple.ImageCaptureCore (1.0 - 1600.60.4.2) <8BA11284-66A0-3567-A13C-72AD1CC0C2EA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff375de000 - 0x7fff3773affe com.apple.ImageIO.framework (3.3.0 - 1976.6) <5B4C2E04-9161-3C82-A7FB-F4D51E3C1E10> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff3773b000 - 0x7fff3773efff libGIF.dylib (1976.6) <3B26EE1C-C570-305C-A9A3-EA62D2F2E7B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff3773f000 - 0x7fff377f8fff libJP2.dylib (1976.6) <EB4E4E09-DD81-3E6B-A513-3667E810AEF3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff377f9000 - 0x7fff3781cfe3 libJPEG.dylib (1976.6) <9D7FAC55-85A6-34AB-9F26-0BCA381E8CE7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff37a98000 - 0x7fff37ab2fef libPng.dylib (1976.6) <4886A1F8-E9CA-38F2-BF2F-1FCA1DFDD1C9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff37ab3000 - 0x7fff37ab4fff libRadiance.dylib (1976.6) <FA759D33-131A-33B8-943E-32409F162738> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff37ab5000 - 0x7fff37afefff libTIFF.dylib (1976.6) <E9994BF8-6CF5-3422-B4FD-A14DC390EF12> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff37b17000 - 0x7fff37fa6ff8 com.apple.Intents (1.0 - 1) <EA4EEE84-D337-3C59-9C02-261205CA04E7> /System/Library/Frameworks/Intents.framework/Versions/A/Intents 0x7fff37fa9000 - 0x7fff39049fe9 com.apple.JavaScriptCore (15609 - 15609.2.9.1.2) <62158DFB-C250-3A18-AE52-6296544AEA43> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff39060000 - 0x7fff39072ff3 com.apple.Kerberos (3.0 - 1) <AE0E56CA-D924-3CC8-BBAA-8C6EEC3038BE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff39073000 - 0x7fff39073fff libHeimdalProxy.dylib (77) <A970C7A8-7CCD-3701-A459-078BD5E8FE4E> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff39074000 - 0x7fff390aaff7 com.apple.LDAPFramework (2.4.28 - 194.5) <4CFB6351-53B9-36AF-B654-AE636BBC361A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff391be000 - 0x7fff391e0ffc com.apple.CoreAuthentication.SharedUtils (1.0 - 693.120.1) <66734357-5409-363D-AB55-C0233CA66056> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff391e1000 - 0x7fff391f7ffe com.apple.LocalAuthentication (1.0 - 693.120.1) <5BD6189F-8AD4-31C8-B954-7EDB38648EE7> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff39405000 - 0x7fff3940fffb com.apple.MediaAccessibility (1.0 - 125.1) <DBF40A12-65A6-33E4-839C-292600B7D910> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff39423000 - 0x7fff394daff7 com.apple.MediaPlayer (1.0 - 1.0) <0CE26562-5D87-31D2-A558-641E0822BC6F> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff394db000 - 0x7fff39c28ff5 com.apple.MediaToolbox (1.0 - 2620.11.40.2) <40F16AF6-79D1-3C2E-976C-E7E7870A4EF9> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff39c2a000 - 0x7fff39cf4ff7 com.apple.Metal (212.7 - 212.7) <CC7BF715-142B-3C2A-81AD-0E35693230F2> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff39cf6000 - 0x7fff39d10ff5 com.apple.MetalKit (141.2 - 141.2) <8162AFB6-327C-3BE1-AEF7-2BEA999B1DFB> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit 0x7fff39d11000 - 0x7fff39d4eff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <52089325-EC97-3EED-ABB3-9B39EC0BD429> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff39d4f000 - 0x7fff39dd9fe2 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <9E434EA0-6BCA-3903-B882-CEB69730A63B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff39dda000 - 0x7fff39dffff4 com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <EDD6C3A5-E231-3FB1-B4D4-45742AFB9A4E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff39e00000 - 0x7fff39e15ffb com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <C5A2B865-5CE2-3E5D-8452-54639FCB0954> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff39e16000 - 0x7fff39f74ffc com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <47CCDBAC-5843-366A-A68C-6E8851D0865D> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff39f75000 - 0x7fff39fc4ff4 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <302BDF8E-B00A-3123-A6C4-E262B7513CF6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff39fc5000 - 0x7fff39fc6ff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <14F84B42-9DA2-39A1-81B4-666B8020520C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff3b04d000 - 0x7fff3b059ffe com.apple.NetFS (6.0 - 4.0) <AC74E6A4-6E9B-3AB1-9577-8277F8A3EDE0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff3b05a000 - 0x7fff3b1b1ff3 com.apple.Network (1.0 - 1) <B5B8E999-BBCC-3DEF-8881-8FFF69F8EC4B> /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff3b1b2000 - 0x7fff3b411ff5 com.apple.NetworkExtension (1.0 - 1) <446D0D36-E8F8-3F2C-B32B-5C3630177FBC> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension 0x7fff3dbe2000 - 0x7fff3dc3afff com.apple.opencl (3.5 - 3.5) <9B101D40-EA79-3C0D-B7AE-A3F18094B2D7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3dc3b000 - 0x7fff3dc57fff com.apple.CFOpenDirectory (10.15 - 220.40.1) <BFC32EBE-D95C-3267-B95C-5CEEFD189EA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3dc58000 - 0x7fff3dc63ffd com.apple.OpenDirectory (10.15 - 220.40.1) <76A20BBA-775F-3E17-AB0F-FEDFCDCE0716> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff3e5c9000 - 0x7fff3e5cbfff libCVMSPluginSupport.dylib (17.10.22) <AAE07E0C-4B28-364B-A7D9-028C7CD14954> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff3e5cc000 - 0x7fff3e5d1fff libCoreFSCache.dylib (176.15) <609C5DFC-9A97-344D-BBC7-E0B08D862C63> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff3e5d2000 - 0x7fff3e5d6fff libCoreVMClient.dylib (176.15) <8F8DD27F-AC7C-398D-A8E3-396F1528E317> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff3e5d7000 - 0x7fff3e5dfff7 libGFXShared.dylib (17.10.22) <D0649AB5-5331-328D-8141-E5A6F06D4AD7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff3e5e0000 - 0x7fff3e5eafff libGL.dylib (17.10.22) <116DDBF7-D725-3B8C-BD0B-A21B758FE421> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff3e5eb000 - 0x7fff3e61fff7 libGLImage.dylib (17.10.22) <2B314C76-C7E6-3AC5-9157-70B0529C1F9B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff3e7b5000 - 0x7fff3e7f1fff libGLU.dylib (17.10.22) <B29F73B2-B5A9-3C38-AF77-351173D2E3DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff3f22d000 - 0x7fff3f23cff7 com.apple.opengl (17.10.22 - 17.10.22) <D5BF32A8-2E0A-345D-80A3-7CA7C2CF748D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff3f3ee000 - 0x7fff3f4e1ff0 com.apple.PDFKit (1.0 - 835.7) <346881D8-3E09-3787-B877-6284D1D3B24A> /System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff3f4e2000 - 0x7fff3f5f9ff9 com.apple.PencilKit (1.0 - 1) <AD3C6D86-17D6-35A3-AE5C-BEDB872197BF> /System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit 0x7fff3f89a000 - 0x7fff3f8a0ff6 com.apple.PushKit (1.0 - 1) <B4E45366-8C51-3248-BDAF-2ECFE94D5378> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit 0x7fff3f9c1000 - 0x7fff3fc07ff7 com.apple.imageKit (3.0 - 1081) <F0AD8D71-D6BE-3ABC-9B5F-93825F3F96B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff3fc08000 - 0x7fff400c7fff com.apple.QuartzComposer (5.1 - 378) <351442B3-92C1-30FB-B5BC-E64759CCA5FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff400c8000 - 0x7fff400edffc com.apple.quartzfilters (1.10.0 - Tag) <F491CB46-3837-3525-AE31-23EB89692BA1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff400ee000 - 0x7fff401f8ff7 com.apple.QuickLookUIFramework (5.0 - 906.2) <731A1F57-2064-3941-823E-2D23BD1D9CB1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff401f9000 - 0x7fff401f9fff com.apple.quartzframework (1.5 - 23) <E2368AAF-5B01-328F-9D5D-9089CBB9C8FA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff401fa000 - 0x7fff4047cff9 com.apple.QuartzCore (1.11 - 841.2) <444E6F22-DFA6-391B-B51F-A96AE69E524D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4047d000 - 0x7fff404d6ff5 com.apple.QuickLookFramework (5.0 - 906.2) <E6F25D56-E003-3B3B-851B-1566C132E006> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff404d7000 - 0x7fff4050cffc com.apple.QuickLookThumbnailing (1.0 - 1) <469201A4-C87A-335F-91C1-81055CF89844> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff409dd000 - 0x7fff409f5ff0 com.apple.SafariServices.framework (15609 - 15609.2.9.1.2) <DBB58DF1-3DA2-3558-B185-B7DAAB005113> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff40ffd000 - 0x7fff41346ff1 com.apple.security (7.0 - 59306.120.7) <AEA33464-1507-36F1-8CAE-A86EB787F9B5> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff41347000 - 0x7fff413cfffb com.apple.securityfoundation (6.0 - 55236.60.1) <79289FE1-CB5F-3BEF-A33F-11A29A93A681> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff413d0000 - 0x7fff413fdff7 com.apple.securityinterface (10.0 - 55139.120.1) <CBC1CC5B-6C24-3843-935F-052767FBB69D> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff413fe000 - 0x7fff41402ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <4194D29D-F0D4-33F8-839A-D03C6C62D8DB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff41736000 - 0x7fff41753ff9 com.apple.StoreKit (1.0 - 1) <A361907A-3024-3E05-BE01-DD1548AAAB7D> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit 0x7fff420ae000 - 0x7fff4211cff7 com.apple.SystemConfiguration (1.19 - 1.19) <0CF8726A-BE41-3E07-B895-FBC44B75450E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff422e5000 - 0x7fff4231aff2 com.apple.UserNotifications (1.0 - ???) <773486B3-7483-3196-A568-B0ED1493E05A> /System/Library/Frameworks/UserNotifications.framework/Versions/A/UserNotifications 0x7fff4239b000 - 0x7fff4271eff4 com.apple.VideoToolbox (1.0 - 2620.11.40.2) <53E0D852-61CA-34FE-9A9B-788708ADE495> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff4607d000 - 0x7fff46142ff7 com.apple.APFS (1412.120.2 - 1412.120.2) <1E8FD511-FDC4-31A2-ACDE-EB5192032BC6> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff46a8d000 - 0x7fff46b3effe com.apple.accounts.AccountsDaemon (113 - 113) <2C275FCF-21AB-3C41-B347-3CF1DC45F8D3> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon 0x7fff47252000 - 0x7fff47253ff1 com.apple.AggregateDictionary (1.0 - 1) <B907CE7A-0122-3E63-BF39-0A242B0DD7C4> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff476a1000 - 0x7fff477ecff5 com.apple.AnnotationKit (1.0 - 325.9) <E9B0F74B-CB16-3E07-9015-8CBF158EB08D> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit 0x7fff477ed000 - 0x7fff4780aff4 com.apple.AppContainer (4.0 - 448.100.6) <9C2D0065-9B38-3D1C-A090-46F129A1B3CA> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff4785f000 - 0x7fff4786dff7 com.apple.AppSandbox (4.0 - 448.100.6) <7DAB58B1-8176-3FB0-A7B0-8A38E118E90B> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff47870000 - 0x7fff478ceff5 com.apple.AppStoreDaemon (1.0 - 1) <8472D01C-1BFD-3C45-A83F-5241DA8E9CF4> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Versions/A/AppStoreDaemon 0x7fff47c57000 - 0x7fff47cbcff7 com.apple.AppSupport (1.0.0 - 29) <B9F52509-241A-3C17-A907-88FD89F60AFB> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport 0x7fff47ce8000 - 0x7fff47d0cffb com.apple.framework.Apple80211 (13.0 - 1610.1) <B4B80CD6-B38E-3748-B30B-5088CCE9A7A8> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff47fca000 - 0x7fff47fd9fd7 com.apple.AppleFSCompression (119.100.1 - 1.0) <2E75CF51-B693-3275-9A4F-40571D48745E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff480d8000 - 0x7fff480e3ff7 com.apple.AppleIDAuthSupport (1.0 - 1) <F4651654-E24F-3BF4-8DDF-8F91E5219BA4> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff480e4000 - 0x7fff48124ff1 com.apple.AppleIDSSOAuthentication (1.0 - 1) <7ABD2F0F-AEF4-32FD-B3DE-874BDB49F953> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/Versions/A/AppleIDSSOAuthentication 0x7fff48125000 - 0x7fff4816dff7 com.apple.AppleJPEG (1.0 - 1) <4655FF70-9772-3D7C-8159-5A5E56C9F84B> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff4817f000 - 0x7fff48523ffd com.apple.AppleMediaServices (1.0 - 1) <54726C13-5DA3-3F0F-A638-EEC028BE5B3A> /System/Library/PrivateFrameworks/AppleMediaServices.framework/Versions/A/AppleMediaServices 0x7fff48530000 - 0x7fff48556ffb com.apple.aps.framework (4.0 - 4.0) <34F0F991-2D0F-3376-B5B2-BDED2108552A> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 0x7fff48557000 - 0x7fff4855bff7 com.apple.AppleSRP (5.0 - 1) <B683AD55-A121-31DD-9A87-3A31C35FEABF> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff4855c000 - 0x7fff4857efff com.apple.applesauce (1.0 - 16.25) <33B66B71-64A4-365D-9953-E0545E69A5E7> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff4863d000 - 0x7fff48640ffb com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <92580EE3-74BF-3488-90ED-C8EBD7A1B4C3> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff48641000 - 0x7fff48691ff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <39C3583D-C824-3168-B67A-498487FD03D9> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff486da000 - 0x7fff486e9ff9 com.apple.AssertionServices (1.0 - 223.100.31) <478D2004-9B84-3AE9-9A0B-0A0B68ED028F> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff48c2b000 - 0x7fff49026ff8 com.apple.audio.AudioResourceArbitration (1.0 - 1) <9ABFE41A-FD01-3111-BA73-D2DD1BF96525> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration 0x7fff4927c000 - 0x7fff494bcfe0 com.apple.audio.AudioToolboxCore (1.0 - 1104.84) <FA17E892-6A1A-309D-95C7-30ACFC44319C> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff494c0000 - 0x7fff495dcff0 com.apple.AuthKit (1.0 - 1) <375C3886-5430-3C02-BD2C-4244BF490ABA> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff49799000 - 0x7fff497a2ff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <F070F440-27AB-3FCF-9602-F278C332CA01> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff497a3000 - 0x7fff49844ff5 com.apple.backup.framework (1.11.5 - 1298.5.10) <637CA389-627A-365C-98C2-D297C47D6EE3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff49845000 - 0x7fff498d1ff6 com.apple.BaseBoard (466.3 - 466.3) <1718A41A-9923-3FD0-96B8-82376E153D27> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff499a2000 - 0x7fff499d2ffa com.apple.BoardServices (1.0 - 466.3) <FC083303-AD9D-3CBB-A4BA-A9BAFD224B1B> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices 0x7fff499d3000 - 0x7fff49a0fff7 com.apple.bom (14.0 - 219.2) <586F1D9C-23B0-3F38-9C5B-728E9DD8B953> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff49b2d000 - 0x7fff49b64ff5 com.apple.C2 (1.3 - 495) <4C624CDB-C2A8-3039-BC45-224FB8671969> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2 0x7fff4a58e000 - 0x7fff4a5ddfff com.apple.ChunkingLibrary (307 - 307) <32E0F1A1-9DD6-3B52-91C2-93643041AA60> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff4b484000 - 0x7fff4b494ffb com.apple.CommonAuth (4.0 - 2.0) <91EC83B5-857D-3D4F-93B1-AAD7E0E029D8> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff4b4a8000 - 0x7fff4b4bffff com.apple.commonutilities (8.0 - 900) <12C6DEE5-1740-39A5-9711-6F815C6D77BD> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff4bbc3000 - 0x7fff4bf98fc8 com.apple.CoreAUC (283.0.0 - 283.0.0) <BA9522E5-95D0-30D0-BEF4-691CEB51035B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff4bf99000 - 0x7fff4bfc6ff7 com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <14FC549B-86BD-396A-B03E-6F5219482943> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff4bfe9000 - 0x7fff4c008ffc com.apple.analyticsd (1.0 - 1) <A4F653CA-2FD6-348B-B7B3-48D91A67508A> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4c111000 - 0x7fff4c187ff7 com.apple.corebrightness (1.0 - 1) <D1E20AF2-A96B-318C-9605-9A3BD6EC27C2> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff4c313000 - 0x7fff4c31eff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <8F8E586D-C153-3ABA-88B7-6CEC7F476F0E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff4c31f000 - 0x7fff4c52aff1 com.apple.CoreDuet (1.0 - 1) <C933EE99-D7D2-32F8-8B96-938A0FB612FB> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 0x7fff4c52b000 - 0x7fff4c578ff3 com.apple.coreduetcontext (1.0 - 1) <64FD6DBA-89E3-34FC-A758-3240D4737F75> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext 0x7fff4c579000 - 0x7fff4c589ffe com.apple.CoreDuetDaemonProtocol (1.0 - 1) <00D3E768-CBBF-36DE-B8D8-218F7B562F6F> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol 0x7fff4c58c000 - 0x7fff4c58efff com.apple.CoreDuetDebugLogging (1.0 - 1) <DBE17F86-59D6-368D-AEF1-4BDF85D2E735> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging 0x7fff4c59f000 - 0x7fff4c5afff3 com.apple.CoreEmoji (1.0 - 107.1) <CDCCB4B0-B98F-38E8-9568-C81320E756EB> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4c765000 - 0x7fff4c8b2fff com.apple.CoreHandwriting (161 - 1.2) <7F6BAABE-71D0-34F6-876D-C6C53331B5F3> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting 0x7fff4cbef000 - 0x7fff4cc59ff0 com.apple.CoreNLP (1.0 - 213) <40FC46D2-844C-3282-A8E4-69DD827F05C5> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4cf1c000 - 0x7fff4cfa4ffe com.apple.CorePDF (4.0 - 518.4.1) <98F39D44-028B-3714-AC76-0884D08DD6CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff4d087000 - 0x7fff4d08fff8 com.apple.CorePhoneNumbers (1.0 - 1) <B2CE100D-B82F-3481-86F6-7F85FF8BFAFB> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff4da7c000 - 0x7fff4da9ffff com.apple.CoreSVG (1.0 - 129) <3141D198-0507-3F72-A2C9-752EAFE3EEB3> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff4daa0000 - 0x7fff4dad3fff com.apple.CoreServicesInternal (446.7 - 446.7) <B2CEC515-2225-3CB1-B34A-904AAEA54FDF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4dad4000 - 0x7fff4db02ffd com.apple.CSStore (1069.24 - 1069.24) <C96E5CE8-D604-3F13-B079-B2BA33B90081> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4e027000 - 0x7fff4e0bdff7 com.apple.CoreSymbolication (11.4 - 64535.33.2) <0E7A1529-C737-33FD-AA7D-A32EB8B192DA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff4e155000 - 0x7fff4e281ff6 com.apple.coreui (2.1 - 609.4) <9B93CC42-804B-305A-8FCE-5F06821B544C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff4e282000 - 0x7fff4e438ff5 com.apple.CoreUtils (6.2.1 - 621.5) <CD4B58E5-1494-3457-84FF-3869378E2DC9> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff4e572000 - 0x7fff4e585ff1 com.apple.CrashReporterSupport (10.13 - 15016) <827F4E31-9F23-3683-AC5A-59CCA90F2359> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff4e63e000 - 0x7fff4e650ff8 com.apple.framework.DFRFoundation (1.0 - 252.50.1) <19F79D32-71D3-3A87-98C9-B5C6C96076C4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff4e651000 - 0x7fff4e656fff com.apple.DSExternalDisplay (3.1 - 380) <971F24F1-B1FC-3674-9C00-F88EEF94DC05> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff4e6e0000 - 0x7fff4e75aff0 com.apple.datadetectorscore (8.0 - 659) <9FD9BDFA-3724-3BEA-946C-0473447196A3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff4e7a6000 - 0x7fff4e7e3ff8 com.apple.DebugSymbols (194 - 194) <9BCE6685-6C45-3DF9-98EB-FCF8196160F0> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff4e7e4000 - 0x7fff4e96cff6 com.apple.desktopservices (1.14.5 - 1281.5.3) <79972B8B-7B60-3AD5-9A5F-17976DE8080B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff4ec09000 - 0x7fff4ecd1ffe com.apple.DiskImagesFramework (559.100.2 - 559.100.2) <DE281E96-21D0-3BE3-BEE0-D901B24D71EE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff4ecd2000 - 0x7fff4eda5ff1 com.apple.DiskManagement (13.0 - 1648.120.5) <650DBBE4-6624-3064-A26D-6BCAA0FE41F9> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff4eda6000 - 0x7fff4edaaff1 com.apple.DisplayServicesFW (3.1 - 380) <A5F74849-D8E4-30DC-A638-BFD4332CD6AB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff4ee04000 - 0x7fff4ee28ff9 com.apple.DuetActivityScheduler (1.0 - 1) <C63FCC5A-CF9B-31B0-B549-04FC4527B826> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler 0x7fff4ee52000 - 0x7fff4ee87ff7 com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <E0BAD6DA-3F7C-32A4-AB32-13C9D604690B> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X 0x7fff4ee88000 - 0x7fff4ee8cff9 com.apple.EFILogin (2.0 - 2) <B95015BC-5BC2-33D9-AD94-01905DD56193> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff4f9bf000 - 0x7fff4f9d4ff2 com.apple.Engram (1.0 - 1) <15ABEF9F-1892-3801-9253-0FD0FC232B1C> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram 0x7fff4f9d5000 - 0x7fff5003fff9 com.apple.vision.EspressoFramework (1.0 - 188.4) <4502588F-70F2-3A5F-9089-4B2F29159961> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso 0x7fff5031a000 - 0x7fff50735ff1 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <1B5D7DD6-718E-3111-A702-EB04B8903662> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff50dd3000 - 0x7fff50f0bffc libFontParser.dylib (277.2.5.3) <DEB18756-082F-359B-AE93-F9C3B5EC7AF4> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff50f0c000 - 0x7fff50f40fff libTrueTypeScaler.dylib (277.2.5.3) <B16255A6-C51A-328B-B679-8FBF64495770> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib 0x7fff50fa5000 - 0x7fff50fb5ff6 libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <6396BC1F-13C1-37D7-91B9-1FF60910C7FA> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff54496000 - 0x7fff54497fff libmetal_timestamp.dylib (902.14.11) <BE88F259-0A3C-3910-8983-FB5E2C905E87> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff55b54000 - 0x7fff55b5afff com.apple.GPUWrangler (5.2.4 - 5.2.4) <5B819701-9F0C-374B-8925-A22DFC16514F> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff55e79000 - 0x7fff55e9fff1 com.apple.GenerationalStorage (2.0 - 314) <5613706F-710A-39E0-8B25-BA103A768613> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff55eb8000 - 0x7fff56ea2ffc com.apple.GeoServices (1.0 - 1624.24.10.29.41) <9A6FF368-7127-336F-9595-B261141810EA> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices 0x7fff56fce000 - 0x7fff56fdcffb com.apple.GraphVisualizer (1.0 - 100.1) <0A86C9FF-4484-3C7F-BC71-3D23BDBE81CE> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff57045000 - 0x7fff57052ff9 com.apple.HID (1.0 - 1) <C750D8D3-C4DD-3E77-94B2-6A7B4D56DF2A> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID 0x7fff5717b000 - 0x7fff57239ff4 com.apple.Heimdal (4.0 - 2.0) <F2C504F6-E211-3AB0-9754-D96D2F96634B> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff589d5000 - 0x7fff58ad3ffe com.apple.ids (10.0 - 1000) <9CCCCDE9-74C2-313E-9933-A2AC43B59431> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS 0x7fff58ad4000 - 0x7fff58c0fff2 com.apple.idsfoundation (10.0 - 1000) <C2830BDB-DAFF-34DF-8F26-1200AC9930A9> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation 0x7fff5922d000 - 0x7fff5928dff2 com.apple.imfoundation (10.0 - 1000) <47834C71-8DE3-35DF-BCD4-4D65A8524BEB> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation 0x7fff593b3000 - 0x7fff593bcffe com.apple.IOAccelMemoryInfo (1.0 - 1) <903349F6-F3B0-3269-8946-2CE3E2C49E70> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff593bd000 - 0x7fff593c5ff5 com.apple.IOAccelerator (438.5.4 - 438.5.4) <A3CF45E0-4D88-33BF-BAEC-690D5664CDA0> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff593d2000 - 0x7fff593e9fff com.apple.IOPresentment (1.0 - 37) <3EDBB454-D248-394B-A026-9717CD8535C3> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff59771000 - 0x7fff597bcff1 com.apple.IconServices (438.3 - 438.3) <2AE74790-64F1-3B0A-9534-DEEEE307E562> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff59959000 - 0x7fff59967fff com.apple.IntentsFoundation (1.0 - 1) <C2C31BEB-FFCE-31E1-BA23-A093693C0BDC> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation 0x7fff5997a000 - 0x7fff59981ff9 com.apple.InternationalSupport (1.0 - 45.4) <C22AA77A-EDA6-3626-8816-521A8CD43C4A> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff59c0e000 - 0x7fff59c2dffd com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <76DB5326-BE5D-3339-975C-D9FCF39A341E> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff59d62000 - 0x7fff59e30ffd com.apple.LanguageModeling (1.0 - 215.1) <A6FAA215-9A01-3EE1-B304-2238801C5883> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff59e31000 - 0x7fff59e79fff com.apple.Lexicon-framework (1.0 - 72) <6AE1872C-0352-36FE-90CC-7303F13A5BEF> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff59e80000 - 0x7fff59e85ff3 com.apple.LinguisticData (1.0 - 353.18) <686E7B7C-640F-3D7B-A9C1-31E2DFACD457> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff59eac000 - 0x7fff59ed0ffe com.apple.locationsupport (2394.0.22 - 2394.0.22) <5C15E3FF-D269-3A99-B3EF-B806F61EE1EA> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport 0x7fff59f29000 - 0x7fff59f2eff7 com.apple.LoginUICore (4.0 - 4.0) <5D60C7D1-9DB7-30A3-9209-7E13644D3E9D> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore 0x7fff5a71d000 - 0x7fff5a720fff com.apple.Mangrove (1.0 - 25) <11A30F47-B1C1-375E-9FE7-0A196E92A52C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff5a8dd000 - 0x7fff5a8ddff5 com.apple.marco (10.0 - 1000) <DE306413-2B75-3D3A-9DCC-0D660A3197CB> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco 0x7fff5a8de000 - 0x7fff5a904ffc com.apple.MarkupUI (1.0 - 325.9) <FB688EC0-67FD-37A2-BED0-A017F4FA029A> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI 0x7fff5a989000 - 0x7fff5aa13ff8 com.apple.MediaExperience (1.0 - 1) <34E15DA2-02AA-32FA-99E1-9A139521E226> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience 0x7fff5aa14000 - 0x7fff5aa47fff com.apple.MediaKit (16 - 923) <14E38848-C9BD-37F1-AE44-FC4CC839E8A1> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff5ab0c000 - 0x7fff5aea1ff9 com.apple.MediaRemote (1.0 - 1) <CEA58C03-7579-31CC-98E3-6820AD238F53> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff5aea2000 - 0x7fff5aedeffc com.apple.MediaServices (1.0 - 1) <B2385109-3D9F-3F86-BAAF-CB8F53118B9D> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff5b1ec000 - 0x7fff5b238fff com.apple.spotlight.metadata.utilities (1.0 - 2076.6) <C3AEA22D-1FEB-3E38-9821-1FA447C8AF9D> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff5b239000 - 0x7fff5b30affa com.apple.gpusw.MetalTools (1.0 - 1) <A23FFAB6-437C-303C-A3E8-99F323F8E734> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff5b53e000 - 0x7fff5b55cfff com.apple.MobileKeyBag (2.0 - 1.0) <B564179F-A5E9-3BD8-892D-CEF2BE0DA0D7> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff5b628000 - 0x7fff5b7beffd com.apple.Montreal (1.0 - 121.1) <9A9642A5-CE1F-3C1E-ACEF-C3CC789A1D26> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal 0x7fff5b7bf000 - 0x7fff5b7efff7 com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <4E7CB188-382E-3128-8671-4A3EF6E06622> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5bcef000 - 0x7fff5bcf9fff com.apple.NetAuth (6.2 - 6.2) <D660F2CB-5A49-3DD0-9DB3-86EF0797828C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5bdbb000 - 0x7fff5bdd7ff0 com.apple.network.statistics.framework (1.2 - 1) <A106D8B1-1FDF-33D6-9E28-16BF4246C271> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff5c466000 - 0x7fff5c468ffe com.apple.OAuth (25 - 25) <71C237D9-27B1-333D-AA57-3E3E2DAB2020> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth 0x7fff5c70f000 - 0x7fff5c75affb com.apple.OTSVG (1.0 - 643.1.5.1) <CD494F00-9AA4-3A48-916B-EA8661F9772D> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5d96e000 - 0x7fff5d979ff2 com.apple.PerformanceAnalysis (1.243.2 - 243.2) <941698D6-EF00-3D59-8560-F160BC04B412> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff5d97a000 - 0x7fff5d9a2ffb com.apple.persistentconnection (1.0 - 1.0) <FFC20BB6-9CF3-39F2-AE5C-8DEE348FE0C1> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff5f41b000 - 0x7fff5f44bff7 com.apple.pluginkit.framework (1.0 - 1) <6A417FEF-CEDE-3EE0-93ED-42680A31C886> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit 0x7fff5f476000 - 0x7fff5f489ffc com.apple.PowerLog (1.0 - 1) <63A89A9B-2ACC-3378-9BD0-7FA971E07C2A> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog 0x7fff60305000 - 0x7fff6035fff6 com.apple.ProtectedCloudStorage (1.0 - 1) <969BF7A2-E989-3A22-BC1B-72B72E107229> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff60360000 - 0x7fff60379ffb com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <A2E34123-7CED-378B-A43D-1B98B5B85F5C> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff6048b000 - 0x7fff6048eff4 com.apple.QuickLookNonBaseSystem (1.0 - 1) <4579D418-9C34-3F29-B121-0046F2B87D0B> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem 0x7fff6048f000 - 0x7fff604b2ff0 com.apple.quicklook.QuickLookSupport (1.0 - 1) <D4E71FA6-5776-304F-B007-51FFC81C6780> /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport 0x7fff604f9000 - 0x7fff60572ff3 com.apple.Rapport (1.9.5 - 195.2) <6DB4EFB5-A70C-36AA-971B-3B728EEF41AB> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport 0x7fff607d8000 - 0x7fff60801ff1 com.apple.RemoteViewServices (2.0 - 148) <1C61CFC2-F76F-31E5-BA13-EFD5DC69C8D5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff60966000 - 0x7fff609a1ff0 com.apple.RunningBoardServices (1.0 - 223.100.31) <9FD1FC53-186A-3327-A359-B0BC7F4360EF> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff62281000 - 0x7fff62284ff5 com.apple.SecCodeWrapper (4.0 - 448.100.6) <813B3E57-6A95-3D7B-9094-C65D687A72B8> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff623f7000 - 0x7fff6251eff0 com.apple.Sharing (1526.31 - 1526.31) <2CB07F08-7794-3BF2-9ED5-BAB5C55C9D2C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff62596000 - 0x7fff625b6ff5 com.apple.sidecar-core (1.0 - 209.40.4) <A5BEBCF6-0B2F-3BA7-9F4C-A65E4AECB2E6> /System/Library/PrivateFrameworks/SidecarCore.framework/Versions/A/SidecarCore 0x7fff625b7000 - 0x7fff625c9ff0 com.apple.sidecar-ui (1.0 - 209.40.4) <55486B3A-B65A-3023-89C7-A154A39D0D7E> /System/Library/PrivateFrameworks/SidecarUI.framework/Versions/A/SidecarUI 0x7fff63931000 - 0x7fff63c27ff7 com.apple.SkyLight (1.600.0 - 451.4) <F5B9065A-E975-36D1-8D53-9FBF02171FAB> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff64474000 - 0x7fff64482ffb com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <820602AB-117B-3C3E-B20B-819CBC97B7A4> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff64cb4000 - 0x7fff64cbdff7 com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <581F31D6-94CB-38AA-BD56-1A63606E516E> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff64d2e000 - 0x7fff64d58ffa com.apple.framework.SystemAdministration (1.0 - 1.0) <926BB2F5-E02C-30B7-949A-20EFE57CF242> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration 0x7fff64f74000 - 0x7fff64f84ff3 com.apple.TCC (1.0 - 1) <FD146B21-6DC0-3B66-BB95-57A5016B1365> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff654a9000 - 0x7fff6556fff0 com.apple.TextureIO (3.10.9 - 3.10.9) <E23E05ED-8190-3564-985E-446F15CB0709> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff656fb000 - 0x7fff656fcfff com.apple.TrustEvaluationAgent (2.0 - 33) <11DF5A28-4410-36A8-B3B8-BF1094BE1544> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff65734000 - 0x7fff6598cff0 com.apple.UIFoundation (1.0 - 662) <DFD3DD4A-E661-3A12-BB02-06898949617D> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff65a23000 - 0x7fff65a29ffe com.apple.URLFormatting (119 - 119.18) <CE5B7B2B-7CB9-3214-BFA2-D6D4F13D7652> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting 0x7fff665ff000 - 0x7fff6661fffc com.apple.UserManagement (1.0 - 1) <E168206A-9DC1-3C67-A9A6-52D816DBD5B1> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff673cb000 - 0x7fff674b5ff8 com.apple.ViewBridge (464.1 - 464.1) <C698BAC9-26C8-39F1-BBC0-F57EBD2EFD7B> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff6765b000 - 0x7fff6765cfff com.apple.WatchdogClient.framework (1.0 - 67.120.2) <3B8EBB6B-77D0-317C-A3DB-D0D2E294B18D> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff679e8000 - 0x7fff67a23fff libAWDSupport.dylib (949) <C4E783A8-A8D8-307D-AD50-3B66A8944B8E> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib 0x7fff67a24000 - 0x7fff67d04ff7 libAWDSupportFramework.dylib (3541.1) <1F4FB417-EE92-3095-9940-C35C93F6F020> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib 0x7fff67d05000 - 0x7fff67d16fff libprotobuf-lite.dylib (3541.1) <3EB3CBE0-544B-38D1-81EB-7D73CA221967> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib 0x7fff67d17000 - 0x7fff67d70ffb libprotobuf.dylib (3541.1) <45F77AE5-5D7A-30E7-9168-5546FDC59CA2> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib 0x7fff67d71000 - 0x7fff67db5ff6 com.apple.awd (1.0 - 949) <DAF51750-FD03-3509-9CBB-83E9EF0FB363> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics 0x7fff68289000 - 0x7fff6828cffa com.apple.dt.XCTTargetBootstrap (1.0 - 16091) <D4F09EC7-C63F-3861-B5DA-3F7C0DFF153D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff68306000 - 0x7fff68314ff5 com.apple.audio.caulk (1.0 - 32.3) <7D3D2F91-8B1D-3558-B324-45BDF11306DB> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff68656000 - 0x7fff68658ff3 com.apple.loginsupport (1.0 - 1) <31F02734-1ECF-37D9-9DF6-7C3BC3A324FE> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff68659000 - 0x7fff6866cffd com.apple.login (3.0 - 3.0) <1DC570FD-29EC-3AE8-BD34-D44C00E4621B> /System/Library/PrivateFrameworks/login.framework/Versions/A/login 0x7fff6869e000 - 0x7fff686aaffd com.apple.perfdata (1.0 - 51.100.6) <2F2B9D0F-CB87-3712-B04B-DA075A48002B> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata 0x7fff6b12f000 - 0x7fff6b13bff9 libAudioStatistics.dylib (1104.84) <CBFD7F79-15F1-3828-B2FF-921F71C91FDC> /usr/lib/libAudioStatistics.dylib 0x7fff6b13c000 - 0x7fff6b16fffa libAudioToolboxUtility.dylib (1104.84) <BB234563-F952-3E7F-B630-4140DB5E0380> /usr/lib/libAudioToolboxUtility.dylib 0x7fff6b176000 - 0x7fff6b1aafff libCRFSuite.dylib (48) <02C52318-C537-3FD8-BBC4-E5BD25430652> /usr/lib/libCRFSuite.dylib 0x7fff6b1ad000 - 0x7fff6b1b7fff libChineseTokenizer.dylib (34) <04A7CB5A-FD68-398A-A206-33A510C115E7> /usr/lib/libChineseTokenizer.dylib 0x7fff6b1b8000 - 0x7fff6b240fff libCoreStorage.dylib (551) <BBD3B3DC-270D-35F2-8C67-4595A257EEBB> /usr/lib/libCoreStorage.dylib 0x7fff6b243000 - 0x7fff6b245ff7 libDiagnosticMessagesClient.dylib (112) <27220E98-6CE2-33E3-BD48-3CC3CE4AA036> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6b28b000 - 0x7fff6b442ffb libFosl_dynamic.dylib (100.4) <68038226-8CAA-36B5-B5D6-510F900B318D> /usr/lib/libFosl_dynamic.dylib 0x7fff6b469000 - 0x7fff6b46fff3 libIOReport.dylib (54) <E3A2148E-C5B2-30A8-ACD3-E081DD02BE90> /usr/lib/libIOReport.dylib 0x7fff6b551000 - 0x7fff6b558fff libMatch.1.dylib (36) <081FB6A9-0482-3697-A98B-6821FF476C6E> /usr/lib/libMatch.1.dylib 0x7fff6b587000 - 0x7fff6b5a7fff libMobileGestalt.dylib (826.120.5) <1977AD00-533A-31AA-8D74-EA6CB962F668> /usr/lib/libMobileGestalt.dylib 0x7fff6b627000 - 0x7fff6b704ff7 libSMC.dylib (20) <5FCE668E-C4D5-3E36-98B9-6DF720DCD886> /usr/lib/libSMC.dylib 0x7fff6b719000 - 0x7fff6b71afff libSystem.B.dylib (1281.100.1) <B6FDA8A9-3D2B-3BD5-B5B0-57D311C0FF3D> /usr/lib/libSystem.B.dylib 0x7fff6b71b000 - 0x7fff6b7a6ff7 libTelephonyUtilDynamic.dylib (5017.1) <4C11A09D-9B7E-3743-B9E6-39B4D466BAF1> /usr/lib/libTelephonyUtilDynamic.dylib 0x7fff6b7a7000 - 0x7fff6b7a8fff libThaiTokenizer.dylib (3) <97DC10ED-3C11-3C89-B366-299A644035E7> /usr/lib/libThaiTokenizer.dylib 0x7fff6b7c0000 - 0x7fff6b7d6fff libapple_nghttp2.dylib (1.39.2) <B99D7150-D4E2-31A2-A594-36DA4B90D558> /usr/lib/libapple_nghttp2.dylib 0x7fff6b80b000 - 0x7fff6b87dff7 libarchive.2.dylib (72.100.1) <20B70252-0C4B-3AFD-8C8D-F51921E9D324> /usr/lib/libarchive.2.dylib 0x7fff6b87e000 - 0x7fff6b917fe5 libate.dylib (3.0.1) <C4A5AE88-4E44-36FA-AD3E-0629AF9B94E0> /usr/lib/libate.dylib 0x7fff6b91b000 - 0x7fff6b91bff3 libauto.dylib (187) <85383E24-1592-36BC-BB39-308B7F1C826E> /usr/lib/libauto.dylib 0x7fff6b91c000 - 0x7fff6b9e0ffe libboringssl.dylib (283.120.1) <96F48388-EEC8-3034-8E8A-8D37DD0E49D9> /usr/lib/libboringssl.dylib 0x7fff6b9e1000 - 0x7fff6b9f1ffb libbsm.0.dylib (60.100.1) <B2331E11-3CBB-3BCF-93A6-12627AE444D0> /usr/lib/libbsm.0.dylib 0x7fff6b9f2000 - 0x7fff6b9fefff libbz2.1.0.dylib (44) <BF40E193-8856-39B7-98F8-7A17B328B1E9> /usr/lib/libbz2.1.0.dylib 0x7fff6b9ff000 - 0x7fff6ba51fff libc++.1.dylib (902.1) <AD0805FE-F98B-3E2F-B072-83782B22DAC9> /usr/lib/libc++.1.dylib 0x7fff6ba52000 - 0x7fff6ba67ffb libc++abi.dylib (902) <771E9263-E832-3985-9477-8F1B2D73B771> /usr/lib/libc++abi.dylib 0x7fff6ba68000 - 0x7fff6ba68fff libcharset.1.dylib (59) <FF23D4ED-A5AD-3592-9574-48486C7DF85B> /usr/lib/libcharset.1.dylib 0x7fff6ba69000 - 0x7fff6ba7afff libcmph.dylib (8) <296A51E6-9661-3AC2-A1C9-F1E3510F91AA> /usr/lib/libcmph.dylib 0x7fff6ba7b000 - 0x7fff6ba92fd7 libcompression.dylib (87) <21F37C2E-B9AA-38CE-9023-B763C8828AC6> /usr/lib/libcompression.dylib 0x7fff6bd6c000 - 0x7fff6bd82ff7 libcoretls.dylib (167) <9E5D1E0C-03F8-37B6-82A1-0D0597021CB8> /usr/lib/libcoretls.dylib 0x7fff6bd83000 - 0x7fff6bd84fff libcoretls_cfhelpers.dylib (167) <C23BE09B-85D1-3744-9E7B-E2B11ACD5442> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6c227000 - 0x7fff6c32bfef libcrypto.44.dylib (47.120.1) <B48C0D1A-CDCB-34E4-921E-00EBFF1208DE> /usr/lib/libcrypto.44.dylib 0x7fff6c32e000 - 0x7fff6c339fff libcsfde.dylib (551) <8FBB94EC-712C-3C0F-A8A9-88EE5F4679EF> /usr/lib/libcsfde.dylib 0x7fff6c341000 - 0x7fff6c3a0ff7 libcups.2.dylib (483.6) <FFE8FE67-A6CC-3C38-A9D7-D411D7B562F1> /usr/lib/libcups.2.dylib 0x7fff6c3a2000 - 0x7fff6c407ff7 libcurl.4.dylib (118.120.2) <F2C246F3-460E-31A7-B900-2A9560533730> /usr/lib/libcurl.4.dylib 0x7fff6c4aa000 - 0x7fff6c4aafff libenergytrace.dylib (21) <DBF8BDEE-7229-3F06-AC10-A28DCC4243C0> /usr/lib/libenergytrace.dylib 0x7fff6c4ab000 - 0x7fff6c4c3fff libexpat.1.dylib (19.60.2) <C9163264-BA81-3CC6-9B8C-48A9A0709DD5> /usr/lib/libexpat.1.dylib 0x7fff6c4d1000 - 0x7fff6c4d3fff libfakelink.dylib (149.1) <122F530F-F10E-3DD5-BBEA-91796BE583F3> /usr/lib/libfakelink.dylib 0x7fff6c4e2000 - 0x7fff6c4e7fff libgermantok.dylib (24) <DD279BF6-E906-30D3-A69E-DC797E95F147> /usr/lib/libgermantok.dylib 0x7fff6c4e8000 - 0x7fff6c4f1ff7 libheimdal-asn1.dylib (564.100.1) <68FA1BE5-8FFC-3345-8980-8D8629EBA451> /usr/lib/libheimdal-asn1.dylib 0x7fff6c4f2000 - 0x7fff6c5e2fff libiconv.2.dylib (59) <F58FED71-6CCA-30E8-9A51-13E9B46E568D> /usr/lib/libiconv.2.dylib 0x7fff6c5e3000 - 0x7fff6c83afff libicucore.A.dylib (64260.0.1) <7B9204AC-EA14-3FF3-B6B9-4C85B37EED79> /usr/lib/libicucore.A.dylib 0x7fff6c854000 - 0x7fff6c855fff liblangid.dylib (133) <36581D30-1C7B-3A58-AA07-36237BD75E0E> /usr/lib/liblangid.dylib 0x7fff6c856000 - 0x7fff6c86eff3 liblzma.5.dylib (16) <4DB30730-DBD1-3503-957A-D604049B98F9> /usr/lib/liblzma.5.dylib 0x7fff6c886000 - 0x7fff6c92dff7 libmecab.dylib (883.11) <66AD729B-2BCC-3347-B9B3-FD88570E884D> /usr/lib/libmecab.dylib 0x7fff6c92e000 - 0x7fff6cb90ff1 libmecabra.dylib (883.11) <2AE744D2-AC95-3720-8E66-4F9C7A79384C> /usr/lib/libmecabra.dylib 0x7fff6cefd000 - 0x7fff6cf2cfff libncurses.5.4.dylib (57) <B0B09D08-A7C9-38E9-8BF4-E4F4882F93A6> /usr/lib/libncurses.5.4.dylib 0x7fff6d05c000 - 0x7fff6d4d8ff5 libnetwork.dylib (1880.120.4) <715FB943-BA01-351C-BEA6-121970472985> /usr/lib/libnetwork.dylib 0x7fff6d4d9000 - 0x7fff6d4f0fff libnetworkextension.dylib (1095.120.6) <782E43F6-1FB9-3A5F-AF24-AC21A63C1A37> /usr/lib/libnetworkextension.dylib 0x7fff6d579000 - 0x7fff6d5acfde libobjc.A.dylib (787.1) <CA836D3E-4595-33F1-B70C-7E39A3FBBE16> /usr/lib/libobjc.A.dylib 0x7fff6d5ad000 - 0x7fff6d5aeff7 libodfde.dylib (26) <2DDA61BF-E92A-3463-B1C4-D59E40D34D34> /usr/lib/libodfde.dylib 0x7fff6d5bf000 - 0x7fff6d5c3fff libpam.2.dylib (25.100.1) <732E8D8E-C630-3EC2-B6C3-A1564E3B68B8> /usr/lib/libpam.2.dylib 0x7fff6d5c6000 - 0x7fff6d5fcff7 libpcap.A.dylib (89.120.1) <CF2ADF15-2D44-3A35-94B4-DD24052F9B23> /usr/lib/libpcap.A.dylib 0x7fff6d63c000 - 0x7fff6d64aff9 libperfcheck.dylib (37.100.2) <4B1B7D59-2A8B-3E32-AAE6-B428252A5204> /usr/lib/libperfcheck.dylib 0x7fff6d64b000 - 0x7fff6d64eff3 libpmenergy.dylib (214.120.1) <81B5A6ED-372A-3F7D-AADD-FAD0BAF582A0> /usr/lib/libpmenergy.dylib 0x7fff6d64f000 - 0x7fff6d651fff libpmsample.dylib (214.120.1) <6065A9C1-4A50-36A3-ACD3-E1C30C988AE1> /usr/lib/libpmsample.dylib 0x7fff6d680000 - 0x7fff6d698fff libresolv.9.dylib (67.40.1) <B0F5D204-7EF2-3B0B-90EF-BB4D196FCC62> /usr/lib/libresolv.9.dylib 0x7fff6d69a000 - 0x7fff6d6deff7 libsandbox.1.dylib (1217.120.7) <728BC15F-9A6C-3634-9427-60C01CB5A5D6> /usr/lib/libsandbox.1.dylib 0x7fff6d6df000 - 0x7fff6d6f1ff7 libsasl2.2.dylib (213.120.1) <E6375405-168D-3B75-8042-C8B329D01AB9> /usr/lib/libsasl2.2.dylib 0x7fff6d6f2000 - 0x7fff6d6f3ff7 libspindump.dylib (281.3) <0C3A8B48-DC31-3F61-B4CC-746157042D0E> /usr/lib/libspindump.dylib 0x7fff6d6f4000 - 0x7fff6d8deff7 libsqlite3.dylib (308.5) <AF518115-4AD1-39F2-9B82-E2640E2221E1> /usr/lib/libsqlite3.dylib 0x7fff6d9d2000 - 0x7fff6d9ffffb libssl.46.dylib (47.120.1) <6209494A-4AAD-344E-992C-03ACD2D4C402> /usr/lib/libssl.46.dylib 0x7fff6da81000 - 0x7fff6dab2ff7 libtidy.A.dylib (17.1) <F4970713-89FD-360D-8670-5B46D8871BB8> /usr/lib/libtidy.A.dylib 0x7fff6dad4000 - 0x7fff6db2eff8 libusrtcp.dylib (1880.120.4) <E5B0C1C5-ADF2-37CF-8F2B-B196D2266474> /usr/lib/libusrtcp.dylib 0x7fff6db2f000 - 0x7fff6db32ffb libutil.dylib (57) <D33B63D2-ADC2-38BD-B8F2-24056C41E07B> /usr/lib/libutil.dylib 0x7fff6db33000 - 0x7fff6db40ff7 libxar.1.dylib (425.2) <943A4CBB-331B-3A04-A11F-A2301189D40B> /usr/lib/libxar.1.dylib 0x7fff6db46000 - 0x7fff6dc28ff7 libxml2.2.dylib (33.3) <262EF7C6-7D83-3C01-863F-36E97F5ACD34> /usr/lib/libxml2.2.dylib 0x7fff6dc2c000 - 0x7fff6dc54fff libxslt.1.dylib (16.9) <86FE4382-BD77-3C19-A678-11EBCD70685A> /usr/lib/libxslt.1.dylib 0x7fff6dc55000 - 0x7fff6dc67ff3 libz.1.dylib (76) <DB120508-3BED-37A8-B439-5235EAB4618A> /usr/lib/libz.1.dylib 0x7fff6e515000 - 0x7fff6e51aff3 libcache.dylib (83) <A5ECC751-A681-30D8-B33C-D192C15D25C8> /usr/lib/system/libcache.dylib 0x7fff6e51b000 - 0x7fff6e526fff libcommonCrypto.dylib (60165.120.1) <C321A74A-AA91-3785-BEBF-BEDC6975026C> /usr/lib/system/libcommonCrypto.dylib 0x7fff6e527000 - 0x7fff6e52efff libcompiler_rt.dylib (101.2) <652A6012-7E5C-3F4F-9438-86BC094526F3> /usr/lib/system/libcompiler_rt.dylib 0x7fff6e52f000 - 0x7fff6e538ff7 libcopyfile.dylib (166.40.1) <40113A69-A81C-3397-ADC6-1D16B9A22C3E> /usr/lib/system/libcopyfile.dylib 0x7fff6e539000 - 0x7fff6e5cbfe3 libcorecrypto.dylib (866.120.3) <5E4B0E50-24DD-3E04-9374-EDA9FFD6257B> /usr/lib/system/libcorecrypto.dylib 0x7fff6e6d8000 - 0x7fff6e718ff0 libdispatch.dylib (1173.100.2) <201EDBF3-0B36-31BA-A7CB-443CE35C05D4> /usr/lib/system/libdispatch.dylib 0x7fff6e719000 - 0x7fff6e74ffff libdyld.dylib (750.5) <7E711A46-5E4D-393C-AEA6-440E2A5CCD0C> /usr/lib/system/libdyld.dylib 0x7fff6e750000 - 0x7fff6e750ffb libkeymgr.dylib (30) <52662CAA-DB1F-30A3-BE13-D6274B1A6D7B> /usr/lib/system/libkeymgr.dylib 0x7fff6e751000 - 0x7fff6e75dff3 libkxld.dylib (6153.121.2) <5EBB4886-C7B6-31D6-AA63-D861B2D58FCE> /usr/lib/system/libkxld.dylib 0x7fff6e75e000 - 0x7fff6e75eff7 liblaunch.dylib (1738.120.8) <07CF647B-F9DC-3907-AD98-2F85FCB34A72> /usr/lib/system/liblaunch.dylib 0x7fff6e75f000 - 0x7fff6e764ff7 libmacho.dylib (959.0.1) <D91DFF00-E22F-3796-8A1C-4C1F5F8FA03C> /usr/lib/system/libmacho.dylib 0x7fff6e765000 - 0x7fff6e767ff3 libquarantine.dylib (110.40.3) <D3B7D02C-7646-3FB4-8529-B36DCC2419EA> /usr/lib/system/libquarantine.dylib 0x7fff6e768000 - 0x7fff6e769ff7 libremovefile.dylib (48) <B5E88D9B-C2BE-3496-BBB2-C996317E18A3> /usr/lib/system/libremovefile.dylib 0x7fff6e76a000 - 0x7fff6e781ff3 libsystem_asl.dylib (377.60.2) <1170348D-2491-33F1-AA79-E2A05B4A287C> /usr/lib/system/libsystem_asl.dylib 0x7fff6e782000 - 0x7fff6e782ff7 libsystem_blocks.dylib (74) <7AFBCAA6-81BE-36C3-8DB0-AAE0A4ACE4C5> /usr/lib/system/libsystem_blocks.dylib 0x7fff6e783000 - 0x7fff6e80afff libsystem_c.dylib (1353.100.2) <935DDCE9-4ED0-3F79-A05A-A123DDE399CC> /usr/lib/system/libsystem_c.dylib 0x7fff6e80b000 - 0x7fff6e80effb libsystem_configuration.dylib (1061.120.2) <EA9BC2B1-5001-3463-9FAF-39FF61CAC87C> /usr/lib/system/libsystem_configuration.dylib 0x7fff6e80f000 - 0x7fff6e812fff libsystem_coreservices.dylib (114) <3D0A3AA8-8415-37B2-AAE3-66C03BCE8B55> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6e813000 - 0x7fff6e81bfff libsystem_darwin.dylib (1353.100.2) <6EEC9975-EE3B-3C95-AA5B-030FD10587BC> /usr/lib/system/libsystem_darwin.dylib 0x7fff6e81c000 - 0x7fff6e823fff libsystem_dnssd.dylib (1096.100.3) <0115092A-E61B-317D-8670-41C7C34B1A82> /usr/lib/system/libsystem_dnssd.dylib 0x7fff6e824000 - 0x7fff6e825ffb libsystem_featureflags.dylib (17) <AFDB5095-0472-34AC-BA7E-497921BF030A> /usr/lib/system/libsystem_featureflags.dylib 0x7fff6e826000 - 0x7fff6e873ff7 libsystem_info.dylib (538) <851693E9-C079-3547-AD41-353F8C248BE8> /usr/lib/system/libsystem_info.dylib 0x7fff6e874000 - 0x7fff6e8a0ff7 libsystem_kernel.dylib (6153.121.2) <9F9902C9-A46F-3CA9-B7F9-5CCFE98FBF75> /usr/lib/system/libsystem_kernel.dylib 0x7fff6e8a1000 - 0x7fff6e8e8fff libsystem_m.dylib (3178) <436CFF76-6A99-36F2-A3B6-8D017396A050> /usr/lib/system/libsystem_m.dylib 0x7fff6e8e9000 - 0x7fff6e910fff libsystem_malloc.dylib (283.100.6) <D4BA7DF2-57AC-33B0-B948-A688EE43C799> /usr/lib/system/libsystem_malloc.dylib 0x7fff6e911000 - 0x7fff6e91effb libsystem_networkextension.dylib (1095.120.6) <6DE86DB0-8CD2-361E-BD6A-A34282B47847> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6e91f000 - 0x7fff6e928ff7 libsystem_notify.dylib (241.100.2) <7E9E2FC8-DF26-340C-B196-B81B11850C46> /usr/lib/system/libsystem_notify.dylib 0x7fff6e929000 - 0x7fff6e931fef libsystem_platform.dylib (220.100.1) <736920EA-6AE0-3B1B-BBDA-7DCDF0C229DF> /usr/lib/system/libsystem_platform.dylib 0x7fff6e932000 - 0x7fff6e93cfff libsystem_pthread.dylib (416.100.3) <77488669-19A3-3993-AD65-CA5377E2475A> /usr/lib/system/libsystem_pthread.dylib 0x7fff6e93d000 - 0x7fff6e941ff3 libsystem_sandbox.dylib (1217.120.7) <20C93D69-6452-3C82-9521-8AE54345C66F> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6e942000 - 0x7fff6e944fff libsystem_secinit.dylib (62.100.2) <E851113D-D5B1-3FB0-9D29-9C7647A71961> /usr/lib/system/libsystem_secinit.dylib 0x7fff6e945000 - 0x7fff6e94cffb libsystem_symptoms.dylib (1238.120.1) <25C3866B-004E-3621-9CD3-B1E9C4D887EB> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6e94d000 - 0x7fff6e963ff2 libsystem_trace.dylib (1147.120) <A1ED1D3A-5FAD-3559-A1D6-1BE4E1C5756A> /usr/lib/system/libsystem_trace.dylib 0x7fff6e965000 - 0x7fff6e96aff7 libunwind.dylib (35.4) <253A12E2-F88F-3838-A666-C5306F833CB8> /usr/lib/system/libunwind.dylib 0x7fff6e96b000 - 0x7fff6e9a0ffe libxpc.dylib (1738.120.8) <68D433B6-DCFF-385D-8620-F847FB7D4A5A> /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: 136736 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=798.9M resident=0K(0%) swapped_out_or_unallocated=798.9M(100%) Writable regions: Total=354.6M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=354.6M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 256K 2 Activity Tracing 256K 1 CG backing stores 2920K 4 CG image 44K 4 CoreAnimation 376K 12 CoreGraphics 8K 1 CoreImage 24K 2 CoreServices 132K 1 CoreUI image data 1360K 12 Dispatch continuations 16.0M 1 Foundation 36K 2 IOKit 23.3M 3 Kernel Alloc Once 8K 1 MALLOC 95.7M 62 MALLOC guard page 32K 8 Mach message 40K 5 Memory Tag 242 12K 1 Memory Tag 251 12K 1 Memory Tag 255 4.0G 44 STACK GUARD 56.1M 39 Stack 228.8M 40 VM_ALLOCATE 2456K 26 __DATA 50.3M 412 __DATA_CONST 20K 1 __FONT_DATA 4K 1 __LINKEDIT 390.9M 10 __OBJC_RO 32.2M 1 __OBJC_RW 1892K 2 __TEXT 408.0M 398 __UNICODE 564K 1 mapped file 105.5M 36 shared memory 648K 16 =========== ======= ======= TOTAL 5.4G 1150 Model: MacBookPro14,3, BootROM 207.0.0.0.0, 4 processors, Quad-Core Intel Core i7, 2,8 GHz, 16 GB, SMC 2.45f4 Graphics: kHW_IntelHDGraphics630Item, Intel HD Graphics 630, spdisplays_builtin Graphics: kHW_AMDRadeonPro560Item, Radeon Pro 560, spdisplays_pcie_device, 4 GB 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.111.1 AirPortDriverBrcmNIC-1610.1) Bluetooth: Version 7.0.5f6, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 PCI Card: pci1b73,1100, sppci_usbxhci, Thunderbolt@196,0,0 USB Device: USB3.0 Hub USB Device: USB 3.0 Bus USB Device: USB2.0 Hub USB Device: Voyager Legend USB Device: Apple T1 Controller USB Device: USB 3.0 Bus USB Device: USB3.1 Hub USB Device: Hub USB Device: LG UltraFine Display Camera USB Device: USB2.1 Hub USB Device: Hub USB Device: USB Controls USB Device: USB Audio Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4 Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4 Thunderbolt Device: UltraFine 5K, LG Electronics, 3, 9.4 ``` ### To Reproduce To reproduce the issue, use the following sample client and server that was already submitted by myself as part of issue #21172 concerning client-certificates that started to appear with Electron 9. Clone and launch nodejs-based sample server, that accepts client certificate based authentications: ``` $ git clone https://github.com/sa-MatteoHausner/electron-cert-auth-issue-server.git $ cd electron-cert-auth-issue-server $ npm install $ node cert_server.js ``` Open second terminal and clone electron-based sample client: ``` $ git clone https://github.com/sa-MatteoHausner/electron-cert-auth-issue-client.git ``` Import the included client certificate `client_no_password.p12` to your operating-system's certificate store - no password is required. On macOS you can simply double click the file. Run electron-based sample client - after launch it will automatically sign-in with the server: ``` $ cd electron-cert-auth-issue-client $ npm install && npm start ``` Once the server requests the client certificate - the Electron instance will crash.
https://github.com/electron/electron/issues/24851
https://github.com/electron/electron/pull/24868
b6f8cd39e5d16a4a936b4fe9c692b348d888eecb
2224d94c7553552ef5eb0192fb3b6b377af42ffe
2020-08-05T13:59:34Z
c++
2020-08-07T03:50:41Z
closed
electron/electron
https://github.com/electron/electron
24,833
["shell/browser/api/electron_api_browser_view.cc", "shell/browser/api/electron_api_web_contents.cc", "shell/browser/api/electron_api_web_contents.h", "shell/browser/api/electron_api_web_contents_view.cc", "spec-main/api-browser-view-spec.ts"]
Proposal: Allow BrowserView to be a newGuest in new-window
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description <!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> The `BrowserView` is much like `BrowserWindow`, but it cannot be used as a "window" for the `new-window` event. Imagine a tabbed layout with several `BrowserView`s, much like the regular browser window. The `webPreferences.nativeWindowOpen` is enabled. *Use-case 1:* The page inside one `BrowserView` tries to open a new window via `window.open()`. There's no way to handle `new-window` and create a new `BrowserView` such that the `window.opener` JavaScript property refers to its opener. *Use-case 2:* A `<form target="_blank" method="POST">` inside `BrowserView` is submitted. A new `BrowserView` can be created and its `WebContents` `loadURL()` method can be used to navigate using `POST` method. But AFAIK there's no way to know what exactly `postData` that form was going to POST. It works fine if the `new-window` is default-prevented and a new `BrowserWindow` is created with the `options.webContents` as a constructor option. But it is ignored for a `BrowserView` ### Proposed Solution <!-- Describe the solution you'd like in a clear and concise manner --> - Allow setting `webContents` in a `BrowserView` constructor options. - Allow `BrowserView` to be a `e.newGuest` in a default-prevented `new-window` event. ### Alternatives Considered <!-- A clear and concise description of any alternative solutions or features you've considered. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24833
https://github.com/electron/electron/pull/26802
6932e17088831dd19e5f678a665fccf24b6d8d74
1e2a2004e9684a1fc0db503db7ade3cac84cb087
2020-08-04T17:52:22Z
c++
2020-12-15T23:52:43Z
closed
electron/electron
https://github.com/electron/electron
24,807
["docs/api/web-contents.md", "lib/browser/api/web-contents.ts", "shell/browser/api/electron_api_web_contents.cc", "shell/browser/api/electron_api_web_contents.h", "spec/api-web-contents-spec.ts"]
Allow us to discover what window opened the current window
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description When a window is opened, I would like to know what window opened it. For example if the window with ID 1 triggered a `window.open` call, I'd like to know that the window with ID 2 was opened by window 1. Currently, the `referrer` information passed to the `new-window` handler only contains a URL property (which in my case is always `''` for some reason). ### Proposed Solution Can the `referrer` argument get an additional property that tells us the ID of the window that's making the `window.open` call? (I'm not sure how this will fit into the new `setWindowOpenOverride` mechanism) Alternatively, maybe the `BrowserWindow` class can have an `openerWindowId` type of property that gives us this information. That would maybe be preferable. ### Alternatives Considered I can work around it by passing in the window ID like so: ``` // ... inside of the browser-window-created handler window.webContents.addListener("new-window", function (): void { [].push.call(arguments, window.id); newWindowHandler.apply(null, arguments); }); ```
https://github.com/electron/electron/issues/24807
https://github.com/electron/electron/pull/35140
697a219bcb7bc520bdf2d39a76387e2f99869a2a
c09c94fc98f261dce4a35847e2dd9699dcd5213e
2020-07-31T18:06:56Z
c++
2022-09-26T16:37:08Z
closed
electron/electron
https://github.com/electron/electron
24,803
["shell/browser/api/electron_api_power_monitor_mac.mm"]
PowerMonitor "resume" and "suspend" event send twice on macOS
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x ] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [ x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x ] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details When I upgrade the electron version 6.1.9 to 8.4.0, the PowerMonitor module "resume" and "suspend" event send twice on macOS. useage: ``` app.on("ready", () => { const { powerMonitor } = require('electron') powerMonitor.on('suspend', () => { mainLog.info('system suspend.') mainWindow.webContents.send('system-status', 'suspend'); }); powerMonitor.on('resume', () => { mainLog.info('system resume.') mainWindow.webContents.send('system-status', 'resume'); }); }); ``` electron-log, main.log: ``` [2020-07-31 11:29:41.926] [info] system suspend. [2020-07-31 11:29:41.933] [info] system suspend. [2020-07-31 11:30:20.169] [info] system resume. [2020-07-31 11:30:21.963] [info] system resume. ``` * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->8.4.0 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->macOS 10.15.6 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 -->8.4.0 ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> just one times "resume" and "suspend" event. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> i receive twice same events. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- 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/24803
https://github.com/electron/electron/pull/24818
30cd9cdf2aa35d726b6bfad86f3894b5b94aa387
06c47c650ae40dde5349b50d20f257030fc143f1
2020-07-31T03:39:04Z
c++
2020-08-05T03:08:45Z
closed
electron/electron
https://github.com/electron/electron
24,794
["patches/node/.patches", "patches/node/lib_use_non-symbols_in_isurlinstance_check.patch", "spec/node-spec.js"]
Cant use WHATWG URL as path for fs functions in the renderer
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.1.2 * **Operating System:** * Windows 10 (1903) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior In the renderer process `fs` functions (such as `fs.readFile` or `fs.createReadStream`) should work with `WHATWG URL`s with "file://" protocol as path argument. ### Actual Behavior Works fine in the main process. Throws `Uncaught TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be one of type string, Buffer, or URL. Received type object` in the renderer. ### To Reproduce Fiddle Gist: https://gist.github.com/7cc7f0c54eef26ad5239e7f0712b605c
https://github.com/electron/electron/issues/24794
https://github.com/electron/electron/pull/24831
a2c82f23422f345f3bba1d150915e0c0cca20e82
6cb23e1d3676ea7eb1780075e8804f49009105e6
2020-07-30T08:36:30Z
c++
2020-08-05T22:05:36Z
closed
electron/electron
https://github.com/electron/electron
24,780
["shell/browser/native_window_views_win.cc", "spec-main/api-browser-window-spec.ts"]
The maximize event is triggered twice
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.1.0 * **Operating System:** Windows 10 * **Last Known Working Electron version:** 9.1.0 ### Expected Behavior one ### Actual Behavior twice ### To Reproduce 1. First, get the bug replay code: ```sh $ git clone https://github.com/kaysonwu/electron-quick-start.git -b master $ yarn install $ yarn dev ``` 2. When the program runs for the first time, click on the title bar 3. In the developer tool console page, you can see the event output twice ### Screenshots ![20200729202825](https://user-images.githubusercontent.com/14865584/88800044-14303200-d1da-11ea-84a5-97331e21f1cf.png) ### Additional Information Similar: [https://github.com/electron/electron/issues/23275#issuecomment-635253811](https://github.com/electron/electron/issues/23275#issuecomment-635253811)
https://github.com/electron/electron/issues/24780
https://github.com/electron/electron/pull/25051
5ed34607511bead8e810f5c6ec8432db00546f06
cd3fadc2fb512161b55f721a599eacc79df4680f
2020-07-29T12:30:26Z
c++
2020-08-24T20:32:08Z
closed
electron/electron
https://github.com/electron/electron
24,755
["BUILD.gn", "filenames.gni", "shell/browser/file_select_helper.cc", "shell/browser/file_select_helper.h", "shell/browser/file_select_helper_mac.mm", "shell/browser/web_dialog_helper.cc"]
Packages cannot be selected in <input file="type"> file selector on macOS
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** v9.0.4 * **Operating System:** mac OS 10.14.6 * **Last Known Working Electron version:**: 2.0.2 ### Expected Behavior [Document packages](https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/DocumentPackages/DocumentPackages.html#//apple_ref/doc/uid/10000123i-CH106-SW1) should be selectable in an `<input type="file">`. (As they are in Firefox, Safari and Chrome.) ### Actual Behavior Packages cannot be selected in an `<input type="file">`. ### Additional Information This is the exact opposite of #13219. Sometimes you *do* want the user to be able to choose a package file - not for apps, perhaps, but certainly for `.pkg`, old-style or large `.pages`, `.keynote` and `.numbers` files, or in the case I'm working with, `.ufo` font source files. Currently, if I have `<input type="file" accept=".ufo"/>`, I can't select the package itself because the dialog opens it as a directory and shows the contained files, and if I have `<input type="file" accept=".ufo" directory/>`, I can't select the package itself because the dialog treats it as a file and not a directory! 🤷 #13220, which addressed #13219, decided to "patch out the broken behavior and look into getting the optimum behavior later". But I don't think it was ever looked into.
https://github.com/electron/electron/issues/24755
https://github.com/electron/electron/pull/25030
7cdc42f43a426990063dfec934a09b7ce5ae4b86
284c1b9539473c209e6da402f7e414113fc293c1
2020-07-28T05:43:13Z
c++
2020-10-28T00:05:28Z
closed
electron/electron
https://github.com/electron/electron
24,735
["lib/worker/init.ts", "spec-main/chromium-spec.ts", "spec-main/fixtures/apps/self-module-paths/index.html", "spec-main/fixtures/apps/self-module-paths/main.js", "spec-main/fixtures/apps/self-module-paths/package.json", "spec-main/fixtures/apps/self-module-paths/renderer.js", "spec-main/fixtures/apps/self-module-paths/worker.js"]
self.module.paths is not set in Worker when loading via loadURL
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.1.1 * **Operating System:** * Linux x64 ### Expected Behavior `self.module.paths` should be set in a Worker by its parent (the renderer). `require` should be able to load modules in the same way as the parent. ### Actual Behavior `self.module.paths` in the Worker is not set when loading it from a renderer that has been loaded via `loadURL`. Hence, `require` cannot find any modules. However, `self.module.paths` is set correctly in the Worker when loading it from a renderer that has been loaded via `loadFile`. ### To Reproduce ```sh $ git clone https://github.com/lgrahl/electron-node-integration-service-worker-crash -b worker-module-paths $ npm install $ npx http-server $ npm start ``` Commit https://github.com/lgrahl/electron-node-integration-service-worker-crash/commit/14a53e7162058574b2238d1c896a7bb6f554d36f
https://github.com/electron/electron/issues/24735
https://github.com/electron/electron/pull/29955
20c1f504ae7babfd5e3374d649605c6ffa2e7b3f
af991123f1cc0e9fe8fd88e42e847c475110176e
2020-07-27T12:57:59Z
c++
2021-07-04T23:48:46Z
closed
electron/electron
https://github.com/electron/electron
24,715
["patches/chromium/.patches", "patches/chromium/worker_feat_add_hook_to_notify_script_ready.patch", "shell/browser/electron_browser_client.cc", "shell/browser/electron_browser_client.h", "shell/renderer/electron_renderer_client.cc", "shell/renderer/electron_renderer_client.h", "shell/renderer/web_worker_observer.cc", "shell/renderer/web_worker_observer.h", "spec-main/chromium-spec.ts"]
Using `nodeIntegrationInWorker: true` with a service worker crashes
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.1.1 * 10.0.0-beta.4 * **Operating System:** * Linux x64 ### Expected Behavior Don't crash when `nodeIntegrationInWorker` is `true` and a service worker is being registered. :slightly_smiling_face: ### Actual Behavior A crash occurs once the service worker is attempted to be registered (blank page, DevTools disconnects). ### To Reproduce Attempt to register a service worker with `nodeIntegrationInWorker` set to `true`. ```sh $ git clone https://github.com/lgrahl/electron-node-integration-service-worker-crash $ npm install $ npm start ``` Commit https://github.com/lgrahl/electron-node-integration-service-worker-crash/commit/97b14f2c599bfd25ce416b8a7ee91d9122bbfe2c
https://github.com/electron/electron/issues/24715
https://github.com/electron/electron/pull/20625
4829b0f816d760eac6b8369f60912aaa42744a27
76e3ee6fe673ef70a4c5a8874ba77977c70f0c82
2020-07-23T23:12:50Z
c++
2020-07-28T01:48:37Z
closed
electron/electron
https://github.com/electron/electron
24,714
["shell/app/electron_crash_reporter_client.cc", "shell/browser/electron_browser_client.cc", "spec-main/api-crash-reporter-spec.ts"]
crash reports are not saved locally when uploadToServer: false on linux
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Issue Details * **Electron Version:** * 9-x-y and above * **Operating System:** * linux * **Last Known Working Electron version:** * 8-x-y ### Expected Behavior crash reports should be saved locally when `uploadToServer: false` ### Actual Behavior <!-- A clear and concise description of what actually happened. --> crashDumps path is empty ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> https://gist.github.com/deepak1556/4e98046880c9ff4fecc03813708a2264
https://github.com/electron/electron/issues/24714
https://github.com/electron/electron/pull/24778
06cb550c759fe44906ef84d7461d7b53d2bdbf51
01023435c05d4bc0fec33ca4f242eb9ce8300441
2020-07-23T22:37:34Z
c++
2020-07-30T00:45:02Z
closed
electron/electron
https://github.com/electron/electron
24,684
["docs/api/web-contents.md", "docs/api/webview-tag.md"]
docs on contents.print pageRanges "Record<string, number>" is unclear: what values should be used?
I have tried to set pageRanges. But it does not seem to work. Probably that is due to me not knowing how to add this option. Unfortunately the docs are not clear to me: https://github.com/electron/electron/blob/master/docs/api/web-contents.md#contentsprintoptions-callback What does "Record<string, number>" mean? I have tried: - an object with properties from and to - a string like this: `1-1` I do not understand what a `Record` is. It is not a JavaScript concept I think. So to put this a bit more clearly: - please explain what a record is - please add where counting begins: Is the first page 0 or 1?
https://github.com/electron/electron/issues/24684
https://github.com/electron/electron/pull/24694
6b1de271a7cba4ae18e3bbc95afa98627a823030
00fc8066de5c6617769567ec0369f10a271426f8
2020-07-22T11:12:17Z
c++
2020-07-23T19:03:52Z
closed
electron/electron
https://github.com/electron/electron
24,647
["shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "shell/browser/ui/win/electron_desktop_window_tree_host_win.h"]
All child windows have active title bar
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 6,7,8,9 * **Operating System:** Window 10 * **Last Known Working Electron version:** 5.0.13 ### Expected Behavior Only one window should have active title bar at one time. ### Actual Behavior All electron windows have active titlebar. ### To Reproduce **index.html** ``` <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <script> // You can also require other files to run in this process function openWin() { let modal = window.open(\'\',\'modal\'); modal.document.write('<h1>Hello</h1>'); } </script> <button onclick="openWin()">Open window</button> </body> </html> ``` **main.js** ``` // Modules to control application life and create native browser window const {app, BrowserWindow} = require('electron') function createWindow () { // Create the browser window. const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { nativeWindowOpen: true } }) mainWindow.webContents.on('new-window', (event, url, frameName, disposition, options, additionalFeatures) => { if (frameName === 'modal') { // open window as modal event.preventDefault() Object.assign(options, { width: 300, height: 300 }) event.newGuest = new BrowserWindow(options) } }) // and load the index.html of the app. mainWindow.loadFile('index.html') // Open the DevTools. // mainWindow.webContents.openDevTools() } // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. app.on('ready', createWindow) // Quit when all windows are closed. app.on('window-all-closed', function () { // On OS X it is common for applications and their menu bar // to stay active until the user quits explicitly with Cmd + Q if (process.platform !== 'darwin') { app.quit() } }) app.on('activate', function () { // On OS X it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (BrowserWindow.getAllWindows().length === 0) { createWindow() } }) // In this file you can include the rest of your app's specific main process // code. You can also put them in separate files and require them here. ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> How it looks: ![image](https://user-images.githubusercontent.com/6961047/87950514-aaac7700-caa7-11ea-8559-8b681ad69b30.png) How it should look like: ![image](https://user-images.githubusercontent.com/6961047/87950689-eb0bf500-caa7-11ea-9dd0-02dd09ee0267.png) ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24647
https://github.com/electron/electron/pull/24847
4523c90dcd06c5e4e82f3685fd0e3e2f776beb23
5f447e4b4f13d75e08febbd26fa425721d9d408e
2020-07-20T14:43:48Z
c++
2020-08-06T16:05:23Z
closed
electron/electron
https://github.com/electron/electron
24,577
["patches/node/.patches", "patches/node/chore_sethostcleanupfinalizationgroupcallback_has_been_removed_from.patch", "patches/node/feat_add_flags_for_low-level_hooks_and_exceptions.patch", "patches/node/fix_allow_preventing_setpromiserejectcallback.patch", "patches/node/fix_expose_tracing_agent_and_use_tracing_tracingcontroller_instead.patch", "shell/app/node_main.cc", "shell/common/api/electron_bindings.cc", "shell/common/node_bindings.cc"]
assert.ok(false) throws TypeError instead of AssertionError
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.0.0 (also tested with `[email protected]`) * **Operating System:** * macOS 10.15.5 * **Last Known Working Electron version:** * 7.3.2 ### Expected Behavior ``` $ yarn add [email protected] $ node_modules/electron/dist/Electron.app/Contents/MacOS/Electron -i > require('assert').ok(false) Thrown: AssertionError [ERR_ASSERTION]: false == true at repl:1:19 at Script.runInContext (vm.js:137:20) at REPLServer.defaultEval (repl.js:386:29) at bound (domain.js:420:14) at REPLServer.runBound [as eval] (domain.js:433:12) at REPLServer.onLine (repl.js:700:10) at REPLServer.emit (events.js:203:13) at REPLServer.EventEmitter.emit (domain.js:476:20) at REPLServer.Interface._onLine (readline.js:316:10) at REPLServer.Interface._line (readline.js:693:8) { generatedMessage: true, code: 'ERR_ASSERTION', actual: false, expected: true, operator: '==' } ``` ### Actual Behavior ``` $ yarn add [email protected] $ node_modules/electron/dist/Electron.app/Contents/MacOS/Electron -i > require('assert').ok(false) Thrown: TypeError: call.getFileName is not a function at getErrMessage (assert.js:270:25) at innerOk (assert.js:361:17) at Function.ok (assert.js:381:3) at repl:1:19 at Script.runInContext (vm.js:127:20) at REPLServer.defaultEval (repl.js:406:29) at bound (domain.js:420:14) at REPLServer.runBound [as eval] (domain.js:433:12) at REPLServer.onLine (repl.js:715:10) at REPLServer.emit (events.js:210:5) ``` ### To Reproduce See expected/actual behavior. ### Additional Information I'm assuming this is an Electron bug since it works fine from the node interpreter. If that's not the case please let me know and I can open an issue with the node project. ``` $ node > process.versions.node '12.13.0' > require('assert').ok(false) Thrown: AssertionError [ERR_ASSERTION]: false == true at repl:1:19 at Script.runInThisContext (vm.js:116:20) at REPLServer.defaultEval (repl.js:404:29) at bound (domain.js:420:14) at REPLServer.runBound [as eval] (domain.js:433:12) at REPLServer.onLine (repl.js:715:10) at REPLServer.emit (events.js:215:7) at REPLServer.EventEmitter.emit (domain.js:476:20) at REPLServer.Interface._onLine (readline.js:316:10) at REPLServer.Interface._line (readline.js:693:8) { generatedMessage: true, code: 'ERR_ASSERTION', actual: false, expected: true, operator: '==' } ```
https://github.com/electron/electron/issues/24577
https://github.com/electron/electron/pull/24579
f0953902db523e05a3d91579d766979f5b7daa36
bcba4baa85248cf3f7a6ae3690f255d4bc10891a
2020-07-15T21:57:34Z
c++
2020-07-20T19:41:52Z
closed
electron/electron
https://github.com/electron/electron
24,523
["BUILD.gn", "electron_paks.gni"]
DOM Element Highlighter doesn't work in 10.0.0
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->10.0.0-beta.10 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->Windows 10 Pro 20H2 (19042.330) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 -->9.1.0 ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> When inspecting the browser window using DevTools, hovering on the elements should highlight the corresponding DOM Element ### Actual Behavior DOM elements are not highlighted ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> 1. Clone https://github.com/electron/electron-quick-start 2. Run `npm i` then `npm start`. The DOM Element Highlighter works as expected. 3. Run `npm I -D electron@beta`, which installs `10.0.0-beta.10` 4. Run `npm start`, and DOM elements are no longer highlighted <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24523
https://github.com/electron/electron/pull/24921
16c32d2eb2ac1184206ec57c2a70edcb3a8cd738
29a7b8f805b71c83a6b2b35221a795fd4235c598
2020-07-12T16:48:49Z
c++
2020-08-10T23:54:05Z
closed
electron/electron
https://github.com/electron/electron
24,499
["shell/browser/api/electron_api_power_monitor_win.cc"]
powerMonitor does not fire 'suspend" event, Re:open 24244
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.4.0 * **Operating System:** * Windows 10 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior Again opening issue [24244](https://github.com/electron/electron/issues/24244) as its not working even after the new changes. electron.remote.powerMonitor should have fired the 'suspend' event and eventually 'The system is going to sleep' should have been printed in the console. <!-- A clear and concise description of what you expected to happen. --> ### Actual Behavior No event is received. <!-- A clear and concise description of what actually happened. --> ### To Reproduce I tried both the scenarios, but it is not working 1) to explicitly put the computer on sleep and hibernate 2) to wait for some time as selected in power options, and let it automatically go to sleep. Try using this Gist link <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> [Gist URL link](https://gist.github.com/gupta-shivam/d364e186dfc0a2cd177c9078c9a576eb) <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24499
https://github.com/electron/electron/pull/25076
8baa9deccdbd2473c99811eaf2291c3d00fce0ff
5ed34607511bead8e810f5c6ec8432db00546f06
2020-07-10T05:46:39Z
c++
2020-08-24T20:09:36Z
closed
electron/electron
https://github.com/electron/electron
24,458
["shell/browser/extensions/electron_extensions_api_client.cc", "shell/renderer/printing/print_render_frame_helper_delegate.cc", "shell/renderer/renderer_client_base.cc", "shell/renderer/renderer_client_base.h"]
Save as PDF from PDF Viewer Print dialog fails
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.1.0 * **Operating System:** * macOS Mojave 10.14.6 * **Last Known Working Electron version:** * just v9. Because in electron version 9 was introduce "pdf viewer", but now it cant print pdf. ### Expected Behavior just print correctly the pdf... ### Actual Behavior when you try to print with "window.print()" a page that load a PDF electron do not respond.... sometimes crash... ### To Reproduce just clone "electron-quick-start" and replace this line : mainWindow.loadFile('index.html') for mainWindow.loadURL('http://www.africau.edu/images/default/sample.pdf') and replace all content script "preload.js" for: window.addEventListener('DOMContentLoaded', () => { window.print(); }); this is a example repo to reproduce the error: https://github.com/rgarcia1990/electron-quick-start just do the normal setup $ git clone https://github.com/rgarcia1990/electron-quick-start $ npm install $ npm start || electron . and when the app electron start will popup print dialog, just try to print! that is all!
https://github.com/electron/electron/issues/24458
https://github.com/electron/electron/pull/25959
708cf44d19847e20a452a8ba4db16fb8fa104d24
eca53aaaf13e7c8376a74557fac4a90583f23977
2020-07-08T13:57:24Z
c++
2020-10-17T01:30:46Z
closed
electron/electron
https://github.com/electron/electron
24,456
["docs/api/web-contents.md", "lib/browser/api/web-contents.ts", "patches/chromium/printing.patch", "spec-main/api-web-contents-spec.ts"]
Printing hangs with pageSize Object
* **Electron Version:** v9.0.1 * **Operating System:** Linux 5.7.4-arch1-1 ### Expected Behavior I expect it to print. ### Actual Behavior The printing hangs. ### To Reproduce ```javascript const { remote } = require ('electron'); const { BrowserWindow } = remote; const win = new BrowserWindow(); win.loadURL('https://google.com'); win.webContents.on('did-finish-load', () => { win.webContents.print({ pageSize: { height: 88.6, width: 35.7 } }, (success, error) => { if(!success) console.error(error); }) }) ``` Here is a fiddle of the error `https://gist.github.com/81597c2a1f33779c7083194b4590f55c`
https://github.com/electron/electron/issues/24456
https://github.com/electron/electron/pull/24476
5737fda154aebbc686078cef63258105ed318d8e
6c4017ff45f22e3859ee5801213d6d7982356fac
2020-07-08T09:16:08Z
c++
2020-07-10T16:42:22Z
closed
electron/electron
https://github.com/electron/electron
24,428
["BUILD.gn", "spec-main/fixtures/module/uv-dlopen.js", "spec-main/fixtures/native-addon/uv-dlopen/binding.gyp", "spec-main/fixtures/native-addon/uv-dlopen/foo.cpp", "spec-main/fixtures/native-addon/uv-dlopen/index.js", "spec-main/fixtures/native-addon/uv-dlopen/main.cpp", "spec-main/fixtures/native-addon/uv-dlopen/package.json", "spec-main/modules-spec.ts", "spec-main/package.json", "spec-main/yarn.lock"]
undefined symbol error when importing a native module that uses `uv_dlopen`
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.5 * **Operating System:** * Ubuntu 18.04 x64 ### Expected Behavior Able to import and use a native module that references `uv_dlopen` and other related functions. ### Actual Behavior Importing a native module that references `uv_dlopen`, `uv_dlsym` and other related functions causes an undefined symbol error. Error: ```bash /home/teokp/source/electron-uv-test/node_modules/electron/dist/electron test.js: symbol lookup error: /home/teokp/source/electron-uv-test/build/Release/uv_module.node: undefined symbol: uv_dlopen ``` ### To Reproduce ```bash git clone https://github.com/koonpeng/electron-uv-test.git npm install npx electron test.js ``` ### Additional Information Comparing the exported symbols of node and electron, node v12.18.1 ```bash $ nm -D $(which node) | grep uv_dl 0000000001332420 T uv_dlclose 00000000013324d0 T uv_dlerror 00000000013323a0 T uv_dlopen 0000000001332460 T uv_dlsym ``` electron 9.0.5 ```bash $ nm -D node_modules/electron/dist/electron | grep uv_dl <empty> ``` It appears that some symbols of libuv are not exported, I tried building a custom version of electron 9.0.5 with these changes ```diff diff --git a/BUILD.gn b/BUILD.gn index f70dbcba1..e46592144 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -1143,7 +1143,7 @@ if (is_mac) { ] } if (is_linux) { - ldflags = [ "-pie" ] + ldflags = [ "-pie", "-Wl,--whole-archive", "obj/third_party/electron_node/deps/uv/libuv.a", "-Wl,--no-whole-archive" ] if (!is_component_build && is_component_ffmpeg) { configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] ``` to force the missing symbols to be exported, which does appears to fix the error.
https://github.com/electron/electron/issues/24428
https://github.com/electron/electron/pull/24659
7ded768743f6da895af27a0102b82cb39e2c53cd
14aba3f0de0e68bcd65eba6647e92c570bd15bba
2020-07-06T08:00:46Z
c++
2020-08-11T10:17:18Z
closed
electron/electron
https://github.com/electron/electron
24,427
["docs/api/ipc-renderer.md"]
ipcRenderer.invoke can't handle custom errors
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description <!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> The product I'm developing now implements a custom error for gRPC to make the error handling. Then, by passing the additional information for the errors made by gRPC to the renderer, I am trying to do a flexible display of error messages with the renderer. For example, I am trying to use custom errors in the following situations - display the ID of data that failed to be received - Handle custom error codes contracted to the gRPC server However, [ipcRenderer.invoke](https://github.com/electron/electron/blob/659e79fc08c6ffc2f7506dd1358918d97d240147/lib/renderer/api/ipc-renderer.ts#L24-L30) does not allow to receive custom error generated on main process because this function make simple Error() instance with error message. ```ts ipcRenderer.invoke = async function (channel, ...args) { const { error, result } = await ipc.invoke(internal, channel, args); if (error) { throw new Error(`Error invoking remote method '${channel}': ${error}`); } return result; }; ``` ### Proposed Solution <!-- Describe the solution you'd like in a clear and concise manner --> I don't fully understand the [ipc.invoke process described in cpp](https://github.com/electron/electron/blob/72a089262e31054eabd342294ccdc4c414425c99/shell/renderer/api/electron_api_ipc_renderer.cc#L105-L129). If ipc.invoke can return a error thrown by the main process directly, I think the following changes will satisfy my wishes. ```ts ipcRenderer.invoke = async function (channel, ...args) { const { error, result } = await ipc.invoke(internal, channel, args); if (error) { throw error; } return result; }; ``` However, the information on the channel drops off. I'd like to come up with a solution here when how to handle custom error policy is decieded. ### Alternatives Considered <!-- A clear and concise description of any alternative solutions or features you've considered. --> ### Additional Information <!-- Add any other context about the problem here. --> If it's the current implementation in relation to the cpp part of the implementation, please let me know. I'm glad to see it. I'm also glad that this custom error policy is being used as an anti If it's a pattern, I'd be happy to point that out as well.
https://github.com/electron/electron/issues/24427
https://github.com/electron/electron/pull/36127
09302a2fc6a4cf45e5a36165b8b3f22b8209525f
a75e8e051e4854bd65721f82ec1acc7c51764f30
2020-07-05T12:30:59Z
c++
2022-10-26T20:56:41Z
closed
electron/electron
https://github.com/electron/electron
24,409
["docs/api/browser-window.md"]
BrowserWindow.isEnabled() return void
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [ ] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [ ] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [ ] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 9.0.5 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> mac os 10.15.5 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> 9.0.5 ### Expected Behavior in electron.d.ts, why BrowserWindow.isEnabled() return void. ### 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 an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ![image](https://user-images.githubusercontent.com/16627047/86461938-59894d00-bd5d-11ea-8a1f-943a236764d0.png)
https://github.com/electron/electron/issues/24409
https://github.com/electron/electron/pull/24473
6c4017ff45f22e3859ee5801213d6d7982356fac
e18f508e664c805c9d5e6796cb190e8c27b3301a
2020-07-03T10:33:56Z
c++
2020-07-10T20:57:29Z
closed
electron/electron
https://github.com/electron/electron
24,407
["shell/browser/browser.h", "shell/browser/browser_mac.mm", "spec-main/api-app-spec.ts"]
Multiple app dock icons shown
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 9.0.5 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> macOS 10.15.5 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> not sure ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> With the example program at [https://github.com/CyrusRoshan/electron-multiple-dock-icon](https://github.com/CyrusRoshan/electron-multiple-dock-icon), I would expect the dock icon to be hidden after the initial click, or multiple quick clicks in succession. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> If clicking once, dock icon behaves as expected, and disappears. If quickly clicking multiple times, dock icons are quickly added. These dock icons persist after app shutdown. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> Clone and run this [electron-quick-start fork](https://github.com/CyrusRoshan/electron-multiple-dock-icon), then quickly click the dock icon. <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ![image](https://user-images.githubusercontent.com/8443502/86441896-c3ecaf80-bcc1-11ea-8fda-619506d19331.png), can also upload a video if that'd help. ### Additional Information <!-- Add any other context about the problem here. --> This may have something to do with the following lines: ``` win.show(); win.setVisibleOnAllWorkspaces(true); win.setAlwaysOnTop(true, 'pop-up-menu'); win.hide(); ``` which are used for keeping BrowserWindows always on top [over fullscreen apps](https://github.com/electron/electron/issues/10078#issuecomment-331581160).
https://github.com/electron/electron/issues/24407
https://github.com/electron/electron/pull/25269
bda63786854a3a64113016da6b489876302575be
43485b8705fb1bd22e5151ab6a879045f4dfebbe
2020-07-03T07:14:16Z
c++
2020-09-03T11:46:24Z
closed
electron/electron
https://github.com/electron/electron
24,385
["patches/node/.patches", "patches/node/darwin_work_around_clock_jumping_back_in_time.patch"]
Intermittent 100% CPU usage on macos
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.* * **Operating System:** * macOS 10.14.*any*, 10.15.*any*, possibly also earlier versions - we do not have a large enough install base on those to measure this. * **Last Known Working Electron version:** * None ### Expected Behavior App sits idle using ~0% CPU ### Actual Behavior App sits idle using ~100% CPU on some machines which have slept since the app started ### To Reproduce Should repro in any electron app on macOS 10.14.* if you can persuade the machine to enter a deep enough sleep state. This causes the clock that `libuv` uses to go backwards in time which in turn causes a short-spin-then-suspend lock in `libuv` to spin almost forever. Unfortunately Apple do not expose what their sleep states are, they vary from machine to machine, and there is no reliable way to force a machine to enter the specific sleep state that resets the clock. ### Additional Information Root cause is https://github.com/libuv/libuv/issues/2891 You need to update the `libuv` that electron bundles to include the fix for that issue.
https://github.com/electron/electron/issues/24385
https://github.com/electron/electron/pull/24394
92d9de93a4c129da91b5eef7c4224edd099516e9
9106d0c6d51b5d3748464bbcbaa492ba16266293
2020-07-01T14:27:19Z
c++
2020-07-03T16:18:51Z
closed
electron/electron
https://github.com/electron/electron
24,384
["shell/browser/osr/osr_render_widget_host_view.cc", "shell/browser/osr/osr_web_contents_view.cc"]
Offscreen transparent window cause app crashing
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.0 - 9.0.5 * **Operating System:** * maxOS 10.15.5, windows 10 x64 * **Last Known Working Electron version:** * 8.3.4 ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> The app should not crash. And the window should be transparent in offscreen mode. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> The app going to crash after the start. ### To Reproduce Minimal code example to reproduce: ``` const { app, BrowserWindow } = require('electron'); app.disableHardwareAcceleration() let win app.whenReady().then(() => { win = new BrowserWindow({ transparent: true, webPreferences: { offscreen: true } }) win.loadURL('http://github.com'); }) ``` <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- 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/24384
https://github.com/electron/electron/pull/24390
99079c3bc77839c57e5bdf9e919cd760ab00a17d
cf74ee3d832ccb420c792f6a773ce98347ed853f
2020-07-01T14:18:22Z
c++
2020-07-06T18:57:14Z
closed
electron/electron
https://github.com/electron/electron
24,290
["shell/browser/notifications/mac/cocoa_notification.mm", "shell/browser/notifications/notification_presenter.cc", "shell/browser/notifications/platform_notification_service.cc"]
Web Notifications API: notifications don't always close from Mac Notification Center when close function is called
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v8.3.1 * **Operating System:** * macOS 10.14.6 * **Last Known Working Electron version:** * N/A ### Expected Behavior I have a simple electron app that generates a notification when a button is clicked. Before the new notification is generated, `close()` is called on the last notification. I would expect that each time the button is clicked, the existing notification closes and a new one pops up. ### Actual Behavior When the button is clicked a new notification is generated, but the old notification does not close. It is important to note that I am logging in the `onclose` event handler for all notifications, and this log shows that all notifications are being closed successfully even though they remain in the Mac Notification Center. I also have logs in the `onerror` event handler for each notification, and these logs are never getting printed, so no errors are occurring. ### To Reproduce Using the sample app provided in the fiddle link below, click on the 'Generate Notification' button ~20 times. Do some clicks back to back, and spread out some clicks by a few seconds. Check the Mac Notification Center and you will see that most of the notifications are still there, even though only the most recent notification should be there. There are rare occasions where the close does work, but it is still unknown how to reproduce this result consistently. Check the renderer logs as well to see that the `onclose` function was triggered for each notification, even though they are still in the Notification Center. **Electron Fiddle Link**: https://gist.github.com/fd16a663434667d2096cd31ec7f2662f ### Additional Information This problem is only seen when running an electron app on Mac. If you run the exact renderer.js and index.html files from the fiddle code in a real chrome web browser, it works correctly (old notifications always clear when new ones come in). I have confirmed that `nodeIntegration` and the notification option `requireInteraction` have no effect on this regardless of if their values are true or false.
https://github.com/electron/electron/issues/24290
https://github.com/electron/electron/pull/24302
2a6d6d6ea795e5e1fec0acd40435d85edc0b66c8
fd0eaf4507835d38b0ab979f1db1118ea4cc529e
2020-06-24T20:17:15Z
c++
2020-07-03T06:04:32Z
closed
electron/electron
https://github.com/electron/electron
24,253
["shell/common/api/electron_api_clipboard.cc", "spec/api-clipboard-spec.js"]
Electron 8: clipboard.writeBuffer is broken
### Issue Details * **Electron Version:** * `8.3.3` * **Operating System:** * Windows 10 2004 * **Last Known Working Electron version:** * `7.x` ### Expected Behavior You can write and read from clipboard via `Buffer`. ### Actual Behavior You can write but not read. ### To Reproduce ```js setTimeout(() => { clipboard.writeBuffer('code/file-list', Buffer.from("Hello World")); console.log("did write") }, 1000); setTimeout(() => { const res = clipboard.readBuffer('code/file-list'); console.log(res.toString()); }, 2000); ``` The output is empty with Electron 8 but filled with Electron 7. //cc @deepak1556
https://github.com/electron/electron/issues/24253
https://github.com/electron/electron/pull/24454
e59370f54115bf37a130f2544dd461514fc69ab1
7dd365784dfcad32e7086cbaf9dc4cc7712f9c33
2020-06-23T06:00:32Z
c++
2020-07-08T22:02:42Z
closed
electron/electron
https://github.com/electron/electron
24,244
["docs/api/power-monitor.md", "shell/browser/api/electron_api_power_monitor_win.cc"]
powerMonitor does not fire 'suspend" event
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.2 * **Operating System:** * Windows 10<!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior electron.remote.powerMonitor should have fired the 'suspend' event and eventually 'The system is going to sleep' should have been printed in the console. <!-- A clear and concise description of what you expected to happen. --> ### Actual Behavior No event is received. <!-- A clear and concise description of what actually happened. --> ### To Reproduce Try to put your computer on sleep from the Start menu of windows. And then check the logs after unlocking the computer after some time. <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> [Github Gist link](https://gist.github.com/gupta-shivam/d364e186dfc0a2cd177c9078c9a576eb) <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24244
https://github.com/electron/electron/pull/24251
abf2e9c93d4a599db737b9bd872d197906254873
6369748a2ae7cda21de5007bedfda608d8495c0b
2020-06-23T00:08:45Z
c++
2020-06-24T14:28:29Z
closed
electron/electron
https://github.com/electron/electron
24,216
["shell/browser/native_window_mac.mm"]
Mac Modal windows should not have rounded corners
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.4 * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * 8x ### Expected Behavior Mac os modal windows that are attached to the parent window as a sheet should have square corners and no border. ### Actual Behavior In Electron 9.0.4 modal windows attached to the parent window have rounded corners and a border like the parent window ### To Reproduce Create a parent window with a modal window attached <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots Example of a modal window using Electron 8x <img width="607" alt="electron-8x" src="https://user-images.githubusercontent.com/1267580/85196606-89efd680-b2db-11ea-9062-a4518076cba2.png"> Example of a modal window using Electron 9.0.4 <img width="618" alt="electron-9x" src="https://user-images.githubusercontent.com/1267580/85196613-9411d500-b2db-11ea-8cce-72bc933454bb.png"> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24216
https://github.com/electron/electron/pull/24250
6369748a2ae7cda21de5007bedfda608d8495c0b
46f58b28c363136623841f9f07513a181d6a487c
2020-06-20T07:51:38Z
c++
2020-06-24T14:30:49Z
closed
electron/electron
https://github.com/electron/electron
24,196
["shell/browser/ui/tray_icon_cocoa.mm"]
Tray event click & double-click not working after setContextMenu on macOS
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [v] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [v] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [v] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.4 * **Operating System:** * macOS 10.15.4 ### Expected Behavior [macOS]Tray event click , double-click & right-click will triggle after setContextMenu. ### Actual Behavior Tray event click , double-click & right-click not fired after setContextMenu. But when I remove setContextMenu, they can be fired again. ### Additional Information [Windows] Behavior is Ok. Maybe contextmenu event prevent to popup?
https://github.com/electron/electron/issues/24196
https://github.com/electron/electron/pull/24200
0629c6c2ead8dbb27f5a82b5e3f100725ba71c91
046a05944ad75d04b3ee3e576ee4705dbdaf6996
2020-06-18T10:09:58Z
c++
2020-06-22T15:24:47Z
closed
electron/electron
https://github.com/electron/electron
24,168
["docs/api/debugger.md", "shell/browser/api/electron_api_debugger.cc", "spec-main/api-debugger-spec.ts", "spec-main/fixtures/sub-frames/debug-frames.html", "spec-main/fixtures/sub-frames/test.js"]
Debugger API does not expose the sessionID from which CDP messages are received
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 8 (but same in sources) * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> * **Operating System:** Windows 10 (1909) * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> * **Last Known Working Electron version:** N/A * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior In the [Debugger.message event](https://www.electronjs.org/docs/api/debugger#event-message), it is necessary to get the `sessionId` to be able to distinguish messages relevant to the page versus any iframes, service workers, etc. I would expect the session ID to be given in the event callback. ### Actual Behavior The debugger domain does not expose these. Messages are emitted only with the method and params, but not the session ID https://github.com/electron/electron/blob/e1e73fa5f5e96af7c352053f34879e44ea8ab0bd/shell/browser/api/electron_api_debugger.cc#L67 In CDP these messages would normally come like: ```js { "method": "Debugger.scriptParsed", "params": { /* bunch o' script info */ }, "sessionId": "8700AB9D8FEA7A760268CE9B50F369E2" // <-- we need this! } ``` ### To Reproduce Fiddle: https://gist.github.com/c480df80e612d06befb2d7068f0aff6e The fiddle connect the debugger to a page with an iframe, and attaches to all targets. It logs all the arguments/data sent in the `message` event. Observe that the session ID is missing; there's no way to distinguish which frame the scriptParsed events are coming from.
https://github.com/electron/electron/issues/24168
https://github.com/electron/electron/pull/24170
82ae18dd1ce2675ec1f0de065fe3568368252809
d330c6f9fe183f7ef2bf968d1244eb03c25ce6fa
2020-06-16T23:39:05Z
c++
2020-07-02T20:04:20Z
closed
electron/electron
https://github.com/electron/electron
24,144
["docs/api/menu-item.md"]
TypeScript: MenuItem click handler is not typed
Referring to https://www.electronjs.org/docs/api/menu-item#new-menuitemoptions The `click` handler is typed as `Function` inside the `electron.d.ts`. And the documentation is wrong around the `browserWindow` property being `BrowserWindow`. It can be `undefined` on macOS when no window is opened.
https://github.com/electron/electron/issues/24144
https://github.com/electron/electron/pull/24147
7cc780d077d1aa950b93db7954d1e321ac88e7f6
a54fcde3f4813cf61453eb4710570eadb289a09a
2020-06-16T05:33:45Z
c++
2020-06-17T17:34:25Z
closed
electron/electron
https://github.com/electron/electron
24,123
["patches/node/.patches", "patches/node/crypto_update_certdata_to_nss_3_56.patch"]
AddTrust CA root cert expiration breaking TLS connections through Node
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v9.0.4 * **Operating System:** * Windows 10 1903 * **Last Known Working Electron version:** * None ### Expected Behavior Node should be able to establish TLS connection using the latest certificates. ### Actual Behavior An expired root certificate is used by Node, resulting in: ``` Error: certificate has expired at TLSSocket.onConnectSecure ``` ### To Reproduce Use Node to establish a TLS connection with websites that use certificates signed by AddTrust (For instance, https://sspai.com/feed). ### Additional Information It seems that the AddTrust root certificate bundled with Node has [expired on May 30](https://support.sectigo.com/articles/Knowledge/Sectigo-AddTrust-External-CA-Root-Expiring-May-30-2020). This causes TLS connections to sites with certificates issued by AddTrust to fail when initiated through Node. New certificates [have been added](https://github.com/nodejs/node/issues/33681) in newer builds of Node. Requests made through Chromium are unaffected as the result of #11741.
https://github.com/electron/electron/issues/24123
https://github.com/electron/electron/pull/25313
860e14c0da9d40689fba83de931ebe8f340443a3
2c5c51afb9a2b422c48a2777e4401f2e76c9375f
2020-06-13T10:08:04Z
c++
2020-09-08T11:28:04Z
closed
electron/electron
https://github.com/electron/electron
24,105
["shell/browser/mac/electron_application.h", "shell/browser/mac/electron_application.mm", "shell/browser/mac/electron_application_delegate.mm"]
macOS: powerMonitor 'shutdown' event is emitted when quitting from the dock icon
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. * Issue https://github.com/electron/electron/issues/15022 reports the same issue, but it was closed without a satisfying resolution ### Issue Details * **Electron Version:** * 8.1.1 * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * N/A ### Expected Behavior The [powerMonitor shutdown event](https://www.electronjs.org/docs/api/power-monitor#event-shutdown-linux-macos) description says that it is emitted when "the system is about to reboot or shut down". Based on the description I would expect this event to be emitted only when the OS is about to shut down or reboot. ### Actual Behavior The powerMonitor shutdown event is also emitted on macOS when the user quits the app from the dock icon (right click on dock icon > Quit). https://github.com/electron/electron/issues/15022 reports the same issue, but it was closed as "expected behavior", but that does not seem correct to me because the behavior does not match the documentation. If this really is expected behavior then I think the documentation should be updated to reflect the actual behavior. ### To Reproduce Electron Fiddle gist link: https://gist.github.com/jwonderly/25681d6dd6cd4b4af590cb2f30f8ecac Run the Fiddle on macOS and quit the app from the dock icon. A dialog box will pop up when the powerMonitor 'shutdown' event is emitted. ### Additional Information Electron might be able to use [NSWorkspaceWillPowerOffNotification](https://developer.apple.com/documentation/appkit/nsworkspacewillpoweroffnotification?language=objc) as the trigger for the powerMonitor shutdown event on macOS.
https://github.com/electron/electron/issues/24105
https://github.com/electron/electron/pull/24111
0b830ba9e54cf3957451eb8c44857bfb731733bb
9c7d73c6d681621d896a70cfd1a1f5d8f3e74e0d
2020-06-12T14:54:51Z
c++
2020-06-16T01:58:28Z
closed
electron/electron
https://github.com/electron/electron
24,066
["lib/browser/api/dialog.js"]
call showCertificateTrustDialog got on error
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.3 * **Operating System:** * macOS 10.15.1 * **Last Known Working Electron version:** * 4.0.5 ### Expected Behavior The CertificateTrust dialog will display. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> A JavaScript error occurred in the main process Uncaught Exception: ``` TypeError: Error processing argument at index 0, conversion failure from #<Object> at Object.showCertificateTrustDialog (electron/js2c/browser_init.js:986:20) at App.<anonymous> (/Users/admin/workspace/demo/dist/main.js:125:233899) at Object.onceWrapper (events.js:291:20) at App.emit (events.js:208:15) ``` ### To Reproduce ```js app.once('certificate-error', (event, webContents, url, error, certificate, callback) => { event.preventDefault(); dialog.showCertificateTrustDialog({ certificate, message: 'install certificate', }).then(() => { console.log('done'); }); }); ```
https://github.com/electron/electron/issues/24066
https://github.com/electron/electron/pull/24091
379bb174e97d14315c9b36acee1d0ea0e542a1ed
b9ac334efc410d11fe57ef5ab6e511f194115e3a
2020-06-11T04:07:38Z
c++
2020-06-13T05:18:09Z
closed
electron/electron
https://github.com/electron/electron
24,053
["shell/browser/api/electron_api_crash_reporter.cc", "shell/browser/api/electron_api_crash_reporter.h", "shell/browser/electron_browser_client.cc", "spec-main/api-crash-reporter-spec.ts"]
Linux crashReporter does not send "guid" attribute
### Issue Details * **Electron Version:** * All up to and including `9-x-y` * **Operating System:** * Linux * **Last Known Working Electron version:** * Never 😢 ### Expected Behavior When a crash occurs the `crashReporter` module should send the crash dump to your reporting URL along with some extra metadata including a `guid` attribute that is a UUID for the user sending the crash to you. ### Actual Behavior No `guid` 😢
https://github.com/electron/electron/issues/24053
https://github.com/electron/electron/pull/24881
433956ce4fa49d3471575b8b3954b20fbab216fa
481b19bee6a5d48405e7f408896602f4c538ac90
2020-06-10T18:11:59Z
c++
2020-08-07T22:30:49Z
closed
electron/electron
https://github.com/electron/electron
24,052
["patches/chromium/fix_use_the_new_mediaplaypause_key_listener_for_internal_chrome.patch", "shell/browser/api/electron_api_global_shortcut.cc"]
Media Keys not working when registered with globalShortcut
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. Note: I am aware of these issues, but they have been closed and are for 8.1.x and 8.2.x releases, not 8.3.x+. https://github.com/electron/electron/issues/20788 https://github.com/electron/electron/issues/22405 ### Issue Details * **Electron Version:** * 8.3.1 (and 9.0.3) * **Operating System:** * macOS 10.15.5 * **Last Known Working Electron version:** * 7.3.1 ### Expected Behavior The expected behavior can be seen in Electron 7.3.1, where the media key event handler is invoked when the media key is pressed. ### Actual Behavior Electron 8.3.1 says that it registers the Media Key event handlers correctly, but in fact it does not. Pressing "Play" on my keyboard will open Apple Music because the Electron globalShortcut is not working. ### To Reproduce **Fiddle: https://gist.github.com/e502767f6dc26942c825a73029f0b20a** Steps: 1. Open Fiddle with my gist and Electron 7.3.1. 2. Launch the Electron app, and grant the accessibility permission in the macOS system settings if needed (there will be a popup if you need to). 3. On your keyboard, press the Next/Prev/PlayPause media keys, and see that in the main process console, the events are being captured and that this code works. 4. Repeat the steps with Electron 8.3.1; the events are not being captured even though Electron returns `true` for four `globalShortcut.register()` invocations.
https://github.com/electron/electron/issues/24052
https://github.com/electron/electron/pull/24145
d8fe7af703c60f3ef251805c167ecd1a5f5facf9
0efcaec4d6ce71221160c96a26a366e9c5bff98a
2020-06-10T16:41:19Z
c++
2020-08-24T17:41:06Z
closed
electron/electron
https://github.com/electron/electron
24,049
["patches/chromium/.patches", "patches/chromium/remove_menu_window_task_item.patch", "shell/browser/ui/win/notify_icon.cc", "shell/browser/ui/win/notify_icon.h"]
Tray menu creates taskbar item
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.2 * **Operating System:** Windows 10 * **Last Known Working Electron version:** 9.0.1 ### Expected Behavior Opening tray icon should not create taskbar item ### Actual Behavior Empty taskbar item is created when tray icon menu is opened ### To Reproduce Create tray menu and open it <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ![tray](https://user-images.githubusercontent.com/6961047/84270140-85346100-ab2a-11ea-9b75-45a40f4c2470.png) ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24049
https://github.com/electron/electron/pull/24097
b665eb6d43d5238ffcd1bb7239e75797cf1bd5d5
2376c45443fc75347acb9f92fddc19276c552e29
2020-06-10T12:57:07Z
c++
2020-06-18T04:21:43Z
closed
electron/electron
https://github.com/electron/electron
24,011
["docs/api/extensions.md", "docs/api/session.md", "shell/browser/api/electron_api_session.cc", "shell/browser/api/electron_api_session.h", "shell/browser/extensions/electron_extension_loader.cc", "shell/browser/extensions/electron_extension_loader.h", "shell/browser/extensions/electron_extension_system.cc", "shell/browser/extensions/electron_extension_system.h"]
Extensions don't work with file:// protocol since 9.0.0
Extracted from #23662, https://github.com/electron/electron/issues/23662#issuecomment-632344005, per https://github.com/electron/electron/issues/23662#issuecomment-637077040 (cc @nornagon). Extensions get loaded for `http://` and `https://` protocols, but don't work for `file://` protocol, which is commonly used. This also affects devtools extensions. Appears to be an undocumented regression from 8.x. Chrome by default behaves the same, but it has an `Allow access to file URLs` switch (the `fileAccess` flag) on extension page at `chrome://extensions/`, which enables the extension to run on `file://` urls (which can be verified on `Content scripts` tab). Any hint how to do that in Electron? React-devtools works on `file://` protocol in Chrome with that flag enabled, but does not work in Electron since 9.0.0, as there are no ways to toggle that setting. ### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.0, 9.0.2 * **Operating System:** * `Linux xps 5.6.14-arch1-1 #1 SMP PREEMPT Wed, 20 May 2020 20:43:19 +0000 x86_64 GNU/Linux` * **Last Known Working Electron version:** * 8.3.1 ### Expected Behavior Installed extensions should load for `file://` protocol automatically, or/and there should be an opt-in/out-out for that (like opt-in in Chrome). Extension content script present in `Content scripts` tab. ### Actual Behavior Extensions are not loaded if the for pages requested over `file://` protocol. No extension content script present in `Content scripts` tab. ### To Reproduce `index.js`: ```js const { app, session, BrowserWindow } = require('electron'); const path = require('path'); (async () => { await app.whenReady() await session.defaultSession.loadExtension(path.join(__dirname, 'extensions/test')) const bw = new BrowserWindow({webPreferences: {sandbox: true}}) //await bw.loadURL('about:blank') //await bw.loadURL('https://example.org/') await bw.loadURL(`file://${path.resolve('simple.html')}`) bw.show() bw.openDevTools() })() ``` Put anything in `simple.html`. Example extension (but you can use any other, e.g. https://github.com/electron/electron/tree/master/spec-main/fixtures/extensions/chrome-api or `react-devtools`) `extensions/test/main.js` ```js console.log('extension loaded') ``` `extensions/test/manifest.json` ```json { "name": "test", "version": "1.0", "content_scripts": [ { "matches": ["<all_urls>"], "js": ["main.js"], "run_at": "document_start" } ], "permissions": [ "file:///*", "http://*/*", "https://*/*" ], "manifest_version": 2 } ``` ### Screenshots `https://`: ![Screenshot_20200608_142638](https://user-images.githubusercontent.com/291301/84025366-18875e00-a994-11ea-8762-259236998f65.png) `file://`: ![Screenshot_20200608_142102](https://user-images.githubusercontent.com/291301/84024876-52a43000-a993-11ea-9ac5-e44ef60ad616.png) ### Additional Information This breaks devtools extension and is a part (if not the main reason) behind #23662.
https://github.com/electron/electron/issues/24011
https://github.com/electron/electron/pull/25198
a75cd89d2a64adccf46d6b8e0ae4eb59ba245c8b
a5e9af330f9c819530549a04f0eed9d79dade443
2020-06-08T11:24:25Z
c++
2021-02-01T22:41:08Z
closed
electron/electron
https://github.com/electron/electron
24,000
["shell/browser/ui/cocoa/electron_ns_window.mm", "spec-main/api-browser-window-spec.ts"]
BrowserWindow with level `screen-saver` stopped going over the tray bar
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** v9.0.2 * **Operating System:** macOS 10.15 * **Last Known Working Electron version:** Worked fine on 8.3.0 (I think #22828 has caused it) ### Expected Behavior Windows with level higher than screen-saver should be able to go over the menubar. ### Actual Behavior It doesn't go above 22px of the tray bar. ### To Reproduce Try moving a BrowserWindow over the menubar with levels above the tray level. <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/24000
https://github.com/electron/electron/pull/23976
71e2b7151cb38bf78ade2c268e88ecffbe8e714c
3eade2c22866acde3ecb243adab2672f60f81806
2020-06-06T16:24:36Z
c++
2020-06-09T18:52:14Z
closed
electron/electron
https://github.com/electron/electron
23,910
["shell/renderer/electron_renderer_client.cc", "spec-main/api-browser-window-spec.ts"]
[Win] libuv loop stops working in a native addon after page reload.
### Issue Details * **Electron Version:** 9.0.0 (beta versions of 9.0.0 too) * **Operating System:** Windows 10 1903 * **Last Known Working Electron version:** 7.2.4 ### Repro steps 1. **require** a native module in a Renderer process (on a page) 2. call libuv function **uv_queue_work** 5 times 3. get **uv_after_work_cb** invoked 5 times 4. reload the page 5. call libuv function **uv_queue_work** 5 times once more ### Expected Behavior 6. get **uv_after_work_cb** invoked 5 times ### Actual Behavior 6. get **uv_after_work_cb** invoked 1 or 2 times, remaining ones never get invoked by libuv ### To Reproduce I prepared a sample project with minimal code that demonstrates the problem: >>> https://github.com/jphw/libuv_problems Please read the README.MD and check src/libuv_problems_module.cpp sources. ### Additional Information **app.allowRendererProcessReuse = false;** works as a workaround for this issue
https://github.com/electron/electron/issues/23910
https://github.com/electron/electron/pull/25869
d57cd09f14c5ba1a3df65d5ddc2d10bf637244b4
e8166db9d7c93e53c5275471e8adef0faf54881b
2020-06-02T16:02:38Z
c++
2020-10-13T16:19:44Z
closed
electron/electron
https://github.com/electron/electron
23,906
["shell/browser/ui/cocoa/electron_touch_bar.mm"]
touchbar segfault
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v11.0.0-nightly.20200601 * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> No segfault ### Actual Behavior <!-- A clear and concise description of what actually happened. --> A segfault ``` * thread #1, name = 'CrBrowserMain', queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x0) frame #0: 0x00000001003f10e0 Electron Framework`::FatalErrorCallback() [inlined] Crash at electron_bindings.cc:150:9 [opt] (lldb) bt * thread #1, name = 'CrBrowserMain', queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x0) * frame #0: 0x00000001003f10e0 Electron Framework`::FatalErrorCallback() [inlined] Crash at electron_bindings.cc:150:9 [opt] frame #1: 0x00000001003f10e0 Electron Framework`::FatalErrorCallback() at electron_bindings.cc:41 [opt] frame #2: 0x000000010244eb74 Electron Framework`::ReportApiFailure() at api.cc:491:5 [opt] frame #3: 0x00000001026f8b72 Electron Framework`::Extend() [inlined] ApiCheck at api.h:143:21 [opt] frame #4: 0x00000001026f8b5d Electron Framework`::Extend() at handles.cc:66 [opt] frame #5: 0x0000000102449367 Electron Framework`::CreateHandle() at handles-inl.h:167:14 [opt] frame #6: 0x000000010040d734 Electron Framework`::PersistentDictionary() [inlined] New at v8.h:10714:40 [opt] frame #7: 0x000000010040d724 Electron Framework`::PersistentDictionary() [inlined] New at v8.h:10701 [opt] frame #8: 0x000000010040d720 Electron Framework`::PersistentDictionary() [inlined] PersistentDictionary at persistent_dictionary.cc:17 [opt] frame #9: 0x000000010040d71a Electron Framework`::PersistentDictionary() at persistent_dictionary.cc:17 [opt] frame #10: 0x00000001003a9153 Electron Framework`-[ElectronTouchBar makeLabelForID:withIdentifier:] at electron_touch_bar.mm:418:47 [opt] frame #11: 0x00007fff36265077 AppKit`__32-[NSTouchBar itemForIdentifier:]_block_invoke + 34 frame #12: 0x00007fff360553b1 AppKit`+[NSAppearance _performWithCurrentAppearance:usingBlock:] + 66 frame #13: 0x00007fff36264ad9 AppKit`-[NSTouchBar itemForIdentifier:] + 1087 frame #14: 0x00007fff36a92b29 AppKit`-[NSTouchBar items] + 295 frame #15: 0x00007fff365d0c11 AppKit`-[NSTouchBarViewController _expandBars:] + 329 frame #16: 0x00007fff365d134e AppKit`-[NSTouchBarViewController _updateTree] + 117 frame #17: 0x00007fff360c8e02 AppKit`_NSViewLayout + 112 frame #18: 0x00007fff360c8a8e AppKit`-[NSView _layoutSubtreeWithOldSize:] + 388 frame #19: 0x00007fff360c8be8 AppKit`-[NSView _layoutSubtreeWithOldSize:] + 734 frame #20: 0x00007fff360c8be8 AppKit`-[NSView _layoutSubtreeWithOldSize:] + 734 frame #21: 0x00007fff360c7e8d AppKit`-[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 1121 frame #22: 0x00007fff360c793e AppKit`-[NSWindow(NSConstraintBasedLayout) _layoutViewTree] + 148 frame #23: 0x00007fff3614dee2 AppKit`-[NSWindow(NSConstraintBasedLayout) layoutIfNeeded] + 251 frame #24: 0x00007fff3614dd20 AppKit`__NSWindowGetDisplayCycleObserverForLayout_block_invoke + 430 frame #25: 0x00007fff3614ce52 AppKit`NSDisplayCycleObserverInvoke + 155 frame #26: 0x00007fff3614c9dc AppKit`NSDisplayCycleFlush + 937 frame #27: 0x00007fff448aa454 QuartzCore`CA::Transaction::run_commit_handlers(CATransactionPhase) + 106 frame #28: 0x00007fff448a9166 QuartzCore`CA::Transaction::commit() + 230 frame #29: 0x00007fff36208a01 AppKit`__62+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayLink]_block_invoke + 266 frame #30: 0x00007fff36927950 AppKit`___NSRunLoopObserverCreateWithHandler_block_invoke + 41 frame #31: 0x00007fff38deb4f5 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23 frame #32: 0x00007fff38deb427 CoreFoundation`__CFRunLoopDoObservers + 457 frame #33: 0x00007fff38dea9c5 CoreFoundation`__CFRunLoopRun + 874 frame #34: 0x00007fff38de9ffe CoreFoundation`CFRunLoopRunSpecific + 462 frame #35: 0x00007fff37a1dabd HIToolbox`RunCurrentEventLoopInMode + 292 frame #36: 0x00007fff37a1d7d5 HIToolbox`ReceiveNextEventCommon + 584 frame #37: 0x00007fff37a1d579 HIToolbox`_BlockUntilNextEventMatchingListInModeWithFilter + 64 frame #38: 0x00007fff36068c99 AppKit`_DPSNextEvent + 883 frame #39: 0x00007fff360674e0 AppKit`-[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352 frame #40: 0x00007fff360591ee AppKit`-[NSApplication run] + 658 frame #41: 0x000000010573ee2c Electron Framework`DoRun at message_pump_mac.mm:836:5 [opt] frame #42: 0x000000010573cf52 Electron Framework`Run at message_pump_mac.mm:191:3 [opt] frame #43: 0x00000001056a6504 Electron Framework`::Run() at thread_controller_with_message_pump_impl.cc:449:12 [opt] frame #44: 0x000000010565d03c Electron Framework`::Run() at run_loop.cc:124:14 [opt] frame #45: 0x000000010403a791 Electron Framework`::RunMainMessageLoopParts() [inlined] MainMessageLoopRun at browser_main_loop.cc:1486:12 [opt] frame #46: 0x000000010403a704 Electron Framework`::RunMainMessageLoopParts() at browser_main_loop.cc:1049 [opt] frame #47: 0x000000010403cbc2 Electron Framework`::Run() at browser_main_runner_impl.cc:150:15 [opt] frame #48: 0x000000010403736b Electron Framework`::BrowserMain() at browser_main.cc:47:28 [opt] frame #49: 0x0000000103def0e8 Electron Framework`::RunServiceManager() [inlined] RunBrowserProcessMain at content_main_runner_impl.cc:518:10 [opt] frame #50: 0x0000000103def08e Electron Framework`::RunServiceManager() at content_main_runner_impl.cc:975 [opt] frame #51: 0x0000000103deeae3 Electron Framework`::Run() at content_main_runner_impl.cc:861:12 [opt] frame #52: 0x0000000107d5d7c9 Electron Framework`::Main() at main.cc:454:29 [opt] frame #53: 0x0000000101eedd88 Electron Framework`::ContentMain() at content_main.cc:19:10 [opt] frame #54: 0x000000010022a286 Electron Framework`ElectronMain at electron_library_main.mm:23:10 [opt] frame #55: 0x00000001000012b1 Electron`main at electron_main.cc:274:10 [opt] frame #56: 0x00007fff72b99cc9 libdyld.dylib`start + 1 ``` ```objc - (NSTouchBarItem*)makeLabelForID:(NSString*)id withIdentifier:(NSString*)identifier { std::string s_id([id UTF8String]); if (![self hasItemWithID:s_id]) return nil; gin_helper::PersistentDictionary settings = settings_[s_id]; // THIS LINE base::scoped_nsobject<NSCustomTouchBarItem> item( [[NSCustomTouchBarItem alloc] initWithIdentifier:identifier]); [item setView:[NSTextField labelWithString:@""]]; [self updateLabel:item withSettings:settings]; return item.autorelease(); } ``` ### To Reproduce ```js 'use strict'; const { app, BrowserWindow, TouchBar } = require('electron'); function createWindow () { const win = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true, }, }); const result = new TouchBar.TouchBarLabel(); const touchBar = new TouchBar({ items: [ result, ], }); win.setTouchBar(touchBar); } app.whenReady().then(createWindow); ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23906
https://github.com/electron/electron/pull/23936
25e4a9431c695201a64e01a28fda79add41a739b
2d47daa8c4edab832fdc7fe0145401e3b92004ca
2020-06-02T12:47:53Z
c++
2020-06-04T17:11:28Z
closed
electron/electron
https://github.com/electron/electron
23,887
["docs/api/app.md"]
allowRendererProcessReuse jsdocs still say that default value is false
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.0 * **Operating System:** Windows 10 The jsdocs of allowRendererProcessReuse still say that the default value is false even though it was flipped to true in Electron 9: >The current default value for this property is `false`.
https://github.com/electron/electron/issues/23887
https://github.com/electron/electron/pull/23888
d3fa5ed1e89a0f087b80e96cdae4ca69c9f78b92
c36981da8b711c68d5c44ba68ff337247d729d2b
2020-06-01T18:39:41Z
c++
2020-06-02T18:09:20Z
closed
electron/electron
https://github.com/electron/electron
23,871
["patches/node/build_modify_js2c_py_to_allow_injection_of_original-fs_and_custom_embedder_js.patch", "spec/asar-spec.js", "spec/fixtures/test.asar/deleteme/a.asar"]
Recursive rmdir in original-fs returns error while trying to remove folder, that contains asar file.
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * `9.0.0`, `10.0.0-beta.1` * **Operating System:** * macOS 10.15.5 ### Expected Behavior ```js const fs = require('original-fs'); fs.rmdirSync('./foldername', { recursive: true }); ``` Should delete folder recursively ### Actual Behavior If the folder contains asar files, code throws an error ``` TypeError: Cannot read property 'code' of null at rimrafSync (internal/fs/rimraf.js:184:13) at internal/fs/rimraf.js:211:9 at Array.forEach (<anonymous>) at _rmdirSync (internal/fs/rimraf.js:210:25) at rimrafSync (internal/fs/rimraf.js:180:7) ``` ### To Reproduce * Create a folder with asar file in it (asar file must be valid) * Create js file (or enter interactive shell) * Execute ```js const fs = require('original-fs'); fs.rmdirSync('./foldername', { recursive: true }); ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots ![image](https://user-images.githubusercontent.com/27638710/83383803-8ceb5b80-a3ee-11ea-959d-685f4c5f4ec9.png) ![image](https://user-images.githubusercontent.com/27638710/83383823-9674c380-a3ee-11ea-9de4-f6481aea945d.png) ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23871
https://github.com/electron/electron/pull/23890
83247c48c3a2968099852558f2054c41291dc8f0
ac81a39e09693338d8da56b73bddb462c673bc47
2020-06-01T07:02:21Z
c++
2020-06-03T17:29:08Z
closed
electron/electron
https://github.com/electron/electron
23,841
["patches/node/.patches", "patches/node/win_use_rtlgenrandom_from_advapi32_dll_directly.patch"]
Electron 9 crashes on boot on Windows 10 2004
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.0 * **Operating System:** Windows 10 Version 2004 (OS Build 19635.1) x64 * **Last Known Working Electron version:** 8.3.0 ### Expected Behavior Electron boots correctly. ### Actual Behavior Electron crashes early in the boot sequence: ``` > electron.exe!uv_fatal_error(const int errorno, const char * syscall) Line 62 C electron.exe!uv_winapi_init() Line 149 C electron.exe!uv_init() Line 205 C [Inline Frame] electron.exe!uv__once_inner(uv_once_s * guard, void(*)() callback) Line 51 C electron.exe!uv_once(uv_once_s * guard, void(*)() callback) Line 73 C electron.exe!uv_hrtime() Line 458 C [Inline Frame] electron.exe!node::performance::`dynamic initializer for 'timeOrigin'() Line 42 C++ electron.exe!_GLOBAL__sub_I_node_perf.cc() Line 0 C++ electron.exe!_initterm(void(*)() * first, void(*)() * last) Line 16 C++ ``` syscall is "GetModuleHandleA", GetLastError is "The specified module could not be found." ### To Reproduce Just try to run electron.exe.
https://github.com/electron/electron/issues/23841
https://github.com/electron/electron/pull/24030
3eade2c22866acde3ecb243adab2672f60f81806
9554d063a5cb0d31feb308cfef22e8380df57231
2020-05-29T02:54:16Z
c++
2020-06-09T21:26:33Z
closed
electron/electron
https://github.com/electron/electron
23,828
[".circleci/config.yml", "BUILD.gn", "script/check-symlinks.js", "script/zip_manifests/dist_zip.mac_mas.x64.manifest", "shell/app/electron_main_delegate.cc", "shell/app/node_main.cc", "shell/browser/api/electron_api_crash_reporter.cc", "shell/browser/electron_browser_client.cc", "shell/renderer/api/electron_api_crash_reporter_renderer.cc"]
Electron 9.0.0: Mac App Store rejection - ITMS-90332: Invalid Symbolic Link
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.0 * **Operating System:** MacOS * **Last Known Working Electron version:** Electron 8 Release to Mac App Store failed with below error: ITMS-90332: Invalid Symbolic Link - The symbolic link 'com.my.app.pkg/Payload/MyApp.app/Contents/Frameworks/Electron Framework.framework/Helpers' resolves to an invalid location. Make sure that the symbolic link does not resolve to itself, and that the location exists and is contained within the app bundle. I've checked `electron-v9.0.0-mas-x64.zip` file from `~/Library/Caches/electron`, open the package content of `Electron.app` and I found it contains an invalid alias at `Electron.app/Contents/Frameworks/Electron Framework.framework/Helpers`. I am not sure if this file is added on purpose - it is not in electron 8 release. ### Expected Behavior <!-- A clear and concise description of what actually happened. --> App should be able to release to App Store ### Actual Behavior Apple rejected the build
https://github.com/electron/electron/issues/23828
https://github.com/electron/electron/pull/24158
cf284991d84be0395fd8c4fbcc9ce890f38bf41d
09c0ee8f87809f144da9edd725a2e793b8d51b0e
2020-05-28T15:21:11Z
c++
2020-06-16T21:19:57Z
closed
electron/electron
https://github.com/electron/electron
23,767
["shell/browser/native_window_mac.mm"]
electron 9.0.0 browser window vibrancy
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.0 * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * 8.3.0 ### Expected Behavior Using the BrowserWindow vibrancy option should cover the entire window with the vibrancy effect ### Actual Behavior The two top corners are rounded off and leave a white area ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> with electron fiddle: https://gist.github.com/6359c273a410d2efc056751a6720982a <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> <img width="617" alt="window-vibrancy" src="https://user-images.githubusercontent.com/1267580/82911240-f0e3cf00-9f6b-11ea-9714-dd8e15d69f0f.png"> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23767
https://github.com/electron/electron/pull/23779
7b0a84477ae8ae8817c560cd687e3222087b9d58
5d88d0ee747ba99193340479e1ef3ee907cccce2
2020-05-26T14:15:09Z
c++
2020-05-27T21:07:24Z
closed
electron/electron
https://github.com/electron/electron
23,757
["shell/browser/electron_browser_client.cc", "shell/browser/protocol_registry.cc", "shell/browser/protocol_registry.h", "spec-main/chromium-spec.ts", "spec/webview-spec.js"]
9.0.0 does not display local images
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v9.0.0 * **Operating System:** * Windows 10 * **Last Known Working Electron version:** * v8.3.0 ### Expected Behavior My app shows a gallery of images from local disk. Electron 8.2.0 would show images. v9.0.0 shows blanks with error: ``` GET file:///C:/VHA/vha-videos/filmstrips/6f3acc0aeee45a7af5404e3849d8719f.jpg net::ERR_UNKNOWN_URL_SCHEME ``` ### Actual Behavior App does not show local images ### To Reproduce Clone https://github.com/whyboris/Video-Hub-App Run the app, create a "hub" (give it a folder with videos) and it will create a gallery of images. Exit the app, update to Electron 9 (comment out 2 lines of `shell.openItem`) and run app again <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots ![image](https://user-images.githubusercontent.com/17264277/82849048-31880d80-9ec4-11ea-95fc-6639cf36e858.png) ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23757
https://github.com/electron/electron/pull/28489
fe0da255b6debfd219669addc02463d4e1858935
e454bded3c978e792fd6c8fd647e4214719e8191
2020-05-26T00:13:35Z
c++
2021-04-07T01:46:23Z
closed
electron/electron
https://github.com/electron/electron
23,741
["shell/browser/net/electron_url_loader_factory.cc"]
Intercepted Protocols follow redirects, but chromium is unaware of those
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details When protocol's interceptor (created using [protocol.interceptStreamProtocol(scheme, handler[, completion])](https://www.electronjs.org/docs/api/protocol#protocolinterceptstreamprotocolscheme-handler-completion)) handles a redirect (with a 30X HTTP status code, and the 'Location' header set with a new resource location), it is being followed (resources are being downloaded from a new URL), however, Chromium is not-aware of the redirect (e.g. window.location is not updated). This causes invalid handling of requests with relative paths on the redirected page. For example: 1. Navigate to https://google.com/ 2. Server will send a redirect to https://www.google.com/ 3. Electron will download https://www.google.com/ 4. The site (https://www.google.com/), requests resources (images, style sheets etc) with a relative path (e.g. `<img alt="Google" id="hplogo" src="/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" style="padding-top:109px" data-atf="1" width="272" height="92">` 5. Electron tries to get the resource from https://google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png instead of https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png 6. The request fails with 404 * **Electron Version:** * Found on 7.2.1, tested and confirmed on 9.0.0, and latest from master * **Operating System:** * Found on Windows, * **Last Known Working Electron version:** * 4.2.9 (should be working before https://github.com/electron/electron/pull/18464/files) ### Expected Behavior The intercepted protocol should follow Redirects, and chromium should be aware of those (e.g. window.location should be updated) <!-- A clear and concise description of what you expected to happen. --> ### Actual Behavior The intercepted protocol follows Redirect, but chromium isn't aware of those (resulting in broken handling of sub-requests) <!-- A clear and concise description of what actually happened. --> ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> ``` git clone https://github.com/wjch-krl/electron-redirects cd electron-redirects npm install npm run start ``` It will start a new application, that would navigate to http://google.com/, with protocol interceptor <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots ![image](https://user-images.githubusercontent.com/6430297/82799806-ef86a980-9e7a-11ea-95ce-a6cf0699dee9.png) <!-- 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/23741
https://github.com/electron/electron/pull/23742
5918dd6e6567dc841aa1d47c4b5593cb3ac97355
5218a6e6abc7f3df38c079ca18c3533c313de095
2020-05-25T09:47:01Z
c++
2020-06-02T05:20:34Z
closed
electron/electron
https://github.com/electron/electron
23,681
["docs/api/menu-item.md", "lib/browser/api/menu-item-roles.js"]
About menu role does nothing on Windows
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> v8.2.5 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> Windows 10 (18363) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior Using just role: ```js { role: 'about' }, ``` does the same as: ```js app.showAboutPanel() ``` Docs: https://www.electronjs.org/docs/api/app#appshowaboutpanel ### Actual Behavior About menu role does nothing on Windows. ### To Reproduce Use menu item with `about` role: https://github.com/electron/electron/blob/5d657dece4102e5e5304d42e8004b6ad64c0fcda/lib/browser/api/menu-item-roles.js#L176 ### Additional Information Related issue: * https://github.com/electron/electron/issues/19153 * https://github.com/electron/electron/issues/22456
https://github.com/electron/electron/issues/23681
https://github.com/electron/electron/pull/23687
5ed2512881b29f92a2a4f8e7811987b13ccb8529
78d74bf8b4af08e85fe5b17114f5947315de36da
2020-05-20T16:20:05Z
c++
2020-05-21T22:38:26Z
closed
electron/electron
https://github.com/electron/electron
23,664
["shell/browser/electron_browser_client.cc", "spec-main/chromium-spec.ts"]
Electron 9.0.0 webSecurity option no longer disables CORS
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.0 <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> * **Operating System:** Windows 10 (1904) <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> * **Last Known Working Electron version:** 8.2.0 <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> Setting BrowserWindow webPreferences: { webSecurity: false } should disable the CORS policy ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Although I am receiving the electron security warnings for "Disabled webSecurity","allowRunningInsecureContent" and "Insecure Content-Security-Policy" in the console I am still getting COR policy errors on my requests. **Here is an example:** Access to XMLHttpRequest at 'http://localhost:8080/users/login' from origin 'http://localhost:3000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
https://github.com/electron/electron/issues/23664
https://github.com/electron/electron/pull/25463
a200b1560044aef7f0668ab4a22bc6442b130cd1
993eab691fbb126f367d7f890825b26c5bc1141b
2020-05-19T15:16:00Z
c++
2020-09-16T21:55:53Z
closed
electron/electron
https://github.com/electron/electron
23,640
["patches/chromium/feat_enable_offscreen_rendering_with_viz_compositor.patch", "shell/browser/osr/osr_host_display_client.cc", "shell/browser/osr/osr_host_display_client.h", "shell/browser/osr/osr_render_widget_host_view.cc", "shell/browser/osr/osr_render_widget_host_view.h"]
heap use-after-free in OSR
Abridged report: ``` ==529==ERROR: AddressSanitizer: heap-use-after-free on address 0x6030000d5680 at pc 0x55d10f042120 bp 0x7f03d170ef30 sp 0x7f03d170ef28 READ of size 1 at 0x6030000d5680 thread T6 (VizCompositorTh) #0 0x55d10f04211f in mojo::SequenceLocalSyncEventWatcher::SequenceLocalState::OnEventSignaled() ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:214:47 [...] #9 0x55d104fcd6a7 in viz::mojom::DisplayClientProxy::IsOffscreen(bool*) ./gen/services/viz/privileged/mojom/compositing/display_private.mojom.cc:789:28 #10 0x55d11adfe260 in viz::OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(unsigned long, viz::mojom::DisplayClient*) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:234:25 [...] 0x6030000d5680 is located 16 bytes inside of 24-byte region [0x6030000d5670,0x6030000d5688) freed by thread T6 (VizCompositorTh) here: #0 0x55d1015515dd in operator delete(void*) /b/s/w/ir/cache/builder/src/third_party/llvm/compiler-rt/lib/asan/asan_new_delete.cpp:160:3 [...] #9 0x55d10f0136da in mojo::internal::InterfacePtrStateBase::~InterfacePtrStateBase() ./../../mojo/public/cpp/bindings/lib/interface_ptr_state.cc:15:20 [...] #26 0x55d11ae4c3a0 in viz::FrameSinkManagerImpl::DestroyCompositorFrameSink(viz::FrameSinkId const&, base::OnceCallback<void ()>) ./../../components/viz/service/frame_sinks/frame_sink_manager_impl.cc:192:18 [...] previously allocated by thread T6 (VizCompositorTh) here: [...] #6 0x55d104fcd6a7 in viz::mojom::DisplayClientProxy::IsOffscreen(bool*) ./gen/services/viz/privileged/mojom/compositing/display_private.mojom.cc:789:28 #7 0x55d11adfe260 in viz::OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(unsigned long, viz::mojom::DisplayClient*) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:234:25 ``` Full ASan report: <details> ``` ================================================================= ==529==ERROR: AddressSanitizer: heap-use-after-free on address 0x6030000d5680 at pc 0x55d10f042120 bp 0x7f03d170ef30 sp 0x7f03d170ef28 READ of size 1 at 0x6030000d5680 thread T6 (VizCompositorTh) #0 0x55d10f04211f in mojo::SequenceLocalSyncEventWatcher::SequenceLocalState::OnEventSignaled() ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:214:47 #1 0x55d10f04b109 in Run ./../../base/callback.h:133:12 #2 0x55d10f04b109 in mojo::SyncHandleRegistry::Wait(bool const**, unsigned long) ./../../mojo/public/cpp/bindings/lib/sync_handle_registry.cc:153:20 #3 0x55d10f0479ae in mojo::SyncEventWatcher::SyncWatch(bool const**, unsigned long) ./../../mojo/public/cpp/bindings/lib/sync_event_watcher.cc:51:28 #4 0x55d10f0429ef in SyncWatch ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:162:34 #5 0x55d10f0429ef in mojo::SequenceLocalSyncEventWatcher::SyncWatch(bool const*) ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:282:41 #6 0x55d10f02a743 in mojo::internal::MultiplexRouter::InterfaceEndpoint::SyncWatch(bool const*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:147:27 #7 0x55d10f000d5e in mojo::InterfaceEndpointClient::SendMessageWithResponder(mojo::Message*, bool, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:335:16 #8 0x55d10f001617 in mojo::InterfaceEndpointClient::AcceptWithResponder(mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:247:10 #9 0x55d104fcd6a7 in viz::mojom::DisplayClientProxy::IsOffscreen(bool*) ./gen/services/viz/privileged/mojom/compositing/display_private.mojom.cc:789:28 #10 0x55d11adfe260 in viz::OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(unsigned long, viz::mojom::DisplayClient*) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:234:25 #11 0x55d11adfd740 in viz::OutputSurfaceProviderImpl::CreateOutputSurface(unsigned long, bool, viz::mojom::DisplayClient*, viz::RendererSettings const&) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:118:9 #12 0x55d11ae898bc in viz::RootCompositorFrameSinkImpl::Create(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>, viz::FrameSinkManagerImpl*, viz::OutputSurfaceProvider*, unsigned int, bool) ./../../components/viz/service/frame_sinks/root_compositor_frame_sink_impl.cc:40:50 #13 0x55d11ae4ae3a in viz::FrameSinkManagerImpl::CreateRootCompositorFrameSink(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>) ./../../components/viz/service/frame_sinks/frame_sink_manager_impl.cc:170:37 #14 0x55d104fe3365 in viz::mojom::FrameSinkManagerStubDispatch::Accept(viz::mojom::FrameSinkManager*, mojo::Message*) ./gen/services/viz/privileged/mojom/compositing/frame_sink_manager.mojom.cc:1354:13 #15 0x55d10effd618 in mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:554:54 #16 0x55d10f015bc3 in mojo::MessageDispatcher::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/message_dispatcher.cc:41:19 #17 0x55d10f001804 in mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:356:22 #18 0x55d10f025beb in mojo::internal::MultiplexRouter::ProcessIncomingMessage(mojo::internal::MultiplexRouter::MessageWrapper*, mojo::internal::MultiplexRouter::ClientCallBehavior, base::SequencedTaskRunner*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:953:42 #19 0x55d10f023cfc in mojo::internal::MultiplexRouter::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:620:38 #20 0x55d10f015bc3 in mojo::MessageDispatcher::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/message_dispatcher.cc:41:19 #21 0x55d10efef890 in mojo::Connector::DispatchMessage(mojo::Message) ./../../mojo/public/cpp/bindings/lib/connector.cc:539:49 #22 0x55d10eff2564 in mojo::Connector::ReadAllAvailableMessages() ./../../mojo/public/cpp/bindings/lib/connector.cc:627:12 #23 0x55d10eff1b52 in mojo::Connector::OnHandleReadyInternal(unsigned int) ./../../mojo/public/cpp/bindings/lib/connector.cc:446:3 #24 0x55d101613b9c in Run ./../../base/callback.h:133:12 #25 0x55d101613b9c in mojo::SimpleWatcher::DiscardReadyState(base::RepeatingCallback<void (unsigned int)> const&, unsigned int, mojo::HandleSignalsState const&) ./../../mojo/public/cpp/system/simple_watcher.h:194:14 #26 0x55d10f08c3a5 in Run ./../../base/callback.h:133:12 #27 0x55d10f08c3a5 in mojo::SimpleWatcher::OnHandleReady(int, unsigned int, mojo::HandleSignalsState const&) ./../../mojo/public/cpp/system/simple_watcher.cc:292:14 #28 0x55d10f08d44d in Invoke<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> ./../../base/bind_internal.h:490:12 #29 0x55d10f08d44d in MakeItSo<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> ./../../base/bind_internal.h:644:5 #30 0x55d10f08d44d in RunImpl<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), std::__1::tuple<base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState>, 0, 1, 2, 3> ./../../base/bind_internal.h:697:12 #31 0x55d10f08d44d in 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 ()>::RunOnce(base::internal::BindStateBase*) ./../../base/bind_internal.h:666:12 #32 0x55d10dbb68b7 in Run ./../../base/callback.h:99:12 #33 0x55d10dbb68b7 in base::TaskAnnotator::RunTask(char const*, base::PendingTask*) ./../../base/task/common/task_annotator.cc:142:33 #34 0x55d10dc0f7fa in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*) ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:321:23 #35 0x55d10dc0efdf in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWork() ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:246:36 #36 0x55d10dace173 in base::MessagePumpDefault::Run(base::MessagePump::Delegate*) ./../../base/message_loop/message_pump_default.cc:39:55 #37 0x55d10dc10f07 in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:425:12 #38 0x55d10db57088 in base::RunLoop::Run() ./../../base/run_loop.cc:124:14 #39 0x55d10dc9214d in base::Thread::Run(base::RunLoop*) ./../../base/threading/thread.cc:309:13 #40 0x55d10dc92c4b in base::Thread::ThreadMain() ./../../base/threading/thread.cc:380:3 #41 0x55d10dd9788b in base::(anonymous namespace)::ThreadFunc(void*) ./../../base/threading/platform_thread_posix.cc:81:13 #42 0x7f03eb6936da in start_thread ??:0:0 0x6030000d5680 is located 16 bytes inside of 24-byte region [0x6030000d5670,0x6030000d5688) freed by thread T6 (VizCompositorTh) here: #0 0x55d1015515dd in operator delete(void*) /b/s/w/ir/cache/builder/src/third_party/llvm/compiler-rt/lib/asan/asan_new_delete.cpp:160:3 #1 0x55d10f021be6 in operator() ./../../buildtools/third_party/libc++/trunk/include/memory:2378:5 #2 0x55d10f021be6 in reset ./../../buildtools/third_party/libc++/trunk/include/memory:2633:7 #3 0x55d10f021be6 in mojo::internal::MultiplexRouter::InterfaceEndpoint::DetachClient() ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:104:19 #4 0x55d10f021766 in mojo::internal::MultiplexRouter::DetachEndpointClient(mojo::ScopedInterfaceEndpointHandle const&) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:497:13 #5 0x55d10effecab in mojo::InterfaceEndpointClient::~InterfaceEndpointClient() ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:178:33 #6 0x55d10effeedd in mojo::InterfaceEndpointClient::~InterfaceEndpointClient() ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:175:53 #7 0x55d10f0136da in operator() ./../../buildtools/third_party/libc++/trunk/include/memory:2378:5 #8 0x55d10f0136da in reset ./../../buildtools/third_party/libc++/trunk/include/memory:2633:7 #9 0x55d10f0136da in mojo::internal::InterfacePtrStateBase::~InterfacePtrStateBase() ./../../mojo/public/cpp/bindings/lib/interface_ptr_state.cc:15:20 #10 0x55d11ae8b60d in ~InterfacePtrState ./../../mojo/public/cpp/bindings/lib/interface_ptr_state.h:127:32 #11 0x55d11ae8b60d in ~Remote ./../../mojo/public/cpp/bindings/remote.h:87:21 #12 0x55d11ae8b60d in viz::RootCompositorFrameSinkImpl::~RootCompositorFrameSinkImpl() ./../../components/viz/service/frame_sinks/root_compositor_frame_sink_impl.cc:165:1 #13 0x55d11ae8b76d in viz::RootCompositorFrameSinkImpl::~RootCompositorFrameSinkImpl() ./../../components/viz/service/frame_sinks/root_compositor_frame_sink_impl.cc:162:61 #14 0x55d11ae5fa71 in operator() ./../../buildtools/third_party/libc++/trunk/include/memory:2378:5 #15 0x55d11ae5fa71 in reset ./../../buildtools/third_party/libc++/trunk/include/memory:2633:7 #16 0x55d11ae5fa71 in ~unique_ptr ./../../buildtools/third_party/libc++/trunk/include/memory:2587:19 #17 0x55d11ae5fa71 in ~pair ./../../buildtools/third_party/libc++/trunk/include/utility:297:29 #18 0x55d11ae5fa71 in destroy ./../../buildtools/third_party/libc++/trunk/include/memory:1920:64 #19 0x55d11ae5fa71 in __destroy<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl>>>> ./../../buildtools/third_party/libc++/trunk/include/memory:1782:18 #20 0x55d11ae5fa71 in destroy<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl>>>> ./../../buildtools/third_party/libc++/trunk/include/memory:1619:14 #21 0x55d11ae5fa71 in __destruct_at_end ./../../buildtools/third_party/libc++/trunk/include/vector:426:9 #22 0x55d11ae5fa71 in __destruct_at_end ./../../buildtools/third_party/libc++/trunk/include/vector:833:17 #23 0x55d11ae5fa71 in std::__1::vector<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl> > >, std::__1::allocator<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl> > > > >::erase(std::__1::__wrap_iter<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl> > > const*>, std::__1::__wrap_iter<std::__1::pair<viz::FrameSinkId, std::__1::unique_ptr<viz::RootCompositorFrameSinkImpl, std::__1::default_delete<viz::RootCompositorFrameSinkImpl> > > const*>) ./../../buildtools/third_party/libc++/trunk/include/vector:1738:15 #24 0x55d11ae4c3a0 in erase ./../../base/containers/flat_tree.h:792:22 #25 0x55d11ae4c3a0 in erase<viz::FrameSinkId> ./../../base/containers/flat_tree.h:784:3 #26 0x55d11ae4c3a0 in viz::FrameSinkManagerImpl::DestroyCompositorFrameSink(viz::FrameSinkId const&, base::OnceCallback<void ()>) ./../../components/viz/service/frame_sinks/frame_sink_manager_impl.cc:192:18 #27 0x55d104fe547c in viz::mojom::FrameSinkManagerStubDispatch::AcceptWithResponder(viz::mojom::FrameSinkManager*, mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiverWithStatus, std::__1::default_delete<mojo::MessageReceiverWithStatus> >) ./gen/services/viz/privileged/mojom/compositing/frame_sink_manager.mojom.cc:1781:13 #28 0x55d11ae5a32c in viz::mojom::FrameSinkManagerStub<mojo::RawPtrImplRefTraits<viz::mojom::FrameSinkManager> >::AcceptWithResponder(mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiverWithStatus, std::__1::default_delete<mojo::MessageReceiverWithStatus> >) ./gen/services/viz/privileged/mojom/compositing/frame_sink_manager.mojom.h:309:12 #29 0x55d10effd563 in mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:528:56 #30 0x55d10f015bc3 in mojo::MessageDispatcher::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/message_dispatcher.cc:41:19 #31 0x55d10f001804 in mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:356:22 #32 0x55d10f025beb in mojo::internal::MultiplexRouter::ProcessIncomingMessage(mojo::internal::MultiplexRouter::MessageWrapper*, mojo::internal::MultiplexRouter::ClientCallBehavior, base::SequencedTaskRunner*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:953:42 #33 0x55d10f028b28 in mojo::internal::MultiplexRouter::ProcessFirstSyncMessageForEndpoint(unsigned int) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:825:20 #34 0x55d10f02aef5 in mojo::internal::MultiplexRouter::InterfaceEndpoint::OnSyncEventSignaled() ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:166:37 #35 0x55d10f041fe2 in Run ./../../base/callback.h:133:12 #36 0x55d10f041fe2 in mojo::SequenceLocalSyncEventWatcher::SequenceLocalState::OnEventSignaled() ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:215:28 #37 0x55d10f04b109 in Run ./../../base/callback.h:133:12 #38 0x55d10f04b109 in mojo::SyncHandleRegistry::Wait(bool const**, unsigned long) ./../../mojo/public/cpp/bindings/lib/sync_handle_registry.cc:153:20 #39 0x55d10f0479ae in mojo::SyncEventWatcher::SyncWatch(bool const**, unsigned long) ./../../mojo/public/cpp/bindings/lib/sync_event_watcher.cc:51:28 #40 0x55d10f0429ef in SyncWatch ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:162:34 #41 0x55d10f0429ef in mojo::SequenceLocalSyncEventWatcher::SyncWatch(bool const*) ./../../mojo/public/cpp/bindings/lib/sequence_local_sync_event_watcher.cc:282:41 #42 0x55d10f02a743 in mojo::internal::MultiplexRouter::InterfaceEndpoint::SyncWatch(bool const*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:147:27 #43 0x55d10f000d5e in mojo::InterfaceEndpointClient::SendMessageWithResponder(mojo::Message*, bool, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:335:16 #44 0x55d10f001617 in mojo::InterfaceEndpointClient::AcceptWithResponder(mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:247:10 #45 0x55d104fcd6a7 in viz::mojom::DisplayClientProxy::IsOffscreen(bool*) ./gen/services/viz/privileged/mojom/compositing/display_private.mojom.cc:789:28 #46 0x55d11adfe260 in viz::OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(unsigned long, viz::mojom::DisplayClient*) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:234:25 #47 0x55d11adfd740 in viz::OutputSurfaceProviderImpl::CreateOutputSurface(unsigned long, bool, viz::mojom::DisplayClient*, viz::RendererSettings const&) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:118:9 #48 0x55d11ae898bc in viz::RootCompositorFrameSinkImpl::Create(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>, viz::FrameSinkManagerImpl*, viz::OutputSurfaceProvider*, unsigned int, bool) ./../../components/viz/service/frame_sinks/root_compositor_frame_sink_impl.cc:40:50 #49 0x55d11ae4ae3a in viz::FrameSinkManagerImpl::CreateRootCompositorFrameSink(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>) ./../../components/viz/service/frame_sinks/frame_sink_manager_impl.cc:170:37 previously allocated by thread T6 (VizCompositorTh) here: #0 0x55d101550d7d in operator new(unsigned long) /b/s/w/ir/cache/builder/src/third_party/llvm/compiler-rt/lib/asan/asan_new_delete.cpp:99:3 #1 0x55d10f02aac2 in make_unique<mojo::SequenceLocalSyncEventWatcher, base::RepeatingCallback<void ()>> ./../../buildtools/third_party/libc++/trunk/include/memory:3043:28 #2 0x55d10f02aac2 in mojo::internal::MultiplexRouter::InterfaceEndpoint::EnsureSyncWatcherExists() ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:188:9 #3 0x55d10f02a71e in mojo::internal::MultiplexRouter::InterfaceEndpoint::SyncWatch(bool const*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:146:5 #4 0x55d10f000d5e in mojo::InterfaceEndpointClient::SendMessageWithResponder(mojo::Message*, bool, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:335:16 #5 0x55d10f001617 in mojo::InterfaceEndpointClient::AcceptWithResponder(mojo::Message*, std::__1::unique_ptr<mojo::MessageReceiver, std::__1::default_delete<mojo::MessageReceiver> >) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:247:10 #6 0x55d104fcd6a7 in viz::mojom::DisplayClientProxy::IsOffscreen(bool*) ./gen/services/viz/privileged/mojom/compositing/display_private.mojom.cc:789:28 #7 0x55d11adfe260 in viz::OutputSurfaceProviderImpl::CreateSoftwareOutputDeviceForPlatform(unsigned long, viz::mojom::DisplayClient*) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:234:25 #8 0x55d11adfd740 in viz::OutputSurfaceProviderImpl::CreateOutputSurface(unsigned long, bool, viz::mojom::DisplayClient*, viz::RendererSettings const&) ./../../components/viz/service/display_embedder/output_surface_provider_impl.cc:118:9 #9 0x55d11ae898bc in viz::RootCompositorFrameSinkImpl::Create(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>, viz::FrameSinkManagerImpl*, viz::OutputSurfaceProvider*, unsigned int, bool) ./../../components/viz/service/frame_sinks/root_compositor_frame_sink_impl.cc:40:50 #10 0x55d11ae4ae3a in viz::FrameSinkManagerImpl::CreateRootCompositorFrameSink(mojo::StructPtr<viz::mojom::RootCompositorFrameSinkParams>) ./../../components/viz/service/frame_sinks/frame_sink_manager_impl.cc:170:37 #11 0x55d104fe3365 in viz::mojom::FrameSinkManagerStubDispatch::Accept(viz::mojom::FrameSinkManager*, mojo::Message*) ./gen/services/viz/privileged/mojom/compositing/frame_sink_manager.mojom.cc:1354:13 #12 0x55d10effd618 in mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:554:54 #13 0x55d10f015bc3 in mojo::MessageDispatcher::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/message_dispatcher.cc:41:19 #14 0x55d10f001804 in mojo::InterfaceEndpointClient::HandleIncomingMessage(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/interface_endpoint_client.cc:356:22 #15 0x55d10f025beb in mojo::internal::MultiplexRouter::ProcessIncomingMessage(mojo::internal::MultiplexRouter::MessageWrapper*, mojo::internal::MultiplexRouter::ClientCallBehavior, base::SequencedTaskRunner*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:953:42 #16 0x55d10f023cfc in mojo::internal::MultiplexRouter::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/multiplex_router.cc:620:38 #17 0x55d10f015bc3 in mojo::MessageDispatcher::Accept(mojo::Message*) ./../../mojo/public/cpp/bindings/lib/message_dispatcher.cc:41:19 #18 0x55d10efef890 in mojo::Connector::DispatchMessage(mojo::Message) ./../../mojo/public/cpp/bindings/lib/connector.cc:539:49 #19 0x55d10eff2564 in mojo::Connector::ReadAllAvailableMessages() ./../../mojo/public/cpp/bindings/lib/connector.cc:627:12 #20 0x55d10eff1b52 in mojo::Connector::OnHandleReadyInternal(unsigned int) ./../../mojo/public/cpp/bindings/lib/connector.cc:446:3 #21 0x55d101613b9c in Run ./../../base/callback.h:133:12 #22 0x55d101613b9c in mojo::SimpleWatcher::DiscardReadyState(base::RepeatingCallback<void (unsigned int)> const&, unsigned int, mojo::HandleSignalsState const&) ./../../mojo/public/cpp/system/simple_watcher.h:194:14 #23 0x55d10f08c3a5 in Run ./../../base/callback.h:133:12 #24 0x55d10f08c3a5 in mojo::SimpleWatcher::OnHandleReady(int, unsigned int, mojo::HandleSignalsState const&) ./../../mojo/public/cpp/system/simple_watcher.cc:292:14 #25 0x55d10f08d44d in Invoke<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> ./../../base/bind_internal.h:490:12 #26 0x55d10f08d44d in MakeItSo<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState> ./../../base/bind_internal.h:644:5 #27 0x55d10f08d44d in RunImpl<void (mojo::SimpleWatcher::*)(int, unsigned int, const mojo::HandleSignalsState &), std::__1::tuple<base::WeakPtr<mojo::SimpleWatcher>, int, unsigned int, mojo::HandleSignalsState>, 0, 1, 2, 3> ./../../base/bind_internal.h:697:12 #28 0x55d10f08d44d in 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 ()>::RunOnce(base::internal::BindStateBase*) ./../../base/bind_internal.h:666:12 #29 0x55d10dbb68b7 in Run ./../../base/callback.h:99:12 #30 0x55d10dbb68b7 in base::TaskAnnotator::RunTask(char const*, base::PendingTask*) ./../../base/task/common/task_annotator.cc:142:33 #31 0x55d10dc0f7fa in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*) ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:321:23 #32 0x55d10dc0efdf in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWork() ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:246:36 #33 0x55d10dace173 in base::MessagePumpDefault::Run(base::MessagePump::Delegate*) ./../../base/message_loop/message_pump_default.cc:39:55 #34 0x55d10dc10f07 in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool, base::TimeDelta) ./../../base/task/sequence_manager/thread_controller_with_message_pump_impl.cc:425:12 #35 0x55d10db57088 in base::RunLoop::Run() ./../../base/run_loop.cc:124:14 #36 0x55d10dc9214d in base::Thread::Run(base::RunLoop*) ./../../base/threading/thread.cc:309:13 Thread T6 (VizCompositorTh) created by T0 (electron) here: #0 0x55d10151271a in pthread_create /b/s/w/ir/cache/builder/src/third_party/llvm/compiler-rt/lib/asan/asan_interceptors.cpp:214:3 #1 0x55d10dd96701 in base::(anonymous namespace)::CreateThread(unsigned long, bool, base::PlatformThread::Delegate*, base::PlatformThreadHandle*, base::ThreadPriority) ./../../base/threading/platform_thread_posix.cc:120:13 #2 0x55d10dc9102a in base::Thread::StartWithOptions(base::Thread::Options const&) ./../../base/threading/thread.cc:186:15 #3 0x55d10c1dd8f2 in CreateAndStartCompositorThread ./../../components/viz/service/main/viz_compositor_thread_runner_impl.cc:77:3 #4 0x55d10c1dd8f2 in viz::VizCompositorThreadRunnerImpl::VizCompositorThreadRunnerImpl() ./../../components/viz/service/main/viz_compositor_thread_runner_impl.cc:91:15 #5 0x55d10c1e352e in make_unique<viz::VizCompositorThreadRunnerImpl> ./../../buildtools/third_party/libc++/trunk/include/memory:3043:32 #6 0x55d10c1e352e in viz::VizMainImpl::VizMainImpl(viz::VizMainImpl::Delegate*, viz::VizMainImpl::ExternalDependencies, std::__1::unique_ptr<gpu::GpuInit, std::__1::default_delete<gpu::GpuInit> >) ./../../components/viz/service/main/viz_main_impl.cc:82:9 #7 0x55d11b091ee2 in content::GpuChildThread::GpuChildThread(base::RepeatingCallback<void ()>, content::ChildThreadImpl::Options, std::__1::unique_ptr<gpu::GpuInit, std::__1::default_delete<gpu::GpuInit> >) ./../../content/gpu/gpu_child_thread.cc:119:7 #8 0x55d11b091b32 in content::GpuChildThread::GpuChildThread(base::RepeatingCallback<void ()>, std::__1::unique_ptr<gpu::GpuInit, std::__1::default_delete<gpu::GpuInit> >) ./../../content/gpu/gpu_child_thread.cc:101:7 #9 0x55d11b09073b in content::GpuMain(content::MainFunctionParams const&) ./../../content/gpu/gpu_main.cc:375:11 #10 0x55d109937303 in content::RunZygote(content::ContentMainDelegate*) ./../../content/app/content_main_runner_impl.cc:480:14 #11 0x55d10993b368 in content::ContentMainRunnerImpl::Run(bool) ./../../content/app/content_main_runner_impl.cc:847:10 #12 0x55d11369a9f4 in service_manager::Main(service_manager::MainParams const&) ./../../services/service_manager/embedder/main.cc:454:29 #13 0x55d10573ba7f in content::ContentMain(content::ContentMainParams const&) ./../../content/app/content_main.cc:19:10 #14 0x55d101553a2b in main ./../../electron/shell/app/electron_main.cc:231:10 #15 0x7f03e3fc2b96 in __libc_start_main ??:0:0 SUMMARY: AddressSanitizer: heap-use-after-free (/home/builduser/project/src/out/Default/electron+0x1c3d611f) Shadow bytes around the buggy address: 0x0c0680012a80: fd fd fd fa fa fa fd fd fd fa fa fa fd fd fd fa 0x0c0680012a90: fa fa fd fd fd fa fa fa fd fd fd fd fa fa fd fd 0x0c0680012aa0: fd fa fa fa fd fd fd fa fa fa fd fd fd fa fa fa 0x0c0680012ab0: 00 00 00 fa fa fa 00 00 00 00 fa fa fd fd fd fd 0x0c0680012ac0: fa fa fd fd fd fd fa fa fd fd fd fa fa fa fd fd =>0x0c0680012ad0:[fd]fa fa fa fd fd fd fd fa fa fd fd fd fd fa fa 0x0c0680012ae0: fd fd fd fa fa fa fd fd fd fa fa fa fd fd fd fa 0x0c0680012af0: fa fa fd fd fd fa fa fa fd fd fd fa fa fa fd fd 0x0c0680012b00: fd fa fa fa fd fd fd fd fa fa fd fd fd fd fa fa 0x0c0680012b10: fd fd fd fd fa fa fd fd fd fa fa fa fd fd fd fd 0x0c0680012b20: fa fa fd fd fd fd fa fa fd fd fd fd fa fa fd fd Shadow byte legend (one shadow byte represents 8 application bytes): Addressable: 00 Partially addressable: 01 02 03 04 05 06 07 Heap left redzone: fa Freed heap region: fd Stack left redzone: f1 Stack mid redzone: f2 Stack right redzone: f3 Stack after return: f5 Stack use after scope: f8 Global redzone: f9 Global init order: f6 Poisoned by user: f7 Container overflow: fc Array cookie: ac Intra object redzone: bb ASan internal: fe Left alloca redzone: ca Right alloca redzone: cb Shadow gap: cc ==529==ABORTING ``` </details>
https://github.com/electron/electron/issues/23640
https://github.com/electron/electron/pull/27774
1e4f67c19750db33a2877c5e8d94ba31ebf4f2e8
a0141f8d6c0ee0b2802a80dd75bf1ac13b219988
2020-05-18T19:29:21Z
c++
2021-02-19T23:28:48Z
closed
electron/electron
https://github.com/electron/electron
23,615
["shell/browser/api/electron_api_web_contents.cc", "spec-main/extensions-spec.ts", "spec-main/fixtures/extensions/persistent-background-page/background.js", "spec-main/fixtures/extensions/persistent-background-page/manifest.json"]
No webPreferences and session in e.sender received from an extension background page
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. Ref #19447 ### Issue Details * **Electron Version:** * 9.0.0-beta.24 * **Operating System:** * macOS 10.15, Windows 10 * **Last Known Working Electron version:** * none ### Expected Behavior `e.sender` object received from an extension background page should have `webPreferences` and `session` initialized. It looks like `options` in `api::WebContents` constructor don't get initialized properly for an extension background page. ### Actual Behavior `e.sender` object doesn't have `session` and `e.sender.getWebPreferences()` returns `null`. ### To Reproduce https://github.com/sentialx/electron-quick-start/tree/extensions/no-session Just run it and you will see something like this: ![image](https://user-images.githubusercontent.com/11065386/82097607-82994400-9703-11ea-8291-0eb987d8aca0.png) ### Additional Information This is a real blocker for anyone who would want to provide own `chrome` APIs in background pages initialized from different sessions.
https://github.com/electron/electron/issues/23615
https://github.com/electron/electron/pull/23989
a33c10c3eda4e92cbf9d51180ced8218b74f752d
04be1ac4a15700a5b51016af0101945a878854de
2020-05-15T21:28:12Z
c++
2020-06-11T03:57:51Z
closed
electron/electron
https://github.com/electron/electron
23,609
["docs/api/session.md"]
Improve docs for setPermissionRequestHandler
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 8.2.0 The [docs](https://www.electronjs.org/docs/api/session#sessetpermissionrequesthandlerhandler) list the permissions that we can reject: >Enum of 'media', 'geolocation', 'notifications', 'midiSysex', 'pointerLock', 'fullscreen', 'openExternal'. Could the docs be updated to include descriptions of these events? I couldn't find a description of them [here](https://developer.chrome.com/apps/permissions). There's not a one-to-one mapping. Like what is `openExternal` - is that for new windows? What media does the `media` permission control exactly? etc
https://github.com/electron/electron/issues/23609
https://github.com/electron/electron/pull/23781
509740c3579c78739da4c573c018f725da708af0
86b441d5994ef26bfe31ef91e0993be7bc697221
2020-05-15T15:47:34Z
c++
2020-07-21T05:29:32Z
closed
electron/electron
https://github.com/electron/electron
23,479
["BUILD.gn", "buildflags/BUILD.gn", "buildflags/buildflags.gni", "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "shell/browser/win/dark_mode.cc", "shell/browser/win/dark_mode.h", "shell/common/api/features.cc", "typings/internal-ambient.d.ts"]
[Windows] Title bar does not respect dark mode
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details When setting nativeTheme.themeSource to 'dark' (or 'system' and setting the system theme to 'dark'), the title bar on Windows remains light. On macOS, the title bar accurately reflects the setting. * **Electron Version:** * `npm ./node_modules/.bin/electron --version`: 6.9.0 * package.json: `"electron": "^8.2.5",` * yarn.lock: 8.2.5 * **Operating System:** * Windows 10 (1903)<!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> (This works as expected on macOS) | | nativeTheme.themeSource = 'system' | nativeTheme.themeSource = 'light' | nativeTheme.themeSource = 'dark' | |-------------|------------------------------------|-----------------------------------|----------------------------------| | Light Theme | Light Title Bar | Light Title Bar | Dark Title Bar | | Dark Theme | Dark Title Bar | Light Title Bar | Dark Title Bar | ### Actual Behavior <!-- A clear and concise description of what actually happened. --> | | nativeTheme.themeSource = 'system' | nativeTheme.themeSource = 'light' | nativeTheme.themeSource = 'dark' | |-------------|------------------------------------|-----------------------------------|----------------------------------| | Light Theme | Light Title Bar | Light Title Bar | Light Title Bar | | Dark Theme | Light Title Bar | Light Title Bar | Light Title Bar | ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> ```js nativeTheme.themeSource = 'dark' ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> Command Prompt: ![Command Prompt](https://user-images.githubusercontent.com/4406098/81472203-533a8280-91ab-11ea-9a9d-a3c2229d08ba.png) File Explorer: ![File Explorer](https://user-images.githubusercontent.com/4406098/81472549-95fd5a00-91ad-11ea-9a4a-7ceef2c5a5a9.png) Title Bar in Electron with `nativeTheme.themeSource = 'dark'` ![Windows Title Bar](https://user-images.githubusercontent.com/4406098/81472609-1459fc00-91ae-11ea-936a-b0cc0c18a20e.png)
https://github.com/electron/electron/issues/23479
https://github.com/electron/electron/pull/25373
d3f32c7502412ec143e25da41589ab923cf0b163
f489e3054a44bf946ad56add94485ff74c845782
2020-05-09T12:17:59Z
c++
2020-10-28T20:00:21Z
closed
electron/electron
https://github.com/electron/electron
23,444
["lib/browser/remote/server.ts", "lib/renderer/api/remote.js", "shell/common/api/electron_api_native_image.cc", "shell/common/api/electron_api_native_image.h", "spec-main/api-remote-spec.ts"]
Cannot use Icon in MenuItem: "Could not call remote method 'buildFromTemplate'" error
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.0.2 (also checked on 8.2.5.) * **Operating System:** * Windows 10 Pro (1903) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior The menu is created without any errors ### Actual Behavior Error: ``` render.js:48 Uncaught (in promise) Error: Could not call remote method 'buildFromTemplate'. Check that the method signature is correct. Underlying error: Error processing argument at index 1, conversion failure from Underlying stack: TypeError: Error processing argument at index 1, conversion failure from at Menu../lib/browser/api/menu.js.Menu.insert (electron/js2c/browser_init.js:1855:23) at Menu../lib/browser/api/menu.js.Menu.append (electron/js2c/browser_init.js:1835:15) at electron/js2c/browser_init.js:1913:12 at Array.forEach (<anonymous>) at Function../lib/browser/api/menu.js.Menu.buildFromTemplate (electron/js2c/browser_init.js:1909:10) at electron/js2c/browser_init.js:6745:67 at IpcMainImpl.<anonymous> (electron/js2c/browser_init.js:6610:27) at IpcMainImpl.emit (events.js:210:5) at WebContents.<anonymous> (electron/js2c/browser_init.js:3873:23) at WebContents.emit (events.js:210:5) at electron/js2c/browser_init.js:6748:21 at IpcMainImpl.<anonymous> (electron/js2c/browser_init.js:6610:27) at IpcMainImpl.emit (events.js:210:5) at WebContents.<anonymous> (electron/js2c/browser_init.js:3873:23) at WebContents.emit (events.js:210:5) getVideoSources @ render.js:48 async function (async) getVideoSources @ render.js:32 ``` ### To Reproduce ```sh $ git clone https://github.com/dropsonic/223-electron-screen-recorder.git -b master $ npm install $ npm start ``` Press 'Choose a Video Source' button. The code: ```node async function getVideoSources() { const inputSources = await desktopCapturer.getSources({ types: [ 'window', 'screen' ], fetchWindowIcons: true }); const videoOptionsMenu = Menu.buildFromTemplate( inputSources.map((source) => { return { label: source.name, icon: source.appIcon, click: () => selectSource(source) }; }) ); videoOptionsMenu.popup(); } ``` ### Screenshots ![image](https://user-images.githubusercontent.com/1544021/81292903-18363300-9075-11ea-84d1-e22368f0f1ec.png) ### Additional Information I've also tried to set `nativeImage.createEmpty()` as an icon but got the same error.
https://github.com/electron/electron/issues/23444
https://github.com/electron/electron/pull/23543
eb341b383d104959a5e5ace66f1143642ae86824
ee0f67d5410ab6fc3f504c4d27e2aec772f1f4f0
2020-05-07T12:12:55Z
c++
2020-05-18T16:29:24Z
closed
electron/electron
https://github.com/electron/electron
23,428
["shell/browser/api/electron_api_web_contents.cc", "shell/common/api/electron_api_native_image.cc", "shell/common/api/electron_api_native_image.h", "shell/common/api/electron_api_native_image_mac.mm"]
startDrag throws an exception
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.2.5 * **Operating System:** * macOS 10.14.6 * **Last Known Working Electron version:** * My memory tells me that the last time I tried using `startDrag()` was at version 4 but I am not sure. ### Expected Behavior To not throw an exception. ### Actual Behavior Throws an exception. ### To Reproduce ``` ipcMain.on('drag-data.start-drag', (e, paths: string[]) => { e.sender.startDrag({ file: paths[0], icon: nativeImage.createFromNamedImage('NSImageNameMultipleDocuments'), }) }) ``` ### Additional Information ``` Process: Electron [83245] Path: /Users/USER/*/Electron.app/Contents/MacOS/Electron Identifier: com.github.Electron Version: 8.2.5 (8.2.5) Code Type: X86-64 (Native) Parent Process: ??? [83243] Responsible: Electron [83245] User ID: 501 Date/Time: 2020-05-06 18:41:34.960 +0300 OS Version: Mac OS X 10.14.6 (18G4032) Report Version: 12 Anonymous UUID: 4D47377C-CA20-735E-3869-8A2BE82E81D5 Sleep/Wake UUID: A5D72271-2ED0-42A3-A336-CFCABAA49F1F Time Awake Since Boot: 110000 seconds Time Since Wake: 4300 seconds System Integrity Protection: enabled Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000002, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Trace/BPT trap: 5 Termination Reason: Namespace SIGNAL, Code 0x5 Terminating Process: exc handler [83245] Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 com.github.Electron.framework 0x00000001054f9297 0x10221d000 + 53330583 1 com.github.Electron.framework 0x0000000102333791 0x10221d000 + 1140625 2 com.github.Electron.framework 0x00000001022b39b4 0x10221d000 + 616884 3 com.github.Electron.framework 0x00000001022c54b8 0x10221d000 + 689336 4 com.github.Electron.framework 0x0000000102f1da9c 0x10221d000 + 13634204 5 com.github.Electron.framework 0x0000000102f1cf9a 0x10221d000 + 13631386 6 com.github.Electron.framework 0x0000000102f1c572 0x10221d000 + 13628786 7 com.github.Electron.framework 0x000000010391f9b9 0x10221d000 + 24127929 8 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 9 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 10 com.github.Electron.framework 0x00000001038a8dd9 0x10221d000 + 23641561 11 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 12 com.github.Electron.framework 0x00000001038a8dd9 0x10221d000 + 23641561 13 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 14 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 15 com.github.Electron.framework 0x00000001038a8dd9 0x10221d000 + 23641561 16 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 17 com.github.Electron.framework 0x00000001038a8dd9 0x10221d000 + 23641561 18 com.github.Electron.framework 0x00000001038af3d8 0x10221d000 + 23667672 19 com.github.Electron.framework 0x00000001038a8dd9 0x10221d000 + 23641561 20 com.github.Electron.framework 0x00000001038accda 0x10221d000 + 23657690 21 com.github.Electron.framework 0x00000001038acab8 0x10221d000 + 23657144 22 com.github.Electron.framework 0x0000000102fd68a8 0x10221d000 + 14391464 23 com.github.Electron.framework 0x0000000102fd649e v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 206 24 com.github.Electron.framework 0x0000000102ecad4c v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*) + 444 25 com.github.Electron.framework 0x0000000107a2ae7c 0x10221d000 + 92331644 26 com.github.Electron.framework 0x0000000107a2b101 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) + 161 27 com.github.Electron.framework 0x000000010236464f 0x10221d000 + 1341007 28 com.github.Electron.framework 0x00000001022bdb27 0x10221d000 + 658215 29 com.github.Electron.framework 0x00000001022bda06 0x10221d000 + 657926 30 com.github.Electron.framework 0x00000001022ad7a3 0x10221d000 + 591779 31 com.github.Electron.framework 0x00000001022ad817 0x10221d000 + 591895 32 com.github.Electron.framework 0x0000000104383afd 0x10221d000 + 35023613 33 com.github.Electron.framework 0x0000000104780a36 0x10221d000 + 39205430 34 com.github.Electron.framework 0x0000000104782c56 0x10221d000 + 39214166 35 com.github.Electron.framework 0x0000000104785f73 0x10221d000 + 39227251 36 com.github.Electron.framework 0x00000001047857db 0x10221d000 + 39225307 37 com.github.Electron.framework 0x000000010477da93 0x10221d000 + 39193235 38 com.github.Electron.framework 0x000000010477e3a1 0x10221d000 + 39195553 39 com.github.Electron.framework 0x000000010479628e 0x10221d000 + 39293582 40 com.github.Electron.framework 0x0000000104470c5f 0x10221d000 + 35994719 41 com.github.Electron.framework 0x00000001044804ba 0x10221d000 + 36058298 42 com.github.Electron.framework 0x0000000104480257 0x10221d000 + 36057687 43 com.github.Electron.framework 0x00000001044cf0a1 0x10221d000 + 36380833 44 com.github.Electron.framework 0x00000001044ca8ea 0x10221d000 + 36362474 45 com.github.Electron.framework 0x00000001044ce97f 0x10221d000 + 36379007 46 com.apple.CoreFoundation 0x00007fff41fb0e33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 47 com.apple.CoreFoundation 0x00007fff41fb0dd9 __CFRunLoopDoSource0 + 108 48 com.apple.CoreFoundation 0x00007fff41f9479b __CFRunLoopDoSources0 + 195 49 com.apple.CoreFoundation 0x00007fff41f93d65 __CFRunLoopRun + 1189 50 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 51 com.apple.HIToolbox 0x00007fff411f21ab RunCurrentEventLoopInMode + 292 52 com.apple.HIToolbox 0x00007fff411f1ee5 ReceiveNextEventCommon + 603 53 com.apple.HIToolbox 0x00007fff411f1c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64 54 com.apple.AppKit 0x00007fff3f58977d _DPSNextEvent + 1135 55 com.apple.AppKit 0x00007fff3f58846b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361 56 com.apple.AppKit 0x00007fff3f582588 -[NSApplication run] + 699 57 com.github.Electron.framework 0x00000001044cf8ac 0x10221d000 + 36382892 58 com.github.Electron.framework 0x00000001044ce312 0x10221d000 + 36377362 59 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 60 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 61 com.github.Electron.framework 0x0000000103c9b683 0x10221d000 + 27780739 62 com.github.Electron.framework 0x0000000103c9d112 0x10221d000 + 27787538 63 com.github.Electron.framework 0x0000000103c98b6a 0x10221d000 + 27769706 64 com.github.Electron.framework 0x0000000103b33ef4 0x10221d000 + 26308340 65 com.github.Electron.framework 0x0000000103b33bfe 0x10221d000 + 26307582 66 com.github.Electron.framework 0x0000000105d79e04 0x10221d000 + 62246404 67 com.github.Electron.framework 0x0000000102df18f4 0x10221d000 + 12404980 68 com.github.Electron.framework 0x0000000102220014 ElectronMain + 84 69 com.github.Electron 0x00000001021ee9b0 0x1021ee000 + 2480 70 libdyld.dylib 0x00007fff6df1d3d5 start + 1 Thread 1:: ThreadPoolServiceThread 0 libsystem_kernel.dylib 0x00007fff6e05a0a2 kevent64 + 10 1 com.github.Electron.framework 0x00000001044de8d1 0x10221d000 + 36444369 2 com.github.Electron.framework 0x00000001044de766 0x10221d000 + 36444006 3 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 4 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 5 com.github.Electron.framework 0x0000000104488f84 0x10221d000 + 36093828 6 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 7 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 8 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 2:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x0000000104491ad8 0x10221d000 + 36129496 4 com.github.Electron.framework 0x000000010449235a 0x10221d000 + 36131674 5 com.github.Electron.framework 0x0000000104492044 0x10221d000 + 36130884 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 3:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x0000000104491ad8 0x10221d000 + 36129496 4 com.github.Electron.framework 0x000000010449235a 0x10221d000 + 36131674 5 com.github.Electron.framework 0x0000000104491fb4 0x10221d000 + 36130740 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 4:: Chrome_IOThread 0 libsystem_kernel.dylib 0x00007fff6e05a0a2 kevent64 + 10 1 com.github.Electron.framework 0x00000001044de8d1 0x10221d000 + 36444369 2 com.github.Electron.framework 0x00000001044de766 0x10221d000 + 36444006 3 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 4 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 5 com.github.Electron.framework 0x0000000103ca25f4 0x10221d000 + 27809268 6 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 7 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 8 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff6e05878a kevent + 10 1 com.github.Electron.framework 0x0000000107babf2a 0x10221d000 + 93908778 2 com.github.Electron.framework 0x0000000107b9b4b1 uv_run + 497 3 com.github.Electron.framework 0x0000000107b13e16 0x10221d000 + 93285910 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b14018 0x10221d000 + 93286424 4 com.github.Electron.framework 0x0000000107b11bfb 0x10221d000 + 93277179 5 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b14018 0x10221d000 + 93286424 4 com.github.Electron.framework 0x0000000107b11bfb 0x10221d000 + 93277179 5 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b14018 0x10221d000 + 93286424 4 com.github.Electron.framework 0x0000000107b11bfb 0x10221d000 + 93277179 5 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff6e052256 semaphore_wait_trap + 10 1 com.github.Electron.framework 0x0000000107ba7660 uv_sem_wait + 16 2 com.github.Electron.framework 0x0000000107b5f422 0x10221d000 + 93594658 3 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff6e05878a kevent + 10 1 com.github.Electron.framework 0x0000000107babf2a 0x10221d000 + 93908778 2 com.github.Electron.framework 0x0000000107b9b4b1 uv_run + 497 3 com.github.Electron.framework 0x0000000107b63b3d 0x10221d000 + 93612861 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 11:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff41f9499e __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff41f93f0c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff441f92ff -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001044cf5b1 0x10221d000 + 36382129 7 com.github.Electron.framework 0x00000001044ce312 0x10221d000 + 36377362 8 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 9 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 10 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 11 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 12 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 12:: CrShutdownDetector 0 libsystem_kernel.dylib 0x00007fff6e053eee read + 10 1 com.github.Electron.framework 0x00000001022de48f 0x10221d000 + 791695 2 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 3 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 13:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff41f9499e __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff41f93f0c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff441f92ff -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001044cf5b1 0x10221d000 + 36382129 7 com.github.Electron.framework 0x00000001044ce312 0x10221d000 + 36377362 8 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 9 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 10 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 11 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 12 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 14:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x0000000104491ad8 0x10221d000 + 36129496 4 com.github.Electron.framework 0x000000010449235a 0x10221d000 + 36131674 5 com.github.Electron.framework 0x0000000104492044 0x10221d000 + 36130884 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 15:: CompositorTileWorker1 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x00000001044c84b5 0x10221d000 + 36353205 3 com.github.Electron.framework 0x00000001053d3d8d 0x10221d000 + 52129165 4 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 5 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 6 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 7 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 16:: ThreadPoolSingleThreadForegroundBlocking0 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x00000001044d3c9f 0x10221d000 + 36400287 4 com.github.Electron.framework 0x0000000104491aca 0x10221d000 + 36129482 5 com.github.Electron.framework 0x000000010449235a 0x10221d000 + 36131674 6 com.github.Electron.framework 0x00000001044920a4 0x10221d000 + 36130980 7 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 8 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 17: 0 libsystem_kernel.dylib 0x00007fff6e059616 __select + 10 1 com.github.Electron.framework 0x0000000102380b82 0x10221d000 + 1457026 2 com.github.Electron.framework 0x0000000102380277 0x10221d000 + 1454711 3 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 4 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 5 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 18:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff41f9499e __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff41f93f0c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff441f92ff -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001044cf5b1 0x10221d000 + 36382129 7 com.github.Electron.framework 0x00000001044ce312 0x10221d000 + 36377362 8 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 9 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 10 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 11 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 12 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 19:: CacheThread_BlockFile 0 libsystem_kernel.dylib 0x00007fff6e05a0a2 kevent64 + 10 1 com.github.Electron.framework 0x00000001044de8d1 0x10221d000 + 36444369 2 com.github.Electron.framework 0x00000001044de766 0x10221d000 + 36444006 3 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 4 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 5 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 20: 0 libsystem_pthread.dylib 0x00007fff6e1103f0 start_wqthread + 0 Thread 21:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff41f9499e __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff41f93f0c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 5 com.apple.Foundation 0x00007fff441f92ff -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280 6 com.github.Electron.framework 0x00000001044cf5b1 0x10221d000 + 36382129 7 com.github.Electron.framework 0x00000001044ce312 0x10221d000 + 36377362 8 com.github.Electron.framework 0x0000000104480d77 0x10221d000 + 36060535 9 com.github.Electron.framework 0x0000000104459067 0x10221d000 + 35897447 10 com.github.Electron.framework 0x00000001044976e4 0x10221d000 + 36153060 11 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 12 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 13 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 14 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 22:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff41f9499e __CFRunLoopServiceMachPort + 328 3 com.apple.CoreFoundation 0x00007fff41f93f0c __CFRunLoopRun + 1612 4 com.apple.CoreFoundation 0x00007fff41f9366e CFRunLoopRunSpecific + 455 5 com.apple.AppKit 0x00007fff3f5914a2 _NSEventThread + 175 6 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 7 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 8 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 23:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x0000000104491ad8 0x10221d000 + 36129496 4 com.github.Electron.framework 0x000000010449235a 0x10221d000 + 36131674 5 com.github.Electron.framework 0x0000000104492044 0x10221d000 + 36130884 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 24:: ThreadPoolSingleThreadSharedBackgroundBlocking1 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x00000001044d3c9f 0x10221d000 + 36400287 4 com.github.Electron.framework 0x0000000104491aca 0x10221d000 + 36129482 5 com.github.Electron.framework 0x000000010449212e 0x10221d000 + 36131118 6 com.github.Electron.framework 0x0000000104491fe4 0x10221d000 + 36130788 7 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 8 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 9 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 10 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 25: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b97349 0x10221d000 + 93823817 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 26: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b97349 0x10221d000 + 93823817 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 27: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b97349 0x10221d000 + 93823817 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 28: 0 libsystem_kernel.dylib 0x00007fff6e055866 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff6e11456e _pthread_cond_wait + 722 2 com.github.Electron.framework 0x0000000107ba70f9 uv_cond_wait + 9 3 com.github.Electron.framework 0x0000000107b97349 0x10221d000 + 93823817 4 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 5 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 6 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 29: 0 libsystem_pthread.dylib 0x00007fff6e1103f0 start_wqthread + 0 Thread 30: 0 libsystem_pthread.dylib 0x00007fff6e1103f0 start_wqthread + 0 Thread 31:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff6e05221a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6e052768 mach_msg + 60 2 com.github.Electron.framework 0x00000001044d3e86 0x10221d000 + 36400774 3 com.github.Electron.framework 0x0000000104491ad8 0x10221d000 + 36129496 4 com.github.Electron.framework 0x000000010449212e 0x10221d000 + 36131118 5 com.github.Electron.framework 0x0000000104491fb4 0x10221d000 + 36130740 6 com.github.Electron.framework 0x00000001044c9287 0x10221d000 + 36356743 7 libsystem_pthread.dylib 0x00007fff6e1112eb _pthread_body + 126 8 libsystem_pthread.dylib 0x00007fff6e114249 _pthread_start + 66 9 libsystem_pthread.dylib 0x00007fff6e11040d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00007fe758d05c40 rbx: 0x00007fe758d05c40 rcx: 0x0000000000000001 rdx: 0x0000000000000000 rdi: 0x00007fe7588e66d8 rsi: 0x00007fff4010cb9d rbp: 0x00007ffeeda0aad0 rsp: 0x00007ffeeda0aab0 r8: 0x00000000758d05c5 r9: 0x00000000ffffc01f r10: 0x00007fff9cbb3d68 r11: 0x00007fe75818a3d0 r12: 0x00007fe758cf71c0 r13: 0x00007fe758b25b60 r14: 0x00007fe758b45f20 r15: 0x00007fff6c740680 rip: 0x00000001054f9297 rfl: 0x0000000000000246 cr2: 0x00007fc73f002a00 Logical CPU: 2 Error Code: 0x00000000 Trap Number: 3 Binary Images: 0x1021ee000 - 0x102216ff3 +com.github.Electron (8.2.5 - 8.2.5) <596191EB-2C06-339C-917C-D986342C029E> /Users/USER/*/Electron.app/Contents/MacOS/Electron 0x10221d000 - 0x10896cf27 +com.github.Electron.framework (8.2.5) <9D94C6C5-D806-3960-98E4-07E083B42519> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework 0x1090f8000 - 0x109113fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Users/USER/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10913a000 - 0x10919dff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x109210000 - 0x109224fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10923b000 - 0x1094d4ff7 +libffmpeg.dylib (0) <BDF5F45C-91E0-32D4-8E2F-02D2DBC1A860> /Users/USER/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib 0x10d1be000 - 0x10d1c1047 libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib 0x10fa6a000 - 0x10fad470f dyld (655.1.1) <C192CA31-D059-3770-9882-D864FEFA0C96> /usr/lib/dyld 0x7fff366bc000 - 0x7fff36a15fff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) <AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff3b4fe000 - 0x7fff3b82eff7 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (12.10.17 - 12.1.0) <FBD7A965-E703-3520-84EE-72A27A69562D> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff3df91000 - 0x7fff3e16dffb com.apple.avfoundation (2.0 - 1550.4) <FE6603A7-7E82-378C-B751-5848B56BDC0E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff3e16e000 - 0x7fff3e233fff com.apple.audio.AVFAudio (1.0 - ???) <D454A339-2FC6-3EF6-992F-D676046612DB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff3e33b000 - 0x7fff3e33bfff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff3e33c000 - 0x7fff3e352ff7 libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff3e353000 - 0x7fff3e9ecfef com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff3e9ed000 - 0x7fff3ec66ff3 libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff3ec67000 - 0x7fff3ecd9ffb libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff3ecda000 - 0x7fff3f083ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff3f084000 - 0x7fff3f099feb libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff3f09a000 - 0x7fff3f09fff3 libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff3f0a0000 - 0x7fff3f11cff3 libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff3f11d000 - 0x7fff3f130fe3 libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff3f131000 - 0x7fff3f318ff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff3f319000 - 0x7fff3f3ccff7 libvMisc.dylib (671.250.4) <D5BA4812-BFFC-3CD0-B382-905CD8555DA6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff3f3cd000 - 0x7fff3f3cdfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff3f56f000 - 0x7fff40324ffb com.apple.AppKit (6.9 - 1671.60.109) <59850DC2-5138-39EC-97DF-BC10872DF6F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff40376000 - 0x7fff40376fff com.apple.ApplicationServices (50.1 - 50.1) <7D32BE37-CB09-3757-A69D-386D3FE71161> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff40377000 - 0x7fff403e2fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff4047b000 - 0x7fff40592ff7 libFontParser.dylib (228.6.2.4) <55389C33-32D3-37BF-85EB-678B681B1E34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff40593000 - 0x7fff405d5fff libFontRegistry.dylib (228.12.2.4) <6DDE44EC-FF6B-3893-9209-45E0955ABDD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff4062f000 - 0x7fff40661fff libTrueTypeScaler.dylib (228.6.2.4) <CD819F01-8DE5-32C7-AC54-A6B07C4E2099> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff406c6000 - 0x7fff406caff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <E8E9342C-47EB-359D-A373-554AC19B174A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff40765000 - 0x7fff407b7ff7 com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff407b8000 - 0x7fff407c7fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff407c8000 - 0x7fff40811ff7 com.apple.print.framework.PrintCore (14.7 - 503.8) <E1D0FCBC-155E-372E-A90F-4A20B94FC114> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff40812000 - 0x7fff4084bff7 com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff4084c000 - 0x7fff40858fff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff40859000 - 0x7fff40ad0fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <32487CB2-246B-3B80-8F60-D65DFC367DDC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff40ad2000 - 0x7fff40ad2fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <B489CFDA-DEF3-38F5-A815-23EC30B8DA03> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff40e2b000 - 0x7fff411cdfff com.apple.CFNetwork (978.3 - 978.3) <6A5459BD-77A4-386C-872D-9BB297D83588> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff411e2000 - 0x7fff411e2fff com.apple.Carbon (158 - 158) <61913B68-C255-34CD-A28E-42B0F6B637B0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff411e3000 - 0x7fff411e6ffb com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff411e7000 - 0x7fff414defff com.apple.HIToolbox (2.1.1 - 918.7) <88D7F19C-8C9D-384B-BAB5-8205CA282F2C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff414df000 - 0x7fff414e2ff3 com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff414e3000 - 0x7fff414e8ff7 com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff414e9000 - 0x7fff4157eff3 com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff4157f000 - 0x7fff41597ff7 com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff415b7000 - 0x7fff415b8ff7 com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff415b9000 - 0x7fff415bbff7 com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff415bc000 - 0x7fff415c2ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff416e4000 - 0x7fff416e4fff com.apple.Cocoa (6.11 - 23) <5BE4CE24-6041-3708-A83B-D74BC8CB8A9B> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff416f2000 - 0x7fff41841ff7 com.apple.ColorSync (4.13.0 - 3345.6) <356BA478-76DE-3087-86BE-5E884276AB83> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff419cd000 - 0x7fff41a53fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff41ab7000 - 0x7fff41ae1ffb com.apple.CoreBluetooth (1.0 - 1) <4F2DDEF0-1F92-384B-8CDA-4958725D0A8E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff41ae2000 - 0x7fff41e67fef com.apple.CoreData (120 - 866.6) <132CB39B-8D58-30FA-B8AD-49BFFF34B293> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff41e68000 - 0x7fff41f58ff7 com.apple.CoreDisplay (101.3 - 110.18) <6DD41271-E145-3E99-9D49-7CC8AC1C65B6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff41f59000 - 0x7fff4239efef com.apple.CoreFoundation (6.9 - 1575.23) <91D1D63A-9417-376D-801A-9ABDE4879F48> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff423a0000 - 0x7fff42a30fe7 com.apple.CoreGraphics (2.0 - 1265.10) <92E5B053-A926-3788-B3BB-E563B2B96836> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff42a32000 - 0x7fff42d52fff com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff42dcc000 - 0x7fff42e22ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <130FB156-4863-3B5D-9508-DBF42A73823B> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff42e25000 - 0x7fff4304efff com.apple.CoreML (1.0 - 1) <9EC1FED2-BA47-307B-A326-43C4D05166E7> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML 0x7fff4304f000 - 0x7fff43153fff com.apple.CoreMedia (1.0 - 2290.14) <2C7A5348-7F19-3E28-97E4-6065A64B1DC9> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff43154000 - 0x7fff431affff com.apple.CoreMediaIO (900.0 - 5050.1) <07ADD6F9-366C-3469-8FE7-99C7713D3AD0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff431b0000 - 0x7fff431b0fff com.apple.CoreServices (946 - 946) <691E3A41-046B-37FD-868C-F62B1BCEF7D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff431b1000 - 0x7fff4322dff7 com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff4322e000 - 0x7fff43505fff com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) <CB87F0C7-2CD6-3983-8E32-B6A2EC925352> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff43506000 - 0x7fff4354eff7 com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff4354f000 - 0x7fff43557ffb com.apple.CoreServices.FSEvents (1239.200.13 - 1239.200.13) <5913F08D-4AA2-3200-B998-012E6A19A66D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff43558000 - 0x7fff43709ff7 com.apple.LaunchServices (946 - 946) <A0C91634-9410-38E8-BC11-7A5A369E6BA5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff4370a000 - 0x7fff437a8ff7 com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff437a9000 - 0x7fff437f3ff7 com.apple.CoreServices.OSServices (946 - 946) <20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff437f4000 - 0x7fff4385bff7 com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff4385c000 - 0x7fff4387dff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff43b88000 - 0x7fff43ceaff3 com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff43ceb000 - 0x7fff43d2bff3 com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff43d2c000 - 0x7fff43dbbfff com.apple.framework.CoreWLAN (13.0 - 1375.2) <387CCF44-F8B8-31CD-AE25-6175A8AD7654> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff43f3e000 - 0x7fff43fecfff com.apple.DiscRecording (9.0.3 - 9030.4.5) <D7A28B57-C025-3D44-BB17-82243B7B91BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff44012000 - 0x7fff44017ffb com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff441da000 - 0x7fff441dcff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) <205B0C3E-4E8D-3347-A993-469F06ABBFF9> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff441dd000 - 0x7fff4458affb com.apple.Foundation (6.9 - 1575.23) <3BD6326F-5F7C-3494-B324-A4A862794AC0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff445f9000 - 0x7fff44628ffb com.apple.GSS (4.0 - 2.0) <E2B90D08-3857-3155-9FCC-07D778988EC9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff44629000 - 0x7fff44642ff3 com.apple.GameController (1.0 - 1) <9339D37B-54EA-31C5-A4A5-2135288BA992> /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff44728000 - 0x7fff44832fff com.apple.Bluetooth (6.0.14 - 6.0.14d6) <FC41C6D7-1137-3FDC-B3E8-542504484507> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff44895000 - 0x7fff44924fff com.apple.framework.IOKit (2.0.2 - 1483.260.4) <8A90F547-86EF-3DFB-92FE-0E2C0376DD84> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff44926000 - 0x7fff44935ffb com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff44936000 - 0x7fff44988ff3 com.apple.ImageCaptureCore (1.0 - 1534.2) <27942C51-8108-3ED9-B37E-7C365A31EC2D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff44989000 - 0x7fff44b15fef com.apple.ImageIO.framework (3.3.0 - 1850.2.4) <7E0F12C2-126D-3F32-8D74-CA23E8E9E26D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff44b16000 - 0x7fff44b1affb libGIF.dylib (1850.2.4) <29D2E28D-3E54-32E0-B16B-FDB9298098C0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff44b1b000 - 0x7fff44bf7fe7 libJP2.dylib (1850.2.4) <18FC0B0B-F57D-3646-A26F-CECB77BFE1F4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff44bf8000 - 0x7fff44c1dfeb libJPEG.dylib (1850.2.4) <4ADB9438-93AB-34C6-ADF5-FF03D2970312> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff44ee0000 - 0x7fff44f06feb libPng.dylib (1850.2.4) <3EBA9D74-0B8B-3400-9BC1-44AF912CD2F6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff44f07000 - 0x7fff44f09ffb libRadiance.dylib (1850.2.4) <04BDF61F-FF04-315C-AFE1-9DF172BC9271> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff44f0a000 - 0x7fff44f57feb libTIFF.dylib (1850.2.4) <DEED1AC0-8A28-39E2-88EC-92BA8F234118> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff45252000 - 0x7fff460b2fff com.apple.JavaScriptCore (14607 - 14607.3.9) <E25D3B54-A072-33F3-AA89-6F8588BF5A05> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff460ca000 - 0x7fff460e3fff com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff46166000 - 0x7fff46184fff com.apple.CoreAuthentication.SharedUtils (1.0 - 425.270.4) <D9362B0C-5747-3F38-86F8-F2BF9DDF309B> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff46185000 - 0x7fff46199fff com.apple.LocalAuthentication (1.0 - 425.270.4) <5BA9E65D-E56E-38D2-8046-84F4A97B3A9C> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff4639d000 - 0x7fff463a7fff com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff463bc000 - 0x7fff46456ffb com.apple.MediaPlayer (1.0 - 1.0) <F601EBD5-7A38-3F0D-BA43-6DC535978124> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff46457000 - 0x7fff46afdfff com.apple.MediaToolbox (1.0 - 2290.14) <927F9E24-32DB-33F9-9866-4DD8092A51F4> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff46aff000 - 0x7fff46ba7ff7 com.apple.Metal (162.2 - 162.2) <B65C71BF-D40E-3BB3-940C-117DDD203551> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff46ba9000 - 0x7fff46bc2ff3 com.apple.MetalKit (1.0 - 113) <51CDE966-54A7-3556-971B-1173E9986BB8> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit 0x7fff46bc3000 - 0x7fff46be2ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff46be3000 - 0x7fff46c5ffe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <EE8440DA-66DF-3923-ABBC-E0543211C069> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff46c60000 - 0x7fff46c87fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E64450DF-2B96-331E-B7F4-666E00571C70> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff46c88000 - 0x7fff46db3ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff46db4000 - 0x7fff46dcefff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff46dcf000 - 0x7fff46dd0ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff47bc7000 - 0x7fff47bd3ff7 com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff4a671000 - 0x7fff4a6c8ff7 com.apple.opencl (2.15.3 - 2.15.3) <3C44FA36-6EE1-3EB9-A854-2EED46A74B54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff4a6c9000 - 0x7fff4a6e4ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff4a6e5000 - 0x7fff4a6f0ffb com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff4b040000 - 0x7fff4b042fff libCVMSPluginSupport.dylib (17.7.3) <D9947D9B-CBE9-3079-AA50-A70292DF6C75> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff4b043000 - 0x7fff4b048ff3 libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff4b049000 - 0x7fff4b04dfff libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff4b04e000 - 0x7fff4b056ff7 libGFXShared.dylib (17.7.3) <D8F0BFF7-C95C-3163-AE8F-E88F71560899> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff4b057000 - 0x7fff4b062fff libGL.dylib (17.7.3) <F370B3C5-EDA5-3B06-92A3-6377A7A9EDF7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff4b063000 - 0x7fff4b09dfef libGLImage.dylib (17.7.3) <6DD421F7-0830-3174-AE4C-8D98134F7DDB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff4b211000 - 0x7fff4b24ffff libGLU.dylib (17.7.3) <D59FC70D-0F75-3F01-83F2-EC4D4BFE6945> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff4bbec000 - 0x7fff4bbfbffb com.apple.opengl (17.7.3 - 17.7.3) <004EF420-DABE-3D69-BA9E-3206D2B25DDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff4bf7e000 - 0x7fff4c0c7ff7 com.apple.QTKit (7.7.3 - 3040) <D42BB4BE-B347-3113-ACA4-3257A5E45F52> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff4c0c8000 - 0x7fff4c31cfff com.apple.imageKit (3.0 - 1067) <4F398AF4-828E-3FC2-9E3D-4EE3F36F7619> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff4c31d000 - 0x7fff4c40aff3 com.apple.PDFKit (1.0 - 745.4) <59D93E57-AEBC-390A-A274-D2F5FF7BB495> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff4c40b000 - 0x7fff4c8daff7 com.apple.QuartzComposer (5.1 - 370) <9C59494E-8D09-359E-B457-AA893520984C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff4c8db000 - 0x7fff4c901ff7 com.apple.quartzfilters (1.10.0 - 83.1) <1CABB0FA-A6DB-3DD5-A598-F298F081E04E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff4c902000 - 0x7fff4ca03ff7 com.apple.QuickLookUIFramework (5.0 - 775.6) <5660DDBA-2BE4-310A-9E81-370106EDB21D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff4ca04000 - 0x7fff4ca04fff com.apple.quartzframework (1.5 - 23) <60642CA0-6F94-3B4A-A4D8-EC54AAE66298> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff4ca05000 - 0x7fff4cc5cff7 com.apple.QuartzCore (1.11 - 701.14) <FCFB5C3B-A370-3B46-ABAA-1F627322917C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4cc5d000 - 0x7fff4ccb4fff com.apple.QuickLookFramework (5.0 - 775.6) <CB74C63F-E223-3783-9021-8E28091BCDA6> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff4ce7b000 - 0x7fff4ce93ff7 com.apple.SafariServices.framework (14609 - 14609.1.20.111.8) <18937712-AD3B-36FF-B1E9-CC2DCE604A5F> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff4d492000 - 0x7fff4d792ff7 com.apple.security (7.0 - 58286.270.6) <0FA49A7B-26C3-3DEF-B369-046E6D0CDF12> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff4d793000 - 0x7fff4d81ffff com.apple.securityfoundation (6.0 - 55185.260.1) <C5C23F73-34A8-3676-9FFB-B18ABB42DA1A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff4d820000 - 0x7fff4d850ffb com.apple.securityinterface (10.0 - 55109.200.8) <F1EB63CB-1430-3323-93A1-F197D172FFDC> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff4d851000 - 0x7fff4d855fff com.apple.xpc.ServiceManagement (1.0 - 1) <7F9EC269-38C8-334B-976A-3951021B28B7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff4daa4000 - 0x7fff4dabaffb com.apple.StoreKit (1.0 - 1) <5E26D23D-D85C-32EF-AE44-2B0437893274> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit 0x7fff4dbee000 - 0x7fff4dc5bfff com.apple.SystemConfiguration (1.17 - 1.17) <30C8327F-3EFF-3520-9C50-016F8B6B954F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff4deba000 - 0x7fff4e21bfff com.apple.VideoToolbox (1.0 - 2290.14) <30C690CF-8935-39E8-B343-ADB009C84FC5> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff50e97000 - 0x7fff50f3cfff com.apple.APFS (1.0 - 1) <3648C339-C5EE-36D1-9F86-B0A1833CC81E> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff51951000 - 0x7fff51952ff7 com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff51d10000 - 0x7fff51e53fff com.apple.AnnotationKit (1.0 - 232.3.31) <73F4FFC8-A97F-3B97-AA8B-7C4CFF769295> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit 0x7fff51f53000 - 0x7fff51f7fff7 com.apple.framework.Apple80211 (13.0 - 1380.2) <876E7F7A-9233-3B73-9198-84D1485948A5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff520a7000 - 0x7fff520b6fc7 com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff521b2000 - 0x7fff521bdfff com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff521fe000 - 0x7fff52247ff3 com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff5249b000 - 0x7fff524bdfff com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff5257d000 - 0x7fff52580ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <B4359468-EB6F-34E6-9B6F-AB23721D4A40> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff52581000 - 0x7fff525d1ff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) <58E833CC-6C8B-3882-A2EC-C7B774A9FB1C> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff5261c000 - 0x7fff52630ffb com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff529ff000 - 0x7fff52aebff7 com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff52cad000 - 0x7fff52cb5fff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff52cb6000 - 0x7fff52d4bfff com.apple.backup.framework (1.10.5 - ???) <4EEC51E2-AE4C-340A-B686-901810152C12> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff52d4c000 - 0x7fff52db9ff3 com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff52dc2000 - 0x7fff52dc8ffb com.apple.BezelServicesFW (317.5 - 317.5) <AEA46A32-E9A5-3EC2-9246-5506BDC4CA13> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff52e3f000 - 0x7fff52e7bff3 com.apple.bom (14.0 - 197.6) <A99A6F9A-AFDE-3BC6-95CE-AA90B268B805> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff53c18000 - 0x7fff53c67ff7 com.apple.ChunkingLibrary (201 - 201) <DFE16C42-24E6-386F-AC50-0058F61980A2> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff53d81000 - 0x7fff53e06ff7 com.apple.CloudDocs (1.0 - 575.302) <524BC6E6-9AF7-3DBE-8FC5-BD35B7A94B55> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs 0x7fff54a25000 - 0x7fff54a2effb com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff54a42000 - 0x7fff54a57ffb com.apple.commonutilities (8.0 - 900) <080E168B-21B7-3CCA-AB84-BB9911D18DAC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff54ec7000 - 0x7fff552aafef com.apple.CoreAUC (274.0.0 - 274.0.0) <C71F1581-E73B-3DA0-958B-E912C3FB3F23> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff552ab000 - 0x7fff552d9ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <A04A99B8-DAC5-36FC-BAC7-7431600C1F89> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff552f9000 - 0x7fff55317fff com.apple.CoreAnalytics.CoreAnalytics (1.0 - 1) <5AFC8A18-30CA-3D29-A509-DF21AC4DB921> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff5536f000 - 0x7fff553cdffb com.apple.corebrightness (1.0 - 1) <AD8986BB-B42C-3219-A7BF-61C557D59DD4> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff55707000 - 0x7fff55718ff7 com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff558c1000 - 0x7fff559b0fff com.apple.CoreHandwriting (161 - 1.2) <7CBB18C3-FE95-3352-9D67-B441E89AD10F> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting 0x7fff55b82000 - 0x7fff55b98ffb com.apple.CoreMediaAuthoring (2.2 - 959) <86089759-E920-37DB-A3BB-F5621C351E4A> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff55cc2000 - 0x7fff55d28ff7 com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff55e94000 - 0x7fff55f20fff com.apple.CorePDF (4.0 - 414) <E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff55fd5000 - 0x7fff55fddff7 com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff56159000 - 0x7fff5618aff3 com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff56551000 - 0x7fff565d5fff com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff56665000 - 0x7fff56790ff7 com.apple.coreui (2.1 - 499.10) <A80F4B09-F940-346F-A9DF-4EFADD9220A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff56791000 - 0x7fff56931fff com.apple.CoreUtils (5.9 - 590.16) <8EB92D68-B498-3213-9D74-5AF13B3B1418> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff56985000 - 0x7fff569e8ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) <5C362A09-184D-38CC-90F0-5FFCA6029729> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff569e9000 - 0x7fff569faff3 com.apple.CrashReporterSupport (10.13 - 938.28) <74CC266D-FEF3-32DB-A16F-0ECB8D79C993> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff56a8a000 - 0x7fff56a99fff com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff56a9a000 - 0x7fff56a9eff7 com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff56b1f000 - 0x7fff56b94ffb com.apple.datadetectorscore (7.0 - 590.27) <06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff56be0000 - 0x7fff56c1dff7 com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff56c1e000 - 0x7fff56d59ff7 com.apple.desktopservices (1.13.5 - ???) <ED60E493-4E56-3622-A55C-2CABF5D02316> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff56f65000 - 0x7fff5702bfff com.apple.DiskManagement (12.1 - 1555.270.2) <087F13AB-C8DA-3E6A-B457-1AA894D73ECC> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff5702c000 - 0x7fff57030ffb com.apple.DisplayServicesFW (3.1 - 380) <62041594-2A4C-3362-87EE-F8E8C8E5BEEC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff570d9000 - 0x7fff570dcff3 com.apple.EFILogin (2.0 - 2) <C8EDA539-CA28-3962-8507-DC5F058CB6B5> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff57812000 - 0x7fff57af4ff7 com.apple.vision.EspressoFramework (1.0 - 120) <8B56D943-F87B-3A01-B7A4-19DE3312B61C> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso 0x7fff57ca0000 - 0x7fff580bbfff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff580ec000 - 0x7fff58171ff7 com.apple.FileProvider (125.130 - 125.130) <D95A997E-33E6-3427-9A4B-B16756ACBA0B> /System/Library/PrivateFrameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff5b96f000 - 0x7fff5b970fff libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff5d010000 - 0x7fff5d015fff com.apple.GPUWrangler (3.50.15 - 3.50.15) <B42426AC-C5E9-3ECD-9798-22811555C9F6> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff5d3a3000 - 0x7fff5d3c7ff3 com.apple.GenerationalStorage (2.0 - 285.101) <84C2E52C-F2C6-3FF8-87E5-3C88A40D3881> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff5de21000 - 0x7fff5de30fff com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff5df96000 - 0x7fff5e00affb com.apple.Heimdal (4.0 - 2.0) <D97FCF19-EAD6-3E2F-BE88-F817E45CAE96> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff5f30f000 - 0x7fff5f316ffb com.apple.IOAccelerator (404.14 - 404.14) <8E1BB4BA-15A7-3711-8502-AD2770EE368F> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff5f31a000 - 0x7fff5f332fff com.apple.IOPresentment (1.0 - 42.6) <890C4723-37AB-344B-9BF8-BFD436C06EE8> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff5f6da000 - 0x7fff5f707ff7 com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff5f831000 - 0x7fff5f835ffb com.apple.InternationalSupport (1.0 - 10.15.6) <6226A905-D055-321D-B665-5B0CC4798A74> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff5f99a000 - 0x7fff5f9acff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <70CE5230-195D-3443-94EE-EFA57039724F> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff5f9c7000 - 0x7fff5faa2ff7 com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff5faa3000 - 0x7fff5fadfff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff5fae6000 - 0x7fff5faebfff com.apple.LinguisticData (1.0 - 238.25) <F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff6030a000 - 0x7fff6030dfff com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff60394000 - 0x7fff603baff3 com.apple.MarkupUI (1.0 - 232.3.31) <51E6781F-99C4-37D1-8FFE-0AFEDA997396> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI 0x7fff60422000 - 0x7fff60455ff7 com.apple.MediaKit (16 - 907) <AB279933-3DEB-3F96-9634-166B8F0C2919> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff60456000 - 0x7fff60779fff com.apple.MediaRemote (1.0 - 1) <8AF135B0-781C-3B85-B44A-C0CFAC3EADE0> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff6077a000 - 0x7fff6079dfff com.apple.MediaServices (1.0 - 1) <82718A05-BD2D-37C2-A689-F09542CA988F> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff607e1000 - 0x7fff60809ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff6080a000 - 0x7fff60897ff7 com.apple.gpusw.MetalTools (1.0 - 1) <9B542958-6363-3041-A265-EC7AC7BD7A43> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff608ae000 - 0x7fff608c7ffb com.apple.MobileAssets (1.0 - 437.250.3) <8BE5B3A0-8F3A-3FAE-9AFF-32836300183C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff60a67000 - 0x7fff60a82ffb com.apple.MobileKeyBag (2.0 - 1.0) <39337CBB-1D39-3DDC-A998-591194C76523> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff60a95000 - 0x7fff60b0afff com.apple.Montreal (1.0 - 42.15.9) <17BFD046-4362-3A76-A496-648D00FF3743> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal 0x7fff60b0b000 - 0x7fff60b35ffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff60d71000 - 0x7fff60d7bfff com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff60e51000 - 0x7fff60e6bff7 com.apple.network.statistics.framework (1.2 - 1) <B056D329-5C7C-3FB4-991E-7092DB2F9A5B> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff615dc000 - 0x7fff6162dff3 com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff626d1000 - 0x7fff627c4fff com.apple.PencilKit (1.0 - 1) <79225726-6980-3680-AC0B-D8C5C5DB2224> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit 0x7fff627c5000 - 0x7fff627d4ff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff627d5000 - 0x7fff627feff3 com.apple.persistentconnection (1.0 - 1.0) <9ECE64D9-8C5F-3FCE-8A46-29D7B3966920> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff64205000 - 0x7fff64216ffb com.apple.PowerLog (1.0 - 1) <5B7CB9AD-2C2B-3059-A044-0B297DDD574C> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog 0x7fff64611000 - 0x7fff64665ffb com.apple.ProtectedCloudStorage (1.0 - 1) <0D6BFA27-B807-3999-8B65-C2183803CA20> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff64666000 - 0x7fff64684ff7 com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff64802000 - 0x7fff64805ff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <69D0DD00-A3D2-3835-91F0-F33BD9D7D740> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem 0x7fff64806000 - 0x7fff6481bff3 com.apple.QuickLookThumbnailing (1.0 - 1) <B5E746AE-1DCB-3299-8626-10CCCBC2D5EE> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff6481c000 - 0x7fff6486cfff com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit 0x7fff649a8000 - 0x7fff649b3fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.4) <91B495F6-7379-32A4-8185-265A193C9DF7> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff649c6000 - 0x7fff649e8fff com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff649e9000 - 0x7fff649fcff3 com.apple.xpc.RemoteXPC (1.0 - 1336.261.4) <F2A776AB-3830-3481-B4C4-A63FD454A1D0> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff661f2000 - 0x7fff66310fff com.apple.Sharing (1288.62.2 - 1288.62.2) <C780AAF5-01ED-3FA5-B8DA-65C37C0E69D4> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff67124000 - 0x7fff673d3fff com.apple.SkyLight (1.600.0 - 340.54) <BCC76147-6AAB-3B2A-8754-6AECFA126882> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff67b76000 - 0x7fff67b82fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff67c34000 - 0x7fff67e97ff3 com.apple.spotlight.index (10.7.0 - 1191.57) <04DE70D5-D9C4-3886-A3DB-6E32040D69E3> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex 0x7fff68221000 - 0x7fff6825dff3 com.apple.StreamingZip (1.0 - 1) <046FAD5C-E0C5-3013-B1FE-24C018A0DDCF> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff682d3000 - 0x7fff6835efc7 com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff6835f000 - 0x7fff68367ffb com.apple.SymptomDiagnosticReporter (1.0 - 820.267.1) <DB68EC08-EC2D-35DC-8D34-B4A2C36A9DE9> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff68835000 - 0x7fff68841fff com.apple.private.SystemPolicy (1.0 - 1) <9CDA85A3-875C-3615-8818-2DC73E9FFE8B> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy 0x7fff68846000 - 0x7fff68852ffb com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff68ab8000 - 0x7fff68b80ff3 com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff68c3d000 - 0x7fff68df5ffb com.apple.UIFoundation (1.0 - 551.5) <A0FDC3A4-45C6-3C87-B77F-7DC394374C08> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff69a71000 - 0x7fff69b4afff com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff6a322000 - 0x7fff6a325fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff6a726000 - 0x7fff6a728ffb com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff6a9f2000 - 0x7fff6aa26fff libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib 0x7fff6aa29000 - 0x7fff6aa33ff7 libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib 0x7fff6aa34000 - 0x7fff6aabdfff libCoreStorage.dylib (546.50.1) <8E643B27-7986-3351-B37E-038FB6794BF9> /usr/lib/libCoreStorage.dylib 0x7fff6aac1000 - 0x7fff6aac2ffb libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6aaf9000 - 0x7fff6ad50ff3 libFosl_dynamic.dylib (18.3.4) <1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8> /usr/lib/libFosl_dynamic.dylib 0x7fff6ad70000 - 0x7fff6ad77fff libMatch.1.dylib (31.200.1) <EF8164CB-B599-39D9-9E73-4958A372DC0B> /usr/lib/libMatch.1.dylib 0x7fff6ada1000 - 0x7fff6adc0fff libMobileGestalt.dylib (645.270.1) <99A06C8A-97D6-383D-862C-F453BABB48A4> /usr/lib/libMobileGestalt.dylib 0x7fff6adc1000 - 0x7fff6adc1fff libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib 0x7fff6af01000 - 0x7fff6af02ffb libSystem.B.dylib (1252.250.1) <71C12F94-14DC-379B-8D2A-0523D0A58245> /usr/lib/libSystem.B.dylib 0x7fff6af7e000 - 0x7fff6af7ffff libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib 0x7fff6af91000 - 0x7fff6afa7ffb libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib 0x7fff6afa8000 - 0x7fff6afd1ffb libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib 0x7fff6afd2000 - 0x7fff6b051fff libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib 0x7fff6b055000 - 0x7fff6b055ff3 libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib 0x7fff6b127000 - 0x7fff6b137ffb libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib 0x7fff6b138000 - 0x7fff6b145fff libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib 0x7fff6b146000 - 0x7fff6b199ff7 libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib 0x7fff6b19a000 - 0x7fff6b1afff7 libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib 0x7fff6b1b0000 - 0x7fff6b1b0ff3 libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib 0x7fff6b1b1000 - 0x7fff6b1c1ffb libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib 0x7fff6b1c2000 - 0x7fff6b1daffb libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib 0x7fff6b44f000 - 0x7fff6b465fff libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib 0x7fff6b466000 - 0x7fff6b467ff3 libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6b900000 - 0x7fff6b90bff7 libcsfde.dylib (546.50.1) <7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063> /usr/lib/libcsfde.dylib 0x7fff6b913000 - 0x7fff6b969ff3 libcups.2.dylib (462.15) <564CFA6B-7353-3221-BB15-750B8ED472CC> /usr/lib/libcups.2.dylib 0x7fff6ba9d000 - 0x7fff6ba9dfff libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib 0x7fff6ba9e000 - 0x7fff6bab7ffb libexpat.1.dylib (16.1.2) <3E146D20-52C1-3EDA-9374-1243E2890AC6> /usr/lib/libexpat.1.dylib 0x7fff6bacf000 - 0x7fff6bad4ff7 libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib 0x7fff6bad5000 - 0x7fff6badaff7 libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib 0x7fff6bb05000 - 0x7fff6bbf5fff libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib 0x7fff6bbf6000 - 0x7fff6be57ffb libicucore.A.dylib (62141.0.1) <A0D63918-76E9-3C1B-B255-46F4C1DA7FE8> /usr/lib/libicucore.A.dylib 0x7fff6bea4000 - 0x7fff6bea5fff liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib 0x7fff6bea6000 - 0x7fff6bebeff3 liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib 0x7fff6bed6000 - 0x7fff6bf7aff7 libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib 0x7fff6bf7b000 - 0x7fff6c17ffff libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib 0x7fff6c357000 - 0x7fff6c6a8ff7 libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib 0x7fff6c73a000 - 0x7fff6cebffdf libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib 0x7fff6ced1000 - 0x7fff6ced5ffb libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib 0x7fff6ced8000 - 0x7fff6cf0dfff libpcap.A.dylib (79.250.3) <97B8CE1B-3EF6-3443-95EF-5659733139C9> /usr/lib/libpcap.A.dylib 0x7fff6cf63000 - 0x7fff6cf66fff libpmenergy.dylib (194.267.1) <D9B2C370-A3DF-39FC-A094-A43BE27C1949> /usr/lib/libpmenergy.dylib 0x7fff6cf67000 - 0x7fff6cf69fff libpmsample.dylib (194.267.1) <62C7BE1F-D59A-3229-BFDF-7B2210BD4079> /usr/lib/libpmsample.dylib 0x7fff6d026000 - 0x7fff6d03effb libresolv.9.dylib (65.200.3) <1FB0982D-84D9-36E0-B3D8-C808891EFF50> /usr/lib/libresolv.9.dylib 0x7fff6d040000 - 0x7fff6d07bff3 libsandbox.1.dylib (851.270.1) <04B924EF-2385-34DF-807E-93AAD9EF3AAB> /usr/lib/libsandbox.1.dylib 0x7fff6d08f000 - 0x7fff6d090ff7 libspindump.dylib (267.3) <A584E403-8C95-3841-9C16-E22664A5A63F> /usr/lib/libspindump.dylib 0x7fff6d091000 - 0x7fff6d26efff libsqlite3.dylib (274.26) <6404BA3B-BCA4-301F-B2FE-8776105A2AA3> /usr/lib/libsqlite3.dylib 0x7fff6d487000 - 0x7fff6d48aff7 libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib 0x7fff6d48b000 - 0x7fff6d498fff libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib 0x7fff6d49d000 - 0x7fff6d580ff3 libxml2.2.dylib (32.15) <2748446B-C53C-3B6C-BB5D-B9153D7243E1> /usr/lib/libxml2.2.dylib 0x7fff6d581000 - 0x7fff6d5a9ff3 libxslt.1.dylib (16.7) <EC50E503-AEEE-3F50-956F-55E4AF4584D9> /usr/lib/libxslt.1.dylib 0x7fff6d5aa000 - 0x7fff6d5bcff7 libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib 0x7fff6dda0000 - 0x7fff6dda4ff3 libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib 0x7fff6dda5000 - 0x7fff6ddafff3 libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib 0x7fff6ddb0000 - 0x7fff6ddb7ff7 libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib 0x7fff6ddb8000 - 0x7fff6ddc1ff7 libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib 0x7fff6ddc2000 - 0x7fff6de46fc3 libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib 0x7fff6decd000 - 0x7fff6df06ff7 libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib 0x7fff6df07000 - 0x7fff6df33ff7 libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib 0x7fff6df34000 - 0x7fff6df34ffb libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib 0x7fff6df35000 - 0x7fff6df41ff3 libkxld.dylib (4903.278.28) <FF9ACA9D-9EC8-38BC-A140-8526AE45C9E7> /usr/lib/system/libkxld.dylib 0x7fff6df42000 - 0x7fff6df42ff7 liblaunch.dylib (1336.261.4) <AEBAE502-D691-3D26-BFD9-CB41090C0360> /usr/lib/system/liblaunch.dylib 0x7fff6df43000 - 0x7fff6df48fff libmacho.dylib (927.0.3) <A377D608-77AB-3F6E-90F0-B4F251A5C12F> /usr/lib/system/libmacho.dylib 0x7fff6df49000 - 0x7fff6df4bff7 libquarantine.dylib (86.270.1) <3F36A3D6-9606-3D90-B520-809BAEF981C3> /usr/lib/system/libquarantine.dylib 0x7fff6df4c000 - 0x7fff6df4dff7 libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib 0x7fff6df4e000 - 0x7fff6df65ff3 libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib 0x7fff6df66000 - 0x7fff6df66ff7 libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib 0x7fff6df67000 - 0x7fff6dfeefff libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib 0x7fff6dfef000 - 0x7fff6dff2ffb libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib 0x7fff6dff3000 - 0x7fff6dff6ff7 libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6dff7000 - 0x7fff6dffdfff libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib 0x7fff6dffe000 - 0x7fff6e004ffb libsystem_dnssd.dylib (878.270.3) <D5352ABD-0311-3327-8E64-93F29EB19BF1> /usr/lib/system/libsystem_dnssd.dylib 0x7fff6e005000 - 0x7fff6e050ffb libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib 0x7fff6e051000 - 0x7fff6e079ff7 libsystem_kernel.dylib (4903.278.28) <5B6BB78A-7845-3A31-B87E-03E18DDE4D86> /usr/lib/system/libsystem_kernel.dylib 0x7fff6e07a000 - 0x7fff6e0c5ff7 libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib 0x7fff6e0c6000 - 0x7fff6e0f0fff libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib 0x7fff6e0f1000 - 0x7fff6e0fbff7 libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6e0fc000 - 0x7fff6e103fff libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib 0x7fff6e104000 - 0x7fff6e10dfef libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib 0x7fff6e10e000 - 0x7fff6e118ff7 libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib 0x7fff6e119000 - 0x7fff6e11cff7 libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6e11d000 - 0x7fff6e11fff3 libsystem_secinit.dylib (30.260.2) <EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE> /usr/lib/system/libsystem_secinit.dylib 0x7fff6e120000 - 0x7fff6e127ff3 libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6e128000 - 0x7fff6e13dff7 libsystem_trace.dylib (906.260.2) <12C1B9A2-39D6-3428-AE60-2303BD201A57> /usr/lib/system/libsystem_trace.dylib 0x7fff6e13f000 - 0x7fff6e144ffb libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib 0x7fff6e145000 - 0x7fff6e174fff libxpc.dylib (1336.261.4) <7A9D1BF7-F17F-3B87-9373-B0079544E8C5> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 6 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: 121390 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=552.2M resident=0K(0%) swapped_out_or_unallocated=552.2M(100%) Writable regions: Total=330.8M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=330.8M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 256K 2 Activity Tracing 256K 1 CG backing stores 992K 2 CG image 16.1M 5 CoreAnimation 108K 6 CoreGraphics 8K 1 CoreImage 24K 2 CoreUI image data 768K 7 CoreUI image file 352K 4 Dispatch continuations 8192K 1 Foundation 28K 2 IOKit 7940K 1 Kernel Alloc Once 8K 1 MALLOC 78.6M 42 MALLOC guard page 32K 7 Mach message 32K 5 Memory Tag 242 12K 1 Memory Tag 255 144.9M 87 STACK GUARD 56.1M 32 Stack 210.3M 32 VM_ALLOCATE 1628K 15 __DATA 40.3M 319 __FONT_DATA 4K 1 __LINKEDIT 225.3M 9 __TEXT 326.8M 322 __UNICODE 564K 1 mapped file 72.6M 24 shared memory 688K 9 =========== ======= ======= TOTAL 1.2G 941 ```
https://github.com/electron/electron/issues/23428
https://github.com/electron/electron/pull/23467
392ea320cf60916b3f47da2691f6a295c04a3e0c
61145184632497f381e21b881b7edc19057e1e87
2020-05-06T15:45:10Z
c++
2020-05-11T01:24:45Z
closed
electron/electron
https://github.com/electron/electron
23,316
["shell/browser/ui/file_dialog_mac.mm"]
Open dialog filter does not except a file extension of tar.gz
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details I saw this issue in vscode version 1.39 I am creating a vscode extension with the following code ``` const openDialogOptions: vscode.OpenDialogOptions = { canSelectFiles: true, canSelectFolders: false, canSelectMany: false, openLabel: 'Select', filters: { Packages: ['tar.gz', 'tgz'] } }; const fileBrowser: vscode.Uri[] = await vscode.window.showOpenDialog(openDialogOptions); ``` When trying out the extension the open file dialog box appears but a tar.gz file will be greyed out but tgz files won't be greyed out * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> 4.2.10 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> I expect to be able to select both tgz and tar.gz files from an open file dialog box ### Actual Behavior <!-- A clear and concise description of what actually happened. --> I can't select tar.gz files ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> see this vscode issue https://github.com/microsoft/vscode/issues/94277 <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23316
https://github.com/electron/electron/pull/23409
a4f701f9a5ce1325c8b76a0524c72ed8bad88439
fc434f136b1d6d16a525d70be12c235c769fd8e7
2020-04-28T15:59:22Z
c++
2020-05-07T15:52:56Z
closed
electron/electron
https://github.com/electron/electron
23,282
["lib/browser/api/menu-item.js", "lib/browser/api/menu.js", "spec-main/api-menu-spec.ts"]
Crash when pressing ALT and setMenu is called with Menu.buildFromTemplate([])
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 -->v8.2.3 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 -->Windows 10 (64 bit) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 -->N/A ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> Doesn't crash ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Crashes ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> ``` const { app, BrowserWindow, Menu } = require('electron'); function createWindow () { let win = new BrowserWindow(); win.setMenu(Menu.buildFromTemplate([])); win.loadFile('index.html'); } app.whenReady().then(createWindow); ``` Press ALT in the window that pops up. Result: electron.exe crashes. Probably `Menu.buildFromTemplate` shouldn't be called with an empty array... BUT, this still shouldn't crash the application in my opinion. ### Call stack from crashdump ``` electron.exe!views::FocusSearch::FindNextFocusableViewImpl(views::View * starting_view, views::FocusSearch::StartingViewPolicy check_starting_view, bool can_go_up, bool can_go_down, views::FocusSearch::AnchoredDialogPolicy can_go_into_anchored_dialog, int skip_group_id, base::internal::flat_tree<views::View *,views::View *,base::internal::GetKeyFromValueIdentity<views::View *>,std::__1::less<void>> * seen_views, views::FocusTraversable * * focus_traversable, views::View * * focus_traversable_view) Line 186 C++ electron.exe!views::FocusSearch::FindNextFocusableView(views::View * starting_view, views::FocusSearch::SearchDirection search_direction, views::FocusSearch::TraversalDirection traversal_direction, views::FocusSearch::StartingViewPolicy check_starting_view, views::FocusSearch::AnchoredDialogPolicy can_go_into_anchored_dialog, views::FocusTraversable * * focus_traversable, views::View * * focus_traversable_view) Line 63 C++ [Inline Frame] electron.exe!views::AccessiblePaneView::GetFirstFocusableChild() Line 138 C++ electron.exe!views::AccessiblePaneView::SetPaneFocus(views::View * initial_focus) Line 72 C++ electron.exe!electron::MenuBar::SetPaneFocus(views::View * initial_focus) Line 204 C++ electron.exe!electron::RootView::HandleKeyEvent(const content::NativeWebKeyboardEvent & event) Line 153 C++ electron.exe!electron::CommonWebContentsDelegate::HandleKeyboardEvent(content::WebContents * source, const content::NativeWebKeyboardEvent & event) Line 37 C++ electron.exe!content::RenderWidgetHostImpl::OnKeyboardEventAck(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> & event, content::InputEventAckSource ack_source, content::InputEventAckState ack_result) Line 2126 C++ [Inline Frame] electron.exe!base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>::Run(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> & args, content::InputEventAckSource args, content::InputEventAckState args) Line 98 C++ electron.exe!content::InputRouterImpl::KeyboardEventHandled(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> & event, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)> event_result_callback, content::InputEventAckSource source, const ui::LatencyInfo & latency, content::InputEventAckState state, const base::Optional<ui::DidOverscrollParams> & overscroll, const base::Optional<cc::TouchAction> & touch_action) Line 566 C++ [Inline Frame] electron.exe!base::internal::FunctorTraits<void (content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &),void>::Invoke(void(content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &) method, base::WeakPtr<content::InputRouterImpl> && receiver_ptr, content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> && args, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)> && args, content::InputEventAckSource && args, const ui::LatencyInfo & args, content::InputEventAckState && args, const base::Optional<ui::DidOverscrollParams> &) Line 498 C++ [Inline Frame] electron.exe!base::internal::InvokeHelper<1,void>::MakeItSo(void(content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &) && functor, base::WeakPtr<content::InputRouterImpl> && weak_ptr, content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> && args, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)> && args, content::InputEventAckSource && args, const ui::LatencyInfo & args, content::InputEventAckState && args, const base::Optional<ui::DidOverscrollParams> &) Line 618 C++ [Inline Frame] electron.exe!base::internal::Invoker<base::internal::BindState<void (content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &),base::WeakPtr<content::InputRouterImpl>,content::EventWithLatencyInfo<content::NativeWebKeyboardEvent>,base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>>,void (content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &)>::RunImpl(void(content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &) && functor, std::__1::tuple<base::WeakPtr<content::InputRouterImpl>,content::EventWithLatencyInfo<content::NativeWebKeyboardEvent>,base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>> && bound, std::__1::integer_sequence<unsigned long long,0,1,2>, content::InputEventAckSource && unbound_args, const ui::LatencyInfo & unbound_args, content::InputEventAckState && unbound_args, const base::Optional<ui::DidOverscrollParams> &) Line 671 C++ electron.exe!base::internal::Invoker<base::internal::BindState<void (content::InputRouterImpl::*)(const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>, content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &),base::WeakPtr<content::InputRouterImpl>,content::EventWithLatencyInfo<content::NativeWebKeyboardEvent>,base::OnceCallback<void (const content::EventWithLatencyInfo<content::NativeWebKeyboardEvent> &, content::InputEventAckSource, content::InputEventAckState)>>,void (content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &)>::RunOnce(base::internal::BindStateBase * base, content::InputEventAckSource unbound_args, const ui::LatencyInfo & unbound_args, content::InputEventAckState unbound_args, const base::Optional<ui::DidOverscrollParams> & unbound_args, const base::Optional<cc::TouchAction> & unbound_args) Line 644 C++ [Inline Frame] electron.exe!base::OnceCallback<void (content::InputEventAckSource, const ui::LatencyInfo &, content::InputEventAckState, const base::Optional<ui::DidOverscrollParams> &, const base::Optional<cc::TouchAction> &)>::Run(content::InputEventAckSource args, const ui::LatencyInfo & args, content::InputEventAckState args, const base::Optional<ui::DidOverscrollParams> & args, const base::Optional<cc::TouchAction> & args) Line 98 C++ electron.exe!content::mojom::WidgetInputHandler_DispatchEvent_ForwardToCallback::Accept(mojo::Message * message) Line 1969 C++ electron.exe!mojo::InterfaceEndpointClient::HandleValidatedMessage(mojo::Message * message) Line 549 C++ electron.exe!mojo::internal::MultiplexRouter::ProcessIncomingMessage(mojo::internal::MultiplexRouter::MessageWrapper * message_wrapper, mojo::internal::MultiplexRouter::ClientCallBehavior client_call_behavior, base::SequencedTaskRunner * current_task_runner) Line 882 C++ electron.exe!mojo::internal::MultiplexRouter::Accept(mojo::Message * message) Line 608 C++ electron.exe!mojo::Connector::DispatchMessageW(mojo::Message message) Line 538 C++ electron.exe!mojo::Connector::ReadAllAvailableMessages() Line 627 C++ [Inline Frame] electron.exe!base::RepeatingCallback<void (unsigned int, const mojo::HandleSignalsState &)>::Run(unsigned int args, const mojo::HandleSignalsState & args) Line 132 C++ electron.exe!mojo::SimpleWatcher::OnHandleReady(int watch_id, unsigned int result, const mojo::HandleSignalsState & state) Line 293 C++ [Inline Frame] electron.exe!base::OnceCallback<void ()>::Run() Line 98 C++ electron.exe!base::TaskAnnotator::RunTask(const char * trace_event_name, base::PendingTask * pending_task) Line 142 C++ electron.exe!base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow * continuation_lazy_now, bool * ran_task) Line 366 C++ electron.exe!base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoSomeWork() Line 221 C++ electron.exe!base::MessagePumpForUI::DoRunLoop() Line 218 C++ electron.exe!base::MessagePumpWin::Run(base::MessagePump::Delegate * delegate) Line 76 C++ electron.exe!base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool application_tasks_allowed, base::TimeDelta timeout) Line 471 C++ electron.exe!base::RunLoop::Run() Line 158 C++ electron.exe!content::BrowserMainLoop::MainMessageLoopRun() Line 1537 C++ electron.exe!content::BrowserMainLoop::RunMainMessageLoopParts() Line 1064 C++ electron.exe!content::BrowserMainRunnerImpl::Run() Line 151 C++ electron.exe!content::BrowserMain(const content::MainFunctionParams & parameters) Line 47 C++ electron.exe!content::RunBrowserProcessMain(const content::MainFunctionParams & main_function_params, content::ContentMainDelegate * delegate) Line 527 C++ electron.exe!content::ContentMainRunnerImpl::RunServiceManager(content::MainFunctionParams & main_params, bool start_service_manager_only) Line 960 C++ electron.exe!content::ContentMainRunnerImpl::Run(bool start_service_manager_only) Line 872 C++ electron.exe!service_manager::Main(const service_manager::MainParams & params) Line 423 C++ electron.exe!content::ContentMain(const content::ContentMainParams & params) Line 19 C++ electron.exe!wWinMain(HINSTANCE__ * instance, HINSTANCE__ *, wchar_t * cmd, int) Line 168 C++ [External Code] ```
https://github.com/electron/electron/issues/23282
https://github.com/electron/electron/pull/23308
448017b9ee9468854abc3a5c0bebe8721d01c73d
f50f725a9c6fdacaae1f2080044cbcd311e303a7
2020-04-25T21:05:47Z
c++
2020-04-30T15:29:02Z
closed
electron/electron
https://github.com/electron/electron
23,252
["patches/chromium/.patches", "patches/chromium/blink_wasm_eval_csp.patch", "spec-main/chromium-spec.ts"]
Cannot use ELECTRON_ENABLE_SECURITY_WARNINGS and load WASM
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.2.3 * **Operating System:** * macOS 10.15.4 <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> I would expect to be able to use `ELECTRON_ENABLE_SECURITY_WARNINGS` and be able to load WASM. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> From https://github.com/WebAssembly/content-security-policy/issues/7 , it looks like the only way to be able to use WASM is to add `'unsafe-eval'` to the CSP. But doing that triggers Electron's warning. ### To Reproduce Self contained example at https://github.com/alexdima/electron-wasm-issue <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> Without `'unsafe-eval'`: ![image](https://user-images.githubusercontent.com/5047891/80075250-b4771a80-854a-11ea-8d59-6947de1dc6ef.png) With `'unsafe-eval'`: ![image](https://user-images.githubusercontent.com/5047891/80075295-c5c02700-854a-11ea-906a-b4485e29df00.png) ### Additional Information <!-- Add any other context about the problem here. --> We would like to be able to use `ELECTRON_ENABLE_SECURITY_WARNINGS` and load WASM at the same time. cc @bpasero @deepak1556
https://github.com/electron/electron/issues/23252
https://github.com/electron/electron/pull/28535
17a44895dd02349374e2fb920f598e0ee5c89f8b
968b30c9b4459e4f7030042b595f26926481e260
2020-04-23T08:12:29Z
c++
2021-04-07T20:04:50Z
closed
electron/electron
https://github.com/electron/electron
23,244
["docs/api/web-contents.md", "shell/common/gin_converters/content_converter.cc"]
'before-input-event' is missing the isComposing property
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [ x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x ] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x ] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.2.2 * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * N/A ### Expected Behavior [before-input-event](https://github.com/electron/electron/blob/master/docs/api/web-contents.md#event-before-input-event) include the `isComposing` property of the [KeyboardEvents](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent) object. ### Actual Behavior There is no `KeyboardEvent.isComposing` property. ### To Reproduce ```javascript webContents.on('before-input-event', (event, input) => { console.log('Is composing defined?', input.isComposing !== undefined); }); ``` ### Screenshots Here is the shape of an event is currently fired. ![image](https://user-images.githubusercontent.com/4505008/80048100-12145400-84c4-11ea-9ae9-7115fdc22c55.png) ### Additional Information <!-- Add any other context about the problem here. -->
https://github.com/electron/electron/issues/23244
https://github.com/electron/electron/pull/23971
9d960e29eb4a1127ef5a6ae60f2ac4c06ec67c6e
27d629abb983fca5b0943ffba9564d9d7e31b8a5
2020-04-23T01:11:14Z
c++
2020-06-05T22:18:20Z
closed
electron/electron
https://github.com/electron/electron
23,220
["docs/api/app.md", "patches/chromium/.patches", "patches/chromium/feat_add_data_parameter_to_processsingleton.patch", "shell/browser/api/electron_api_app.cc", "shell/browser/api/electron_api_app.h", "spec-main/api-app-spec.ts", "spec/fixtures/api/singleton-data/main.js", "spec/fixtures/api/singleton-data/package.json", "spec/fixtures/api/singleton/main.js"]
FR: second-instance event should get the original argv or a custom data
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist * [x ] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x ] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x ] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description Following #20322 - for me as an Electron user, it's unacceptable that `second-instance` manipulates order of arguments, it's incompatible e.g. with [yargs](https://github.com/yargs/yargs) style (e.g. `myapp.exe -a 1 -b 2`). Current behaviour on Windows is confusing, not well documented. ### Proposed Solution Although I have [described a workaround](https://github.com/electron/electron/issues/20322#issuecomment-617773983), I would like Electron to somehow overcome Chromium deficiency and pass the original `argv` to the `second-instance` event or pass any custom data comfortably. I think the best solution could be by adding a string only param msg to `app.requestSingleInstanceLock(msg)` and the [`second-instance`](https://www.electronjs.org/docs/api/app#event-second-instance) would returns the fourth value `msg`. Other solution may be: 1. `second-instance` would get the original `argv`, not the Chromium one. 2. If a user pass a custom data `app.requestSingleInstanceLock(argv)`, then the `second-instance` would return this custom data as `argv`, probably processed by `JSON.parse(JSON.stringify(argv))`.
https://github.com/electron/electron/issues/23220
https://github.com/electron/electron/pull/30891
5592652504e9e46e84aa85c3bb0404211cc9e581
db0a152bc1318feb912bdc9638e0c040a2626290
2020-04-22T13:42:48Z
c++
2021-10-15T01:32:32Z
closed
electron/electron
https://github.com/electron/electron
23,211
["shell/browser/api/electron_api_session.cc", "spec-main/api-session-spec.ts"]
regression: Session#setUserAgent ignores its second acceptLanguages param
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 9.0.0-beta.18 x86 * **Operating System:** * win7 x64 sp1 * **Last Known Working Electron version:** * 4.2.9 x86 ### Expected Behavior Per the docs and the original implementation, `acceptLanguages` param should be controlling the Accept-Language header. https://github.com/electron/electron/blob/4-2-x/atom/browser/api/atom_api_session.cc#L612 https://www.electronjs.org/docs/api/session#sessetuseragentuseragent-acceptlanguages ### Actual Behavior `acceptLanguages` param is ignored, Accept-Language remains at its default. ### To Reproduce - the current user os (win7) lang is "en-US" - run the following app in 4.2 and 9.0 - inspect the request in the renderer devtools - in 4.2, Accept-Language is "fr" - in 9.0 it's "en-US" ```js 'use strict'; const {app, BrowserWindow} = require('electron'); let win; app.once('ready', () => { win = new BrowserWindow({ webPreferences: { nodeIntegration: false } }); win.webContents.session.setUserAgent('', 'fr'); win.webContents.openDevTools({mode: 'right'}); win.loadURL('about:blank'); setTimeout(() => win.loadURL('https://example.org/'), 3000); }); ``` ### Additional Information The original implementation of setUserAgent was removed at some point and it was later re-implemented by #20014 without acceptLanguages support.
https://github.com/electron/electron/issues/23211
https://github.com/electron/electron/pull/23944
90caa5eac90b9ce60f71d20505352f43e656ca45
3fa42999394502c664037091a0f356be94083541
2020-04-22T04:26:14Z
c++
2020-06-04T11:05:37Z
closed
electron/electron
https://github.com/electron/electron
23,168
["script/external-binaries.json"]
SCCache race condition hampers *.debug file correctness
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * Tested on v10.0.0-nightly.20200408 * **Operating System:** * Linux any * **Last Known Working Electron version:** * None ### Expected Behavior Compile object output should be correct. ![Screen Shot 2020-04-19 at 22 51 23](https://user-images.githubusercontent.com/581115/79743804-86ed5f80-8305-11ea-8413-dc3583d7f4b4.jpg) ### Actual Behavior While testing for Linux reproducibility I ran into an issue where build-id and debug link production section of Linux x64 binaries where randomic at each build. ![Screen Shot 2020-04-15 at 15 53 38](https://user-images.githubusercontent.com/581115/79743988-e3507f00-8305-11ea-97ec-a0255ef6cbb1.jpg) Checking at the relative debug file I noted that `.strtab` and `.debug_str` sections where of different size. Checking inside it was clear some symbol was messed up, expecially the mojom ones. ![Screen Shot 2020-04-16 at 13 49 41](https://user-images.githubusercontent.com/581115/79743678-4392f100-8305-11ea-871c-7b185df895d3.jpg) Since it was not clear why this was happening I run `diffoscope` on the `out` directory. This revealed that some `.cc` object output where going in wrong `.o`. ![Screen Shot 2020-04-18 at 12 27 52](https://user-images.githubusercontent.com/581115/79743836-98366c00-8305-11ea-8a7b-3726823df4eb.jpg) . For example some `A.cc` was finishing in `B.cc` output `B.o`. So `B.o` was present twice, while `A.o` was never present in the final binary. Since I did not know what was causing these files output to be messed up I runned multiple tests on filesystem/linker/sccache. I finally triaged the problem and it seems to be related to a newly discovered race condition in `sccache` on Linux platform. This can be verified running a multiple builds with sccache disabled. In these case the output is not only deterministic, but it also have correct objects in correct locations. ![Screen Shot 2020-04-19 at 22 51 23](https://user-images.githubusercontent.com/581115/79743804-86ed5f80-8305-11ea-8413-dc3583d7f4b4.jpg) Cc: @nornagon @ikkisoft @jkleinsc ### To Reproduce - Download https://github.com/electron/electron/blob/34a8e388fedc492d68ce00fcefd281871065f87c/script/reproducible/verify.sh - create the directory `/home/builduser/project` - run verify.sh script with `./verify.sh -b /home/builduser/project v10.0.0-nightly.20200408` - run diffoscope with `--exclude-directory-metadata --text out.txt --html out.html` the directories /home/builduser/project/src/out/Default{,2} Some files will have wrong `.o` output. ### Additional Information This is the last issue we have on Linux platform to obtain reproducibility on all major platforms on electron (macOS, Windows, Linux). While this issue is affecting the reproducibility, incorrect sccache behaviour may affect strongly electron stability and hamper the ability use the crash reports the users are sending.
https://github.com/electron/electron/issues/23168
https://github.com/electron/electron/pull/23418
1611c586ae8eb531e9a479f388428c8d7e0de92d
b7e4ed20525d44edd7d577a30765fd1ecb0f2c77
2020-04-20T11:03:45Z
c++
2020-05-05T18:38:14Z
closed
electron/electron
https://github.com/electron/electron
23,163
["lib/renderer/security-warnings.ts"]
Webview always has blink features enabled - cannot be disabled
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 8.2.3 * **Operating System:** Windows 7 * **Last Known Working Electron version:** Unknown ### Expected Behavior There should be a way to disable all blink features in a `webview`, and they should not be enabled by default OR the documentation should make clear what the defaults are. ### Actual Behavior `Electron Security Warning (enableBlinkFeatures) This renderer process has additional "enableBlinkFeatures" enabled. This exposes users of this app to some security risk. If you do not need this feature, you should disable it.` Blink features are (apparently) enabled by default. There is no option to disable them in bulk. I've tried setting `enableblinkfeatures=""`, but it's the same result. ```js <webview enableremotemodule="false" // ="false" is correct, do not change to ={false} src={webviewSrc} preload={preload} /> ```
https://github.com/electron/electron/issues/23163
https://github.com/electron/electron/pull/27753
cc1239b3118ac3d7757a31a0b8f9eedd7c63aa32
599f398ddc4d960c6d338fae4309e2a522803061
2020-04-19T22:24:04Z
c++
2021-02-18T19:11:35Z
closed
electron/electron
https://github.com/electron/electron
23,139
["shell/browser/api/electron_api_tray.cc", "shell/browser/api/electron_api_tray.h", "shell/browser/event_emitter_mixin.h", "shell/browser/javascript_environment.cc", "shell/browser/javascript_environment.h"]
tray.click action causes the app to get crashed
* **Electron Version:** 10.0.0-nightly.20200415 * **Operating System:** Linux, Windows 10 (at least) * **Last Known Working Electron version:** 10.0.0-nightly.20200327 (so it's broken since the next npm-published release which is `10.0.0-nightly.20200330`) ### Expected Behavior - The app doesn't get segfaulted. - `tray.click handler, NOOP action` message gets printed to console output. ### Actual Behavior The app gets segfaulted with `ERROR:electron_bindings.cc(40)] Fatal error in V8: v8::HandleScope::CreateHandle() Cannot create a handle without a HandleScope` message printed to the console. ### To Reproduce - git clone https://github.com/vladimiry-playground/electron-quick-start-tray-click-segfault - cd electron-quick-start-tray-click-segfault - npm ci - npm start - click the tray icon using primary/left mouse button <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information The issue looks like a blocker.
https://github.com/electron/electron/issues/23139
https://github.com/electron/electron/pull/23140
9bb8e43c9bcf7f55e274b0652eb2d9586cad9f72
ac5c30a70775838994d27946c3bb62688617421a
2020-04-16T20:23:04Z
c++
2020-04-27T18:38:43Z
closed
electron/electron
https://github.com/electron/electron
23,132
["docs/api/web-contents.md"]
Wrong types for `BrowserWindow#webContents#devToolsWebContents`
As of v8.2.2 the typescript types Electron ships with tell me that `BrowserWindow#webContents#devToolsWebContents` always exists, while in fact it will be `null` if the devtools is not open, these sorts of type-level bugs can lead to hard to discover bugs.
https://github.com/electron/electron/issues/23132
https://github.com/electron/electron/pull/23143
41b514f0880dbc9e4a463bb1a4c9ee75ee33fecc
656d371b1bc356787a9658264eda0b1b24bf4267
2020-04-16T13:55:34Z
c++
2020-04-20T15:08:51Z
closed
electron/electron
https://github.com/electron/electron
23,105
["shell/browser/ui/file_dialog_gtk.cc"]
File Dialog Crashing Electron with Segfault - Ubuntu 18.04
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** ``` 10.0.0-nightly.20200327 < GTK dialog does open, crashes after dialog closes 10.0.0-nightly.20200326 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200325 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200324 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200323 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200320 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200317 < GTK dialog doesn't open, crashes after multiple button clicks 10.0.0-nightly.20200310 < Working as expected ``` * **Operating System:** Ubuntu 18.04 x64 * **Last Known Working Electron version:** ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> I expect to be able to use the GTK FileChooser to upload/download files. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> From nightly version `10.0.0-nightly.20200317` the electron window closes without showing the file GTK FileChooser and reports a SEGFAULT in the terminal window. From nightly version `10.0.0-nightly.20200327` the GTK FileChooser opens, but after opening a file or cancelling, the electron window exits and reports a SEGFAULT in the terminal window. ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> `electron http://jsfiddle.net/lovlka/N4Jxk/` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information
https://github.com/electron/electron/issues/23105
https://github.com/electron/electron/pull/23109
4ee3c871f366407ea1e96034a4373f80ed528660
111f9155e08a2f11e4dbc48e9792fe2e6f870a05
2020-04-14T10:40:55Z
c++
2020-04-15T17:45:32Z
closed
electron/electron
https://github.com/electron/electron
23,102
["lib/browser/api/net.ts", "shell/browser/api/electron_api_url_loader.cc", "spec-main/api-net-spec.ts", "typings/internal-ambient.d.ts"]
Can't set Referer header
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.2.1 * **Operating System:** * macOS 10.14.6 ### Expected Behavior The Referer header should be able to be set on ClientRequest objects via request.setHeader(name, value). ### Actual Behavior Referer header isn't being set at all (headers can be viewed by using a proxy like Charles or Fiddler). ### To Reproduce ```const { app } = require('electron') app.on('ready', () => { const { net } = require('electron') const request = net.request('https://github.com') request.on('response', (response) => { console.log(response.statusCode}) console.log(JSON.stringify(response.headers)) response.on('data', (chunk) => { console.log(chunk) }) response.on('end', () => { console.log('No more data in response.') }) }) # this referer header should be set request.setHeader('referer', 'https://github.com') request.end() }) ``` ### Additional Information There does seem to be a Referrer property on the request that can be seen when using webRequest.onBeforeRequest but as far as I can see it's always empty and cannot be modified. Being able to set the referer header is a basic and fundamental requirement for working with some websites, would be great if this issue could be fixed. Massively appreciate all the developers taking the time working and updating this project.
https://github.com/electron/electron/issues/23102
https://github.com/electron/electron/pull/23386
0a481242f08c8fe0cae1609b4ece6f8e9536c266
9d851b879189de05ef5888138d13029f450a07fa
2020-04-13T23:54:51Z
c++
2020-05-20T17:28:38Z
closed
electron/electron
https://github.com/electron/electron
23,026
["lib/browser/init.ts", "spec-main/fixtures/api/test-menu-visibility/main.js"]
Menu bar is shown while `setMenuBarVisibility(false)`
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 9.0.0-beta.14 * **Operating System:** Windows 10 * **Last Known Working Electron version:** 8.2.1 ### Expected Behavior Setting `win.setMenuBarVisibility(false)` will hide the menu bar. ### Actual Behavior Menu bar is shown ### To Reproduce ``` let win = new BrowserWindow({ width: 800, height: 600, webPreferences: { preload: path.resolve(__dirname, '../renderer/renderer-preload.js'), plugins: true, webviewTag: true, devTools: debugMode, }, }); win.setMenuBarVisibility(false); // or win.removeMenu(); ``` <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ### Additional Information * If I set ` autoHideMenuBar: true` it disappears but it appears when you pres `alt` key. * If I set `frame: false` it disappears
https://github.com/electron/electron/issues/23026
https://github.com/electron/electron/pull/23214
69ccf94d45dad5a590d9ee1e90b40d8a2dcf8e4f
cb6a1e2c5e67deda96ae15a2f363b38912710c70
2020-04-08T10:40:09Z
c++
2020-04-23T17:51:31Z
closed
electron/electron
https://github.com/electron/electron
23,007
["shell/browser/api/electron_api_session.cc"]
Loading an extension crashes Electron
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * master * **Operating System:** * macOS 10.15.2 / Windows 10 * **Last Known Working Electron version:** * 9.0.0-beta.14 ### Expected Behavior The extension should load. ### Actual Behavior Loading an extension in any session crashes completely Electron with the following stack trace: ``` [20712:0407/231718.415617:FATAL:extension.cc(552)] Check failed: path.empty() || path.IsAbsolute(). 0 Electron Framework 0x0000000110eaa489 base::debug::CollectStackTrace(void**, unsigned long) + 9 1 Electron Framework 0x0000000110d749e3 base::debug::StackTrace::StackTrace() + 19 2 Electron Framework 0x0000000110d93419 logging::LogMessage::~LogMessage() + 249 3 Electron Framework 0x00000001167b5771 extensions::Extension::Extension(base::FilePath const&, std::__1::unique_ptr<extensions::Manifest, std::__1::default_delete<extensions::Manifest> >) + 529 4 Electron Framework 0x00000001167b208c extensions::Extension::Create(base::FilePath const&, extensions::Manifest::Location, base::DictionaryValue const&, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*) + 476 5 Electron Framework 0x00000001167fb8c9 extensions::file_util::LoadExtension(base::FilePath const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, extensions::Manifest::Location, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*) + 169 6 Electron Framework 0x00000001167fb7fc extensions::file_util::LoadExtension(base::FilePath const&, extensions::Manifest::Location, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*) + 44 7 Electron Framework 0x000000010bd2d72d extensions::(anonymous namespace)::LoadUnpacked(base::FilePath const&) + 109 8 Electron Framework 0x000000010bd2ee33 base::internal::Invoker<base::internal::BindState<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > (*)(base::FilePath const&), base::FilePath>, std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > ()>::RunOnce(base::internal::BindStateBase*) + 19 9 Electron Framework 0x000000010bd2f172 void base::internal::ReturnAsParamAdapter<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(base::OnceCallback<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > ()>, std::__1::unique_ptr<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::default_delete<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*) + 130 10 Electron Framework 0x000000010bd2f427 base::internal::Invoker<base::internal::BindState<void (*)(base::OnceCallback<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > ()>, std::__1::unique_ptr<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::default_delete<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*), base::OnceCallback<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > ()>, std::__1::unique_ptr<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::default_delete<std::__1::pair<scoped_refptr<extensions::Extension const>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >*>, void ()>::RunOnce(base::internal::BindStateBase*) + 39 11 Electron Framework 0x0000000110e5cf2a base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply(base::(anonymous namespace)::PostTaskAndReplyRelay) + 186 12 Electron Framework 0x0000000110e5d379 base::internal::Invoker<base::internal::BindState<void (*)(base::(anonymous namespace)::PostTaskAndReplyRelay), base::(anonymous namespace)::PostTaskAndReplyRelay>, void ()>::RunOnce(base::internal::BindStateBase*) + 73 13 Electron Framework 0x0000000110e0c554 base::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 404 14 Electron Framework 0x0000000110e47a22 base::internal::TaskTracker::RunSkipOnShutdown(base::internal::Task*) + 34 15 Electron Framework 0x0000000110e47299 base::internal::TaskTracker::RunTask(base::internal::Task, base::internal::TaskSource*, base::TaskTraits const&) + 1209 16 Electron Framework 0x0000000110ebb6ee base::internal::TaskTrackerPosix::RunTask(base::internal::Task, base::internal::TaskSource*, base::TaskTraits const&) + 238 17 Electron Framework 0x0000000110e46a0b base::internal::TaskTracker::RunAndPopNextTask(base::internal::RegisteredTaskSource) + 475 18 Electron Framework 0x0000000110e55bf6 base::internal::WorkerThread::RunWorker() + 1062 19 Electron Framework 0x0000000110e55754 base::internal::WorkerThread::RunPooledWorker() + 20 20 Electron Framework 0x0000000110ebbcdf base::(anonymous namespace)::ThreadFunc(void*) + 95 21 libsystem_pthread.dylib 0x00007fff6f70de65 _pthread_start + 148 22 libsystem_pthread.dylib 0x00007fff6f70983b thread_start + 15 Task trace: 0 Electron Framework 0x000000010bd2d376 extensions::ElectronExtensionLoader::LoadExtension(base::FilePath const&, base::OnceCallback<void (extensions::Extension const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)>) + 70 ``` ### To Reproduce https://github.com/sentialx/electron-quick-start/tree/extensions-crash-10
https://github.com/electron/electron/issues/23007
https://github.com/electron/electron/pull/25068
42409d860ba3df5a6a822e95e605ddf9ffd9880a
26f28b6ae4e33b3250a975e7e30510a03bf56efa
2020-04-07T21:23:53Z
c++
2020-08-21T03:47:10Z
closed
electron/electron
https://github.com/electron/electron
22,963
["shell/browser/ui/cocoa/electron_ns_window.mm"]
Window with customButtonsOnHover crashes
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * v9.0.0-beta.12 * **Operating System:** * macOS 10.15.4 ### Expected Behavior Don't crash ### Actual Behavior It crashes when entering fullscreen. ### To Reproduce #### Works OK ```javascript const mainWindow = new BrowserWindow({ titleBarStyle: 'hidden', }); ``` #### Crashes ```javascript const mainWindow = new BrowserWindow({ titleBarStyle: 'customButtonsOnHover', }); ``` ### Additional Information #### When starting the app, this is the log ``` (node:5588) UnhandledPromiseRejectionWarning: Error: Script failed to execute, this normally means an error was thrown. Check the renderer console for the error. at WebFrame../lib/renderer/api/web-frame.ts.WebFrame.<computed> [as executeJavaScript] (electron/js2c/renderer_init.js:1590:33) at electron/js2c/renderer_init.js:2844:43 at EventEmitter.<anonymous> (electron/js2c/renderer_init.js:2419:57) at EventEmitter.emit (events.js:210:5) at Object.onMessage (electron/js2c/renderer_init.js:2188:16) (node:5588) UnhandledPromiseRejectionWarning: Error: Script failed to execute, this normally means an error was thrown. Check the renderer console for the error. at WebFrame../lib/renderer/api/web-frame.ts.WebFrame.<computed> [as executeJavaScript] (electron/js2c/renderer_init.js:1590:33) at electron/js2c/renderer_init.js:2844:43 at EventEmitter.<anonymous> (electron/js2c/renderer_init.js:2419:57) at EventEmitter.emit (events.js:210:5) at Object.onMessage (electron/js2c/renderer_init.js:2188:16) (node:5588) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) (node:5588) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) (node:5588) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. (node:5588) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. ``` #### And when crashing this is the log ``` 2020-04-05 20:17:59.822 Electron[5588:60708] *** Assertion failure in -[ElectronNSWindow titlebarAccessoryViewControllers], /AppleInternal/BuildRoot/Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1894.40.150/AppKit.subproj/NSWindow.m:3337 ``` Not sure, but #15704 may be related.
https://github.com/electron/electron/issues/22963
https://github.com/electron/electron/pull/22988
b4447be037db1dd08c01dbc298400d7894f0928b
a7469f82ac0ea35c91b4e95d61627f06eb70cf06
2020-04-05T11:34:11Z
c++
2020-04-08T03:40:32Z
closed
electron/electron
https://github.com/electron/electron
22,951
["docs/api/command-line-switches.md", "patches/chromium/.patches", "patches/chromium/fix_default_to_ntlm_v2_in_network_service.patch", "shell/browser/api/electron_api_session.cc", "shell/browser/net/system_network_context_manager.cc", "shell/common/options_switches.cc", "shell/common/options_switches.h"]
Mac OS - HTTP authentication - NTLMv2 authentication not working
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 6.1.9, 7.2.1, 8.2.0, 9.0.X * **Operating System:** * macOS 10.15.4 * **Last Known Working Electron version:** * Never ### Expected Behavior 1. When authenticating via HTTP authentication and Proxy/Server only allows NTLMv2, authentication should work. 2. When authenticating via HTTP authentication and Proxy/Server negotiates protocol and allows NTLMv1 and NTLMv2, Electron should always use NTLMv2. ### Actual Behavior 1. When authenticating via HTTP and the Proxy/Server only allows NTLMv2 and 'login' event is triggered in Electron and **Password/Username is entered correctly**, authentication does not work. Windows Event Log Error Code 0xc000006d / Substatus 0xc000006a (https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625) 2. When authenticating via HTTP authentication and Proxy/Server negotiates protocol, Electron always uses NTLMv1. ### To Reproduce 1. Configure all Domain Controllers for Windows server to only allow NTLMv2 2. Try to authenticate with correct credentials via Electron 'login'-Event -> 'login'-Event in Electron is triggered again and the described Error Codes can be seen in Windows Event Log <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> ### Screenshots ![image](https://user-images.githubusercontent.com/6893212/78341915-be83aa00-7598-11ea-929b-836cca0097a5.png) ![image](https://user-images.githubusercontent.com/6893212/78341931-c4798b00-7598-11ea-8c8e-c44d85b41ff6.png) ### Additional Information * This issue #17111 states, that Chrome should use NTLMv2 per default since Chromium 65 * NTLMv2 in Electron works on Windows 10 Version 1903 (OS Build 18362.476) * NTLMv2 is used and works per default on Chromium Browser Version 80.0.3987.158, which is used in current stable Electron Version 8.2.0, where it does not work
https://github.com/electron/electron/issues/22951
https://github.com/electron/electron/pull/23846
c36981da8b711c68d5c44ba68ff337247d729d2b
512e1541c6c79754695993485ec49e174ddfd3bf
2020-04-03T08:54:54Z
c++
2020-06-02T19:58:00Z
closed
electron/electron
https://github.com/electron/electron
22,910
["shell/renderer/api/electron_api_web_frame.cc"]
Crash in ExecuteJavaScript with preload, nodeIntegrationInSubFrames and invoke
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.2.0 * 9.0.0-beta.12 * **Operating System:** * MacOS 10.14.6 * **Last Known Working Electron version:** * Unknown ### Expected Behavior The renderer do not crash. ### Actual Behavior The renderer is crashing as soon as the app is starting. ### To Reproduce ```sh $ git clone https://github.com/boutetnico/electron-bug-report.git -b fpcollect $ npm install $ npm start || electron . ``` ### Additional Information I have spent a lot of time researching this and came to the conclusion the following conditions are required for the crash to occur: - `nodeIntegrationInSubFrames`=`true` - An invokable IPC is sent from preload to the main process - Followed by invokation of `executeJavaScript` - index.html loads [fp-collect](https://github.com/antoinevastel/fp-collect/blob/master/src/fpCollect.js) Crash report from Sentry: ``` OS Version: macOS 10.14.6 (18G3020) Report Version: 104 Crashed Thread: 33484704 Application Specific Information: Fatal Error: EXC_BAD_ACCESS / KERN_INVALID_ADDRESS Thread 33484704 Crashed: 0 Electron Framework 0x104a799de electron::api::ExecuteJavaScript (electron_api_web_frame.cc:385) 1 Electron Framework 0x104a7e68b mate::internal::Dispatcher<T>::DispatchToCallback (callback.h:132) 2 Electron Framework 0x1056028fb v8::internal::FunctionCallbackArguments::Call (api-arguments-inl.h:158) 3 Electron Framework 0x105601df9 v8::internal::(anonymous namespace)::HandleApiCallHelper<T> (builtins-api.cc:111) 4 Electron Framework 0x1056013d1 v8::internal::Builtin_Impl_HandleApiCall (builtins-api.cc:141) 5 Electron Framework 0x1060047d8 Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit 6 Electron Framework 0x105f94277 Builtins_InterpreterEntryTrampoline 7 Electron Framework 0x105f8dc78 Builtins_ArgumentsAdaptorTrampoline 8 Electron Framework 0x105f94277 [inlined] Builtins_InterpreterEntryTrampoline 9 Electron Framework 0x105f94277 Builtins_InterpreterEntryTrampoline 10 Electron Framework 0x105fc23af Builtins_AsyncFunctionAwaitResolveClosure 11 Electron Framework 0x105fe3b91 Builtins_PromiseFulfillReactionJob 12 Electron Framework 0x105fb4127 Builtins_RunMicrotasks 13 Electron Framework 0x105f91ad7 Builtins_JSRunMicrotasksEntry 14 Electron Framework 0x1056bb60f v8::internal::(anonymous namespace)::Invoke (simulator.h:142) 15 Electron Framework 0x1056bbc12 v8::internal::(anonymous namespace)::InvokeWithTryCatch (execution.cc:326) 16 Electron Framework 0x1056bbcdc v8::internal::Execution::TryRunMicrotasks (execution.cc:405) 17 Electron Framework 0x1056ddce6 v8::internal::MicrotaskQueue::RunMicrotasks (microtask-queue.cc:164) 18 Electron Framework 0x104a75ede electron::util::Promise<T>::ResolveWithGin (promise_util.h:186) 19 Electron Framework 0x104a75dcb base::internal::Invoker<T>::RunOnce (electron_api_renderer_ipc.cc:92) 20 Electron Framework 0x106a67c5a electron::mojom::ElectronBrowser_Invoke_ForwardToCallback::Accept (callback.h:98) 21 Electron Framework 0x106e6584f mojo::InterfaceEndpointClient::HandleValidatedMessage (interface_endpoint_client.cc:549) 22 Electron Framework 0x106e6ac72 mojo::internal::MultiplexRouter::ProcessIncomingMessage (multiplex_router.cc:883) 23 Electron Framework 0x106e69808 mojo::internal::MultiplexRouter::ProcessTasks (multiplex_router.cc:718) 24 Electron Framework 0x106e6b227 mojo::internal::MultiplexRouter::LockAndCallProcessTasks (multiplex_router.cc:911) 25 Electron Framework 0x106b5595e base::TaskAnnotator::RunTask (callback.h:98) 26 Electron Framework 0x106b651b9 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl (thread_controller_with_message_pump_impl.cc:365) 27 Electron Framework 0x106b64f56 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoSomeWork (thread_controller_with_message_pump_impl.cc:219) 28 Electron Framework 0x106bb3da0 ___ZN4base24MessagePumpCFRunLoopBase13RunWorkSourceEPv_block_invoke (message_pump_mac.mm:491) 29 Electron Framework 0x106baf5e9 base::mac::CallWithEHFrame 30 Electron Framework 0x106bb367e base::MessagePumpCFRunLoopBase::RunWorkSource (message_pump_mac.mm:467) 31 CoreFoundation 0x7fff36af6e33 <unknown> 32 CoreFoundation 0x7fff36af6dd9 <unknown> 33 CoreFoundation 0x7fff36ada79b <unknown> 34 CoreFoundation 0x7fff36ad9d65 <unknown> 35 CoreFoundation 0x7fff36ad966e <unknown> 36 Foundation 0x7fff38d3f2ff <unknown> 37 Electron Framework 0x106bb42b0 base::MessagePumpNSRunLoop::DoRun (message_pump_mac.mm:737) 38 Electron Framework 0x106bb3011 base::MessagePumpCFRunLoopBase::Run (message_pump_mac.mm:186) 39 Electron Framework 0x106b65a76 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run (thread_controller_with_message_pump_impl.cc:463) 40 Electron Framework 0x106b3dd66 base::RunLoop::Run (run_loop.cc:156) 41 Electron Framework 0x109fe65d8 content::RendererMain (renderer_main.cc:213) 42 Electron Framework 0x106218a1b content::ContentMainRunnerImpl::Run (content_main_runner_impl.cc:871) 43 Electron Framework 0x10845e903 service_manager::Main (main.cc:423) 44 Electron Framework 0x1054d66f3 content::ContentMain (content_main.cc:19) 45 Electron Framework 0x10490fb93 ElectronMain (electron_library_main.mm:23) 46 Electron Helper (Renderer) 0x103b1ff84 main (electron_main.cc:232) 47 libdyld.dylib 0x7fff62a613d5 [inlined] <unknown> 48 libdyld.dylib 0x7fff62a613d5 <unknown> Thread 33484721 0 libsystem_kernel.dylib 0x7fff62b97bfa <unknown> 1 libsystem_pthread.dylib 0x7fff62c543fd [inlined] <unknown> 2 libsystem_pthread.dylib 0x7fff62c543fd <unknown> 3 libobjc.A.dylib 0x7fff61285d49 <unknown> 4 libsystem_malloc.dylib 0x7fff62c0f282 [inlined] <unknown> 5 libsystem_malloc.dylib 0x7fff62c0f282 <unknown> 6 libobjc.A.dylib 0x7fff6129ba07 <unknown> 7 libobjc.A.dylib 0x7fff61285d49 <unknown> 8 libdispatch.dylib 0x7fff62a14127 <unknown> 9 libsystem_malloc.dylib 0x7fff62c0f282 <unknown> 10 libsystem_malloc.dylib 0x7fff62c0ed79 <unknown> 11 libdispatch.dylib 0x7fff62a13b6d <unknown> 12 libdispatch.dylib 0x7fff62a1b71a <unknown> 13 CoreFoundation 0x7fff36c16231 <unknown> 14 libdispatch.dylib 0x7fff62a14626 <unknown> 15 libdispatch.dylib 0x7fff62a226f1 <unknown> 16 libdispatch.dylib 0x7fff62a22b46 <unknown> 17 libsystem_pthread.dylib 0x7fff62c546e6 <unknown> 18 libsystem_pthread.dylib 0x7fff62c543fd <unknown> 19 libdispatch.dylib 0x7fff62a23497 <unknown> Thread 33484722 0 libsystem_kernel.dylib 0x7fff62b97bfa <unknown> 1 libsystem_pthread.dylib 0x7fff62c543fd <unknown> 2 libdispatch.dylib 0x7fff62a22aec <unknown> Thread 33484724 0 libsystem_kernel.dylib 0x7fff62b9e0a2 <unknown> 1 Electron Framework 0x106bc3465 base::MessagePumpKqueue::Run (message_pump_kqueue.cc:170) 2 Electron Framework 0x106b65a76 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run (thread_controller_with_message_pump_impl.cc:463) 3 Electron Framework 0x106b3dd66 base::RunLoop::Run (run_loop.cc:156) 4 Electron Framework 0x106b6dc83 base::internal::ServiceThread::Run (service_thread.cc:61) 5 Electron Framework 0x106b7c3e3 base::Thread::ThreadMain (thread.cc:376) 6 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 7 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 8 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 9 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484725 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106b767d7 base::internal::WorkerThread::Delegate::WaitForWork (worker_thread.cc:35) 3 Electron Framework 0x106b77059 base::internal::WorkerThread::RunWorker (worker_thread.cc:316) 4 Electron Framework 0x106b76d43 base::internal::WorkerThread::RunPooledWorker (worker_thread.cc:223) 5 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 6 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 7 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 8 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484726 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106b767d7 base::internal::WorkerThread::Delegate::WaitForWork (worker_thread.cc:35) 3 Electron Framework 0x106b76e2d base::internal::WorkerThread::RunWorker (worker_thread.cc:297) 4 Electron Framework 0x106b76cb3 base::internal::WorkerThread::RunBackgroundPooledWorker (worker_thread.cc:229) 5 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 6 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 7 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 8 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484727 0 libsystem_kernel.dylib 0x7fff62b9e0a2 <unknown> 1 Electron Framework 0x106bc3465 base::MessagePumpKqueue::Run (message_pump_kqueue.cc:170) 2 Electron Framework 0x106b65a76 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run (thread_controller_with_message_pump_impl.cc:463) 3 Electron Framework 0x106b3dd66 base::RunLoop::Run (run_loop.cc:156) 4 Electron Framework 0x106b7c3e3 base::Thread::ThreadMain (thread.cc:376) 5 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 6 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 7 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 8 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484728 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106bb899e base::WaitableEvent::Wait (waitable_event_mac.cc:108) 3 Electron Framework 0x106b20dd6 base::MessagePumpDefault::Run (message_pump_default.cc:55) 4 Electron Framework 0x106b65a76 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run (thread_controller_with_message_pump_impl.cc:463) 5 Electron Framework 0x106b3dd66 base::RunLoop::Run (run_loop.cc:156) 6 Electron Framework 0x106b7c3e3 base::Thread::ThreadMain (thread.cc:376) 7 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 8 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 9 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 10 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484729 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106b20d7a base::MessagePumpDefault::Run (message_pump_default.cc:57) 3 Electron Framework 0x106b65a76 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run (thread_controller_with_message_pump_impl.cc:463) 4 Electron Framework 0x106b3dd66 base::RunLoop::Run (run_loop.cc:156) 5 Electron Framework 0x10615b5f6 blink::scheduler::WorkerThread::SimpleThreadImpl::Run (worker_thread.cc:169) 6 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 7 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 8 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 9 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484730 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106bb899e base::WaitableEvent::Wait (waitable_event_mac.cc:108) 3 Electron Framework 0x106b767c9 base::internal::WorkerThread::Delegate::WaitForWork (worker_thread.cc:33) 4 Electron Framework 0x106b76e2d base::internal::WorkerThread::RunWorker (worker_thread.cc:297) 5 Electron Framework 0x106b76d73 base::internal::WorkerThread::RunSharedWorker (worker_thread.cc:235) 6 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 7 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 8 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 9 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484731 0 libsystem_kernel.dylib 0x7fff62b99866 <unknown> 1 Electron Framework 0x106bad1b4 base::ConditionVariable::Wait (condition_variable_posix.cc:75) 2 Electron Framework 0x109f37345 content::CategorizedWorkerPool::Run (categorized_worker_pool.cc:280) 3 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 4 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 5 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 6 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484732 0 libsystem_kernel.dylib 0x7fff62b99866 <unknown> 1 Electron Framework 0x106bad1b4 base::ConditionVariable::Wait (condition_variable_posix.cc:75) 2 Electron Framework 0x109f37345 content::CategorizedWorkerPool::Run (categorized_worker_pool.cc:280) 3 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 4 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 5 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 6 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484733 0 libsystem_kernel.dylib 0x7fff62b99866 <unknown> 1 Electron Framework 0x106bad1b4 base::ConditionVariable::Wait (condition_variable_posix.cc:75) 2 Electron Framework 0x109f37345 content::CategorizedWorkerPool::Run (categorized_worker_pool.cc:280) 3 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 4 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 5 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 6 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484756 0 libsystem_kernel.dylib 0x7fff62b9d616 <unknown> 1 Electron Framework 0x104a6e776 electron::NodeBindings::EmbedThreadRunner (node_bindings.cc:459) 2 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 3 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 4 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484757 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106b767d7 base::internal::WorkerThread::Delegate::WaitForWork (worker_thread.cc:35) 3 Electron Framework 0x106b77059 base::internal::WorkerThread::RunWorker (worker_thread.cc:316) 4 Electron Framework 0x106b76d43 base::internal::WorkerThread::RunPooledWorker (worker_thread.cc:223) 5 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 6 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 7 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 8 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484758 0 libsystem_kernel.dylib 0x7fff62b9621a <unknown> 1 Electron Framework 0x106bb8b85 base::WaitableEvent::TimedWait (waitable_event_mac.cc:167) 2 Electron Framework 0x106b767d7 base::internal::WorkerThread::Delegate::WaitForWork (worker_thread.cc:35) 3 Electron Framework 0x106b77059 base::internal::WorkerThread::RunWorker (worker_thread.cc:316) 4 Electron Framework 0x106b76d43 base::internal::WorkerThread::RunPooledWorker (worker_thread.cc:223) 5 Electron Framework 0x106badf86 base::(anonymous namespace)::ThreadFunc (platform_thread_posix.cc:81) 6 libsystem_pthread.dylib 0x7fff62c552eb <unknown> 7 libsystem_pthread.dylib 0x7fff62c58249 <unknown> 8 libsystem_pthread.dylib 0x7fff62c5440d <unknown> Thread 33484779 0 libsystem_kernel.dylib 0x7fff62b97bfa <unknown> 1 libsystem_pthread.dylib 0x7fff62c543fd <unknown> 2 CoreFoundation 0x7fff36aa2d17 <unknown> 3 libsystem_malloc.dylib 0x7fff62c0f282 [inlined] <unknown> 4 libsystem_malloc.dylib 0x7fff62c0f282 [inlined] <unknown> 5 libsystem_malloc.dylib 0x7fff62c0f282 <unknown> 6 libsystem_malloc.dylib 0x7fff62c0ed79 <unknown> 7 libdispatch.dylib 0x7fff62a21402 <unknown> 8 libsystem_pthread.dylib 0x7fff62c54910 <unknown> 9 libdispatch.dylib 0x7fff62a14e99 <unknown> 10 libdispatch.dylib 0x7fff62a1b540 <unknown> 11 libdispatch.dylib 0x7fff62a168fd <unknown> 12 libdispatch.dylib 0x7fff62a14626 <unknown> 13 libdispatch.dylib 0x7fff62a226f1 <unknown> 14 libdispatch.dylib 0x7fff62a22b46 <unknown> 15 libsystem_pthread.dylib 0x7fff62c546e6 <unknown> 16 libsystem_pthread.dylib 0x7fff62c543fd <unknown> 17 libdispatch.dylib 0x7fff62a22b95 <unknown> EOF ```
https://github.com/electron/electron/issues/22910
https://github.com/electron/electron/pull/22925
0a78ab4b98c078814e6aed498ff96947733888cd
5c2299cbe69ef3e7deac24700cfcb1705296395c
2020-03-31T19:59:49Z
c++
2020-04-03T02:59:19Z
closed
electron/electron
https://github.com/electron/electron
22,853
["shell/browser/api/electron_api_screen.cc"]
electron.screen gets cached to a bad version if error is thrown on its initialization
### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** 8.0.0 * **Operating System:** Only tested on mac 10.14.16 (Mojave) * **Last Known Working Electron version:** 5.0.0 (not a regression range, this is the version I was using before) ### Expected Behavior electron.screen can be used ### Actual Behavior electron.screen can't be used if it was attempted to use before app ready event. ### To Reproduce Details: it looks like that electron.screen is a lazy getter that gets badly cached if its initialization throws. I had an `electron.screen` usage that threw the following error: > "The 'screen' module can't be used before the app 'ready' event" That's all fine and expected. However, a later usage of any of the APIs from `electron.screen`, for example `electron.screen.getAllDisplays()`, throws the following exception: > callback can only be called for once which, given the weird phrasing unrelated to the issue at hand, I believe is not intentional
https://github.com/electron/electron/issues/22853
https://github.com/electron/electron/pull/22895
765c08c600ece850702f78b4e92d7fdc529f2aaa
4ba91c938ec3a0ef17b8d8f1b3bc396f738d695f
2020-03-26T21:02:41Z
c++
2020-03-31T21:49:15Z
closed
electron/electron
https://github.com/electron/electron
22,846
["shell/browser/api/electron_api_native_theme.cc", "shell/browser/api/electron_api_native_theme.h", "shell/browser/electron_browser_client.cc", "shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "spec-main/api-native-theme-spec.ts"]
prefers-color-scheme media query not updated when changing nativeTheme.themeSource
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * <!-- (output of `node_modules/.bin/electron --version`) e.g. 4.0.3 --> v8.2.0 * **Operating System:** * <!-- (Platform and Version) e.g. macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64 --> Windows 10 (17763) * **Last Known Working Electron version:** * <!-- (if applicable) e.g. 3.1.0 --> n/a ### Expected Behavior <!-- A clear and concise description of what you expected to happen. --> When setting `nativeTheme.themeSource`, the `prefers-color-scheme` media query updates accordingly and all elements using the query on the page are restyled. ### Actual Behavior <!-- A clear and concise description of what actually happened. --> Setting `nativeTheme.themeSource` does not appear to update the media query until a system-level change to the light/dark theme is made. e.g. if we do `nativeTheme.themeSource = "dark"`, then running `matchMedia("(prefers-color-scheme: dark)").matches` returns `false`. The documentation appears to suggest the media query should update: https://www.electronjs.org/docs/api/native-theme#nativethemethemesource ### To Reproduce <!-- Your best chance of getting this bug looked at quickly is to provide an example. --> <!-- For bugs that can be encapsulated in a small experiment, you can use Electron Fiddle (https://github.com/electron/fiddle) to publish your example to a GitHub Gist and link it your bug report. --> <!-- If Fiddle is insufficient to produce an example, please provide an example REPOSITORY that can be cloned and run. You can fork electron-quick-start (https://github.com/electron/electron-quick-start) and include a link to the branch with your changes. --> <!-- If you provide a URL, please list the commands required to clone/setup/run your repo e.g. ```sh $ git clone $YOUR_URL -b $BRANCH $ npm install $ npm start || electron . ``` --> Fiddle Gist: https://gist.github.com/6e571fb4e8aa3d319a3109d61dda79c3 1. Set your windows theme to light in system settings. 2. Open the fiddle. The menu bar and page are in the light theme. 3. From the `Theme` menu, click `Dark`. This sets `nativeTheme`. 4. Notice that the menu changes colour but the page does not (as per screenshot). 5. Set your windows theme to dark in system settings. 6. Notice that the page is now dark. 7. Set your windows theme to light in system settings. 8. The page remains dark as expected. 9. From the `Theme` menu, click `Light`. 10. The menu changes colour but the page does not. It only updates when changing the system settings. ### Screenshots <!-- If applicable, add screenshots to help explain your problem. --> ![image](https://user-images.githubusercontent.com/9112859/77646981-87d8de80-6f5d-11ea-8d23-2e4b0df05e21.png) ### Additional Information <!-- Add any other context about the problem here. --> - Using the remote module to set `nativeTheme`.
https://github.com/electron/electron/issues/22846
https://github.com/electron/electron/pull/22896
212b47a77b8b56128b44831036b0e3f19821f1a3
fea3366bc7d702b3cbff46fd5fa2791d2fb5bc99
2020-03-26T12:26:51Z
c++
2020-03-30T22:39:50Z
closed
electron/electron
https://github.com/electron/electron
22,837
["shell/browser/ui/tray_icon_cocoa.mm", "spec-main/api-tray-spec.ts"]
heap-use-after-free in TrayIconCocoa::PopUpContextMenu
``` ================================================================= ==29891==ERROR: AddressSanitizer: heap-use-after-free on address 0x61000004faf0 at pc 0x000106cfcaaf bp 0x7ffeea6c2750 sp 0x7ffeea6c2748 READ of size 8 at 0x61000004faf0 thread T0 #0 0x106cfcaae in -[StatusItemView popUpContextMenu:] scoped_typeref.h:114 #1 0x1158c8559 in base::TaskAnnotator::RunTask(char const*, base::PendingTask*) callback.h:98 #2 0x115928986 in base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoWorkImpl(base::sequence_manager::LazyNow*, bool*) thread_controller_with_message_pump_impl.cc:408 [...] ``` I believe this is due to the fact that the `PopUpContextMenu` posts a task with an unretained pointer to the `ElectronMenuModel` that it receives. That pointer is owned by the `electron::api::Menu` object, which is managed by V8. So if that object is GC'd between when `PopUpContextMenu` is called and when the task it posts runs, the pointer will be stale, hence this UAF. cc @codebytere whom I think introduced this change in dc2cd8e7806336361ffca3f04e783861bf2ece39
https://github.com/electron/electron/issues/22837
https://github.com/electron/electron/pull/22842
8ff7a1160a4060c20b36add34807fd4094886b83
ac501e8194c2f2dbfddbfe6cee7608274e7aea5c
2020-03-25T20:54:14Z
c++
2020-03-27T01:30:21Z
closed
electron/electron
https://github.com/electron/electron
22,835
["shell/browser/electron_browser_main_parts.cc"]
Crash when accessing a Session during exit
### Preflight Checklist * [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [X] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details Clicking on a Slack update notification on macOS sometimes results in an system level crash on exit. Clicking the update notification normally quits the app and applies the update before restarting. Not happening with a normal quit through the main app menu or with Clear Cache & Restart from the Help menu. * **Electron Version:** * 8.x * **Operating System:** * macOS 10.10.5 Yosemite + * **Last Known Working Electron version:** * 7.x ### Expected Behavior No system level crash on exit. ### Actual Behavior System level crash on exit. ### Additional Information <details> ``` Process: Slack [490] Path: /Applications/Slack.app/Contents/MacOS/Slack Identifier: com.tinyspeck.slackmacgap Version: 4.6.0-alpha1200316 (6291) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Slack [490] User ID: 503 Date/Time: 2020-03-24 13:28:42.348 -0700 OS Version: Mac OS X 10.10.5 (14F2511) Report Version: 11 Anonymous UUID: F655004E-3871-F403-6DD9-90E239D3FA6A Time Awake Since Boot: 4600 seconds Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Application Specific Information: abort() called *** error for object 0x7fc32370d8c0: pointer being freed was not allocated Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff8c115286 __pthread_kill + 10 1 libsystem_c.dylib 0x00007fff88bfc9a3 abort + 129 2 libsystem_malloc.dylib 0x00007fff85d4c1cb free + 428 3 com.github.Electron.framework 0x000000010265a9ce 0x100100000 + 39168462 4 com.github.Electron.framework 0x000000010265aa95 0x100100000 + 39168661 5 com.github.Electron.framework 0x000000010265a772 0x100100000 + 39167858 6 com.github.Electron.framework 0x00000001026596dd 0x100100000 + 39163613 7 com.github.Electron.framework 0x00000001001fe5c0 0x100100000 + 1041856 8 com.github.Electron.framework 0x0000000101dff2b4 0x100100000 + 30405300 9 com.github.Electron.framework 0x00000001001eeed9 0x100100000 + 978649 10 com.github.Electron.framework 0x00000001001b951c 0x100100000 + 759068 11 com.github.Electron.framework 0x0000000101fc3648 0x100100000 + 32257608 12 com.github.Electron.framework 0x0000000101fc35f4 0x100100000 + 32257524 13 com.github.Electron.framework 0x0000000101fe284b 0x100100000 + 32385099 14 com.github.Electron.framework 0x0000000101fe272e 0x100100000 + 32384814 15 com.github.Electron.framework 0x0000000101fc2f92 0x100100000 + 32255890 16 com.github.Electron.framework 0x0000000101fccea7 0x100100000 + 32296615 17 com.github.Electron.framework 0x0000000101b55a3d 0x100100000 + 27613757 18 com.github.Electron.framework 0x0000000101b55b89 0x100100000 + 27614089 19 com.github.Electron.framework 0x00000001001d0fc9 0x100100000 + 856009 20 com.github.Electron.framework 0x00000001001bbdac 0x100100000 + 769452 21 com.github.Electron.framework 0x00000001001bd2dc 0x100100000 + 774876 22 com.github.Electron.framework 0x0000000100161e48 0x100100000 + 400968 23 com.github.Electron.framework 0x0000000100163a0e 0x100100000 + 408078 24 com.github.Electron.framework 0x0000000100163ad2 0x100100000 + 408274 25 com.github.Electron.framework 0x0000000100df4cec 0x100100000 + 13585644 26 com.github.Electron.framework 0x0000000100df41ea 0x100100000 + 13582826 27 com.github.Electron.framework 0x0000000100df37c2 0x100100000 + 13580226 28 com.github.Electron.framework 0x00000001017f6b59 0x100100000 + 24079193 29 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 30 com.github.Electron.framework 0x000000010178ec3a 0x100100000 + 23653434 31 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268 32 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 33 com.github.Electron.framework 0x0000000101783efa 0x100100000 + 23609082 34 com.github.Electron.framework 0x0000000101783cd8 0x100100000 + 23608536 35 com.github.Electron.framework 0x0000000100eada98 0x100100000 + 14342808 36 com.github.Electron.framework 0x0000000100ead68e v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 206 37 com.github.Electron.framework 0x0000000101128ece 0x100100000 + 16944846 38 com.github.Electron.framework 0x00000001011289da v8::internal::Object::GetProperty(v8::internal::LookupIterator*, bool) + 426 39 com.github.Electron.framework 0x0000000100faaa30 0x100100000 + 15378992 40 com.github.Electron.framework 0x0000000100fb385e 0x100100000 + 15415390 41 com.github.Electron.framework 0x00000001017f6a79 0x100100000 + 24078969 42 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268 43 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 44 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 45 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 46 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 47 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 48 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 49 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 50 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 51 com.github.Electron.framework 0x000000010177fff9 0x100100000 + 23592953 52 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 53 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 54 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 55 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 56 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 57 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 58 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 59 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 60 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 61 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 62 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 63 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 64 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 65 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 66 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 67 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 68 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 69 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 70 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064 71 com.github.Electron.framework 0x00000001017d5f12 0x100100000 + 23944978 72 com.github.Electron.framework 0x00000001017a64a8 0x100100000 + 23749800 73 com.github.Electron.framework 0x0000000101783e58 0x100100000 + 23608920 74 com.github.Electron.framework 0x0000000100ead9a0 0x100100000 + 14342560 75 com.github.Electron.framework 0x0000000100eadfa3 0x100100000 + 14344099 76 com.github.Electron.framework 0x0000000100eae06d 0x100100000 + 14344301 77 com.github.Electron.framework 0x0000000100ed0077 v8::internal::MicrotaskQueue::RunMicrotasks(v8::internal::Isolate*) + 407 78 com.github.Electron.framework 0x00000001058fefe4 node::InternalCallbackScope::Close() + 260 79 com.github.Electron.framework 0x00000001058ff2d5 0x100100000 + 92271317 80 com.github.Electron.framework 0x000000010590d9f1 0x100100000 + 92330481 81 com.github.Electron.framework 0x0000000105984e66 0x100100000 + 92819046 82 com.github.Electron.framework 0x00000001059851e2 0x100100000 + 92819938 83 com.github.Electron.framework 0x0000000105a6b458 0x100100000 + 93762648 84 com.github.Electron.framework 0x0000000105a6f3f4 0x100100000 + 93778932 85 com.github.Electron.framework 0x0000000105a806c0 0x100100000 + 93849280 86 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497 87 com.github.Electron.framework 0x0000000105933f69 0x100100000 + 92487529 88 com.github.Electron.framework 0x000000010593411e 0x100100000 + 92487966 89 com.github.Electron.framework 0x0000000105901d4e node::FreeEnvironment(node::Environment*) + 14 90 com.github.Electron.framework 0x00000001001be5a2 0x100100000 + 779682 91 com.github.Electron.framework 0x00000001001be68e 0x100100000 + 779918 92 com.github.Electron.framework 0x0000000101b701a0 0x100100000 + 27722144 93 com.github.Electron.framework 0x0000000101b702ae 0x100100000 + 27722414 94 com.github.Electron.framework 0x0000000101b743a2 0x100100000 + 27739042 95 com.github.Electron.framework 0x0000000101b6fd36 0x100100000 + 27721014 96 com.github.Electron.framework 0x0000000101a0b0b4 0x100100000 + 26259636 97 com.github.Electron.framework 0x0000000101a0adbe 0x100100000 + 26258878 98 com.github.Electron.framework 0x0000000103c50bc4 0x100100000 + 62196676 99 com.github.Electron.framework 0x0000000100cc8b64 0x100100000 + 12356452 100 com.github.Electron.framework 0x0000000100102854 ElectronMain + 84 101 com.tinyspeck.slackmacgap 0x00000001000c79b0 0x1000c7000 + 2480 102 libdyld.dylib 0x00007fff8456c5c9 start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10 1 libdispatch.dylib 0x00007fff874bc26e _dispatch_mgr_thread + 52 Thread 2:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586 5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff8c11621a kevent + 10 1 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497 2 com.github.Electron.framework 0x00000001059e8226 0x100100000 + 93225510 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024 3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779 4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024 3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779 4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024 3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779 4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10 1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16 2 com.github.Electron.framework 0x0000000105a33832 0x100100000 + 93534258 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10 1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9 2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 12:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296 5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041 7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274 8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447 9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359 10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972 11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 13:: CrShutdownDetector 0 libsystem_kernel.dylib 0x00007fff8c116682 read + 10 1 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 2 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 3 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 4 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 14:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586 5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 15:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586 5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 16: 0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10 1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16 2 com.github.Electron.framework 0x0000000100260f38 0x100100000 + 1445688 3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 17: 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296 5 com.apple.AppKit 0x00007fff8f30c56b _NSEventThread + 137 6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 18: 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001033c5dbe 0x100100000 + 53239230 3 com.github.Electron.framework 0x00000001033c6039 0x100100000 + 53239865 4 com.github.Electron.framework 0x00000001033c1ec8 0x100100000 + 53223112 5 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 19:: CacheThread_BlockFile 0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10 1 com.github.Electron.framework 0x00000001023b57a6 0x100100000 + 36394918 2 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447 3 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359 4 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972 5 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 20:: ThreadPoolSingleThreadSharedBackgroundBlocking1 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x00000001023aacdf 0x100100000 + 36351199 4 com.github.Electron.framework 0x0000000102368b0a 0x100100000 + 36080394 5 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030 6 com.github.Electron.framework 0x0000000102369024 0x100100000 + 36081700 7 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 8 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 9 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 10 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 21: 0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13 Thread 22: 0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13 Thread 23:: com.apple.NSURLConnectionLoader 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296 5 com.apple.CFNetwork 0x00007fff91934420 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434 6 com.apple.Foundation 0x00007fff84d6ae62 __NSThread__main__ + 1345 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 24:: com.apple.CFSocket.private 0 libsystem_kernel.dylib 0x00007fff8c1153fa __select + 10 1 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 2 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 3 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 25: 0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13 Thread 26: 0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13 Thread 27: Thread 28:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586 5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 29:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030 5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 30:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686 3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408 4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030 5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796 6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 31:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296 5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041 7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274 8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447 9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359 10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972 11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655 12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176 14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5fb2d868 rdx: 0x0000000000000000 rdi: 0x000000000000130f rsi: 0x0000000000000006 rbp: 0x00007fff5fb2d890 rsp: 0x00007fff5fb2d868 r8: 0x0000000000000001 r9: 0x0000000000000000 r10: 0x0000000008000000 r11: 0x0000000000000206 r12: 0x00000001000fe000 r13: 0x0000000000000005 r14: 0x00007fff7566f300 r15: 0x0000000000000000 rip: 0x00007fff8c115286 rfl: 0x0000000000000206 cr2: 0x00007fff74dbffd8 Logical CPU: 0 Error Code: 0x02000148 Trap Number: 133 Binary Images: 0x1000c7000 - 0x1000efff3 +com.tinyspeck.slackmacgap (4.6.0-alpha1200316 - 6291) <596191EB-2C06-339C-917C-D986342C029E> /Applications/Slack.app/Contents/MacOS/Slack 0x100100000 - 0x106831f0f +com.github.Electron.framework (8.1.1) <9F4062FB-F726-3DBC-9F46-7443B9F03E5E> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework 0x107129000 - 0x10712dff7 com.apple.LocalAuthentication (1.0 - 67.20.1.14) <49C6C703-081D-35FA-91B6-FB0297F10525> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x10713a000 - 0x107146fff com.apple.StoreKit (1.0 - 376.29) <6341E873-19A4-3937-8D59-182F8720FC2C> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit 0x10715d000 - 0x107178fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Applications/Slack.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x1071a2000 - 0x107205ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/Slack.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10727f000 - 0x107293fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/Slack.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x1072af000 - 0x1072b1ff7 libpmenergy.dylib (86.20.14) <D78A3543-4C7E-3995-A7B3-C0389F692DFB> /usr/lib/libpmenergy.dylib 0x1072b8000 - 0x1072baff7 libpmsample.dylib (86.20.14) <3B3F4B18-4AE3-3029-BFBE-F011F759CA60> /usr/lib/libpmsample.dylib 0x1072c0000 - 0x1072f7fff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4BBCD304-C28F-3C03-AEB8-5E3D5D030602> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x107323000 - 0x107325fff com.apple.ForceFeedback (1.0.6 - 1.0.6) <A411AA46-5DB6-3C6C-B4B4-613EC1EF33C3> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x10732c000 - 0x10733afff com.apple.GameController (1.0 - 1) <283B203F-CC87-3385-AFA3-07AA5EF8F709> /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x107351000 - 0x1075eaff7 +libffmpeg.dylib (0) <BDF5F45C-91E0-32D4-8E2F-02D2DBC1A860> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib 0x107941000 - 0x107949fff com.apple.CoreAuthentication.SharedInternals (1.0 - 67.20.1.14) <4ADC3448-660E-373D-B0E4-B731E00F5138> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedInternals.framework/Versions/A/SharedInternals 0x107f69000 - 0x107f69ffe +cl_kernels (???) <DE14F870-2E33-46BD-9745-D9356E9C5EF2> cl_kernels 0x107f6d000 - 0x107f6dfef +cl_kernels (???) <B069AE1D-EDFF-45E4-B0FB-A0E66A250AFB> cl_kernels 0x107f6f000 - 0x107f74ff7 libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib 0x10a44c000 - 0x10a44cfef +cl_kernels (???) <F95DC4CA-8CCB-4617-B457-12260B7FC82E> cl_kernels 0x10a45b000 - 0x10a45bff5 +cl_kernels (???) <E9AB3BE9-D69A-4CE5-AD55-55F3B45DC755> cl_kernels 0x10bf8c000 - 0x10bf8dfff +notificationstate.node (0) <590E5AC3-1E1D-3033-A783-487BC398B4E8> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/macos-notification-state/build/Release/notificationstate.node 0x1101f5000 - 0x110210ff3 com.apple.security.csparser (3.0 - 57031.40.9) <F8DB6988-BEA0-3756-AC88-9E2C416A097B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser 0x11842c000 - 0x118437fff com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <A195F7DC-2B88-31B8-9E31-9FE140823276> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib 0x118db5000 - 0x118db7fff +keymapping.node (0) <FD68737B-3286-3048-920E-CE350F477048> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/native-keymap/build/Release/keymapping.node 0x118eea000 - 0x118fd0fef unorm8_bgra.dylib (2.4.5) <3C5E3A0E-0A5F-3C1A-B079-BE01F3682D71> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 0x7fff64c1a000 - 0x7fff64c5092f dyld (353.2.4) <3C068A0D-69D5-3AD6-86D9-6261D3B1564E> /usr/lib/dyld 0x7fff842ec000 - 0x7fff84302ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib 0x7fff8435e000 - 0x7fff843a8fff com.apple.HIServices (1.22 - 523) <99ADA325-53C8-368E-A5FA-3F913CD2245A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff843a9000 - 0x7fff843d1fff libRIP.A.dylib (790) <55EB0B9D-15AE-35E9-9C9E-99637A4E3B13> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff843d2000 - 0x7fff84443ffb com.apple.ApplicationServices.ATS (360 - 375.4) <888FE0B1-835C-30B1-80AD-5066CADB0364> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff84444000 - 0x7fff8444cfff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib 0x7fff844a8000 - 0x7fff844baff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff844bb000 - 0x7fff84508ff3 com.apple.CoreMediaIO (601.0 - 4760) <209CD9FF-28A0-3792-B548-3A59E79F3E79> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff84509000 - 0x7fff84542fff com.apple.AirPlaySupport (2.0 - 215.18) <A7730005-A538-30E8-815B-727957D74C89> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport 0x7fff84569000 - 0x7fff8456cff7 libdyld.dylib (353.2.4) <224F35C5-6E35-3EC4-A97C-80949CE444E7> /usr/lib/system/libdyld.dylib 0x7fff8456d000 - 0x7fff84575ff7 com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff84576000 - 0x7fff845a8ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff845a9000 - 0x7fff845ceff7 libPng.dylib (1248) <0D88B42A-FEDC-3F51-ADC3-2A426699CC1A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff845cf000 - 0x7fff84641fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff84678000 - 0x7fff846f0ff7 com.apple.SystemConfiguration (1.14.4 - 1.14) <B835C014-901E-37B7-BD09-2EFF5FFEB910> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff846f1000 - 0x7fff8470bff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff84723000 - 0x7fff8473cff7 com.apple.CFOpenDirectory (10.10 - 187) <F1805A0F-D5CC-35A8-9349-042D58D128B0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff84751000 - 0x7fff84835fff libcrypto.0.9.8.dylib (52.40.1) <D123FC57-E2EB-3E08-A51B-6C317EA83EB5> /usr/lib/libcrypto.0.9.8.dylib 0x7fff84836000 - 0x7fff848cbff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff84927000 - 0x7fff84929ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib 0x7fff8492a000 - 0x7fff84a6eff7 com.apple.QTKit (7.7.3 - 2890.10) <3578818E-5894-3A6B-86D7-C7C817268634> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff84a6f000 - 0x7fff84a8bfff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff84a8c000 - 0x7fff84a93fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff84d2c000 - 0x7fff8505dff7 com.apple.Foundation (6.9 - 1154.20) <3D37F9B8-96CC-324B-9062-0A7E4ABCDC1F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff8505e000 - 0x7fff85067fff libGFXShared.dylib (11.1.6) <10DBFA0B-1484-3723-BFD3-7D184CC5A2E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff85068000 - 0x7fff8509fffb com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff850a0000 - 0x7fff850e1fff libGLU.dylib (11.1.6) <4BC6579D-A6D0-3A19-880E-E29FAEA698E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff850e2000 - 0x7fff850eaffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib 0x7fff850eb000 - 0x7fff850ecfff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib 0x7fff851e5000 - 0x7fff85215ff3 com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff85221000 - 0x7fff85226fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff85227000 - 0x7fff85359ff7 com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x7fff85402000 - 0x7fff8540fff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff85438000 - 0x7fff8552cfff libFontParser.dylib (134.11) <798C2BA2-B3D3-39B5-981C-20B42258BAB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8552d000 - 0x7fff85578ff7 com.apple.CloudDocs (1.0 - 321.10) <A8221290-A2A5-3767-BB26-CC57AC18D4DC> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs 0x7fff855af000 - 0x7fff85a9ffff com.apple.MediaToolbox (1.0 - 1562.240) <FF703691-A69A-3D24-8004-0E1B77D36861> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff85aa0000 - 0x7fff85ab6ff7 com.apple.CoreMediaAuthoring (2.2 - 951) <F11B0447-3E6D-35BA-BC7C-1A60820843D8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff85ab7000 - 0x7fff85ab9fff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff85aba000 - 0x7fff85ad4ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff85ad5000 - 0x7fff85af5ff7 com.apple.MultitouchSupport.framework (264.6 - 264.6) <79E327E8-AA72-346D-8B5E-8BAC56FC17A5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff85b10000 - 0x7fff85bb7fff com.apple.PDFKit (3.1 - 3.1) <D410CE57-6227-31D8-9F39-92583E552EA8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff85c30000 - 0x7fff85d47fe7 libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff85d48000 - 0x7fff85d64ff7 libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib 0x7fff85d88000 - 0x7fff85d97fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff85d98000 - 0x7fff85df2ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff85e8d000 - 0x7fff85e8dfff com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff85e8e000 - 0x7fff85ebdfff com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff85f00000 - 0x7fff85f31fff libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib 0x7fff85f32000 - 0x7fff85f35ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff85fc3000 - 0x7fff85fdefff com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <313A0FA8-C12F-30C1-A33D-9A48E3C0594E> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff8600d000 - 0x7fff8600fff7 com.apple.diagnosticlogcollection (10.0 - 1000) <1DB05D1A-636A-3672-BCB6-E3759852F5E2> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection 0x7fff86048000 - 0x7fff8604dffb libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib 0x7fff8604e000 - 0x7fff860bafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff86103000 - 0x7fff86408ff3 com.apple.HIToolbox (2.1.1 - 758.7) <B1188DED-5E71-3AB4-9E57-67F84C116ECE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff86409000 - 0x7fff8642dff7 com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff8642e000 - 0x7fff8658ffff com.apple.avfoundation (2.0 - 889.210) <F4D3414E-4EA6-33EA-8F2A-CA4A8663B5D5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff86590000 - 0x7fff86592fff com.apple.marco (10.0 - 1000) <F8551365-5638-3012-B8CB-B87A80695EAC> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco 0x7fff86593000 - 0x7fff865cbfff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff865cc000 - 0x7fff865cefff com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff865cf000 - 0x7fff865d8ff3 com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff865d9000 - 0x7fff865dffff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff865e0000 - 0x7fff865e7ff7 com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers 0x7fff865f3000 - 0x7fff86618ff7 libJPEG.dylib (1248) <412D7F98-5ED5-3D61-BE45-1BE267C7B3D7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff86619000 - 0x7fff8675cfff libsqlite3.dylib (168.2) <BCB1F77E-2484-3EC4-A1D5-1AE90A407A23> /usr/lib/libsqlite3.dylib 0x7fff8675d000 - 0x7fff8675dfff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff86763000 - 0x7fff86765fff libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib 0x7fff86780000 - 0x7fff867a1fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff867a2000 - 0x7fff86862ff7 com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff86863000 - 0x7fff8687dff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib 0x7fff8687e000 - 0x7fff86889ff7 libkxld.dylib (2782.70.3) <F5F0305E-A7D5-37CA-945E-E2FB1F8568AC> /usr/lib/system/libkxld.dylib 0x7fff86893000 - 0x7fff86ad8ff7 com.apple.AddressBook.framework (9.0 - 1579) <A31956C5-AA13-35E6-B553-6BDF33F35103> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 0x7fff86ad9000 - 0x7fff86ae4fff com.apple.CommerceCore (1.0 - 376.29) <1058502F-8C78-36E1-914A-6403A2231FBA> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x7fff86af8000 - 0x7fff86b21ff3 libxslt.1.dylib (13.13) <18F488CB-AA53-3503-A199-044CA7664DE5> /usr/lib/libxslt.1.dylib 0x7fff86c58000 - 0x7fff86c5aff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib 0x7fff86c9c000 - 0x7fff86dd9fff com.apple.ImageIO.framework (3.3.0 - 1247) <001CB61C-6BDE-30A1-ACB7-C537E0043DF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff86dfb000 - 0x7fff86f89fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff86f9d000 - 0x7fff86fceff7 com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff86fcf000 - 0x7fff870c1ff7 libxml2.2.dylib (26.15) <B587DA25-360B-3742-BE9A-04B171504D79> /usr/lib/libxml2.2.dylib 0x7fff870c2000 - 0x7fff87158ff7 com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) <EA6E4B2C-A3AA-3636-B9C3-F61D3EFFB82B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit 0x7fff87159000 - 0x7fff8715aff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib 0x7fff8715b000 - 0x7fff8742aff3 com.apple.CoreImage (10.3.5) <0224F5A6-636A-374B-B46C-13E066596725> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff8742c000 - 0x7fff874b5ff7 com.apple.CoreSymbolication (3.1 - 57020.2) <FDAF88F6-7D11-37BC-B758-4B835FA657BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff874b6000 - 0x7fff874e0ff7 libdispatch.dylib (442.50.1) <A61E703C-784A-3698-B513-75DD12AAD6DC> /usr/lib/system/libdispatch.dylib 0x7fff874e1000 - 0x7fff874e5fff com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff8758b000 - 0x7fff875d7ff7 libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib 0x7fff8769b000 - 0x7fff876e1ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib 0x7fff876e2000 - 0x7fff876e9ff7 libCGCMS.A.dylib (790) <64ACC63D-93FC-3D11-AF9C-A2A84A34FE35> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib 0x7fff876ea000 - 0x7fff87768fff com.apple.CoreServices.OSServices (640.4 - 640.4) <9D175CD9-B27F-3529-8269-66D8AA83582E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff87a07000 - 0x7fff87a0bfff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib 0x7fff87a0c000 - 0x7fff87a18ff7 com.apple.OpenDirectory (10.10 - 187) <22FF4721-03D8-381B-AA83-2B07D690C777> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff87a19000 - 0x7fff87a41fff libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib 0x7fff87a42000 - 0x7fff87a5fffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib 0x7fff87a60000 - 0x7fff87cdfff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff87ce0000 - 0x7fff87cecfff com.apple.HelpData (2.1.4 - 90) <02C6B7E6-1CC4-30E8-AD04-2794BECCF99C> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 0x7fff87ced000 - 0x7fff87fd4ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff87fd5000 - 0x7fff87fe0ff7 com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff87fe1000 - 0x7fff88111fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff88112000 - 0x7fff88121ff7 com.apple.ToneLibrary (1.0 - 1) <179C7D61-CB88-3CE3-9F06-4D60D13D616C> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary 0x7fff88122000 - 0x7fff8815bff3 com.apple.datadetectors (5.0 - 286.13) <F2EC0715-1AD3-39C3-9B2D-D45336C73BFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors 0x7fff8815c000 - 0x7fff88167ff7 com.apple.SafariServices.framework (10603 - 10603.3.8) <AB7B27D0-6D50-3CC0-8CC3-1B1039A78950> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff88aae000 - 0x7fff88ab4ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x7fff88ab5000 - 0x7fff88ae1fff libc++abi.dylib (125.1) <B8E6BB31-E27E-3B80-9BA2-73B5AB7E42E1> /usr/lib/libc++abi.dylib 0x7fff88ae2000 - 0x7fff88af3ff3 libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib 0x7fff88af4000 - 0x7fff88b13fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 0x7fff88b14000 - 0x7fff88b4effb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff88b4f000 - 0x7fff88b9eff7 libcurl.4.dylib (83.40.2) <AE97ED1E-A58F-3EF0-8E88-DDC6AD409BCE> /usr/lib/libcurl.4.dylib 0x7fff88b9f000 - 0x7fff88c2bfef libsystem_c.dylib (1044.40.3) <2E673D96-E334-37D2-833A-E57383BBA377> /usr/lib/system/libsystem_c.dylib 0x7fff88c2c000 - 0x7fff88c3eff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol 0x7fff88c42000 - 0x7fff88c53fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib 0x7fff88c54000 - 0x7fff88ecafff com.apple.security (7.0 - 57031.40.9) <8D9CB878-BB71-3CF1-88CE-9E6FAC4043ED> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff88fa9000 - 0x7fff88fb0ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib 0x7fff88fb1000 - 0x7fff894c6fff com.apple.JavaScriptCore (10600 - 10600.8.7.1) <4C48FD32-ACA3-358F-95D9-05DBB56A1DED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff89574000 - 0x7fff8957aff7 libsystem_networkextension.dylib (167.40.3) <BA58B30B-8377-3B0A-8AE3-4F84021D9D4E> /usr/lib/system/libsystem_networkextension.dylib 0x7fff8957b000 - 0x7fff895b3fff libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib 0x7fff895b4000 - 0x7fff896a6ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib 0x7fff896a7000 - 0x7fff896adfff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib 0x7fff896ae000 - 0x7fff896aeff7 liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib 0x7fff89702000 - 0x7fff8970bfff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff8970c000 - 0x7fff8970cfff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8970d000 - 0x7fff8970dfff libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib 0x7fff8970e000 - 0x7fff89792fff com.apple.PerformanceAnalysis (1.0 - 1) <8CC3D6CB-2328-32A5-B70E-174AD408E892> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff89793000 - 0x7fff897dffff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation 0x7fff89816000 - 0x7fff89a80ff7 com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff89a81000 - 0x7fff89a83fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging 0x7fff89a84000 - 0x7fff89a8dff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib 0x7fff89abe000 - 0x7fff89ad0ff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib 0x7fff89ad6000 - 0x7fff89b16ff7 libGLImage.dylib (11.1.6) <D6DDC014-2C74-34B3-970A-26F211FF76EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff89b17000 - 0x7fff89b52fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff89b53000 - 0x7fff89b57fff libspindump.dylib (182.4) <A70D9FF6-75CC-320A-91A0-CF6143255814> /usr/lib/libspindump.dylib 0x7fff8a21b000 - 0x7fff8a21efff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff8a225000 - 0x7fff8a2e0ff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff8a2e1000 - 0x7fff8a2eefff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib 0x7fff8a38f000 - 0x7fff8a3aaff7 com.apple.aps.framework (4.0 - 4.0) <EAC8C347-55F4-3769-995E-B140C95553F6> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 0x7fff8a3ab000 - 0x7fff8a3feffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib 0x7fff8a4f9000 - 0x7fff8a504fff libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib 0x7fff8a528000 - 0x7fff8a528fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff8a5a7000 - 0x7fff8a604fff com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff8a605000 - 0x7fff8a629ff7 com.apple.facetimeservices (10.0 - 1000) <E2AB7900-5171-3DE0-9DBF-2CC14512B40A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices 0x7fff8a62a000 - 0x7fff8ab53ff7 com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff8ab54000 - 0x7fff8ad4e46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib 0x7fff8ad50000 - 0x7fff8ad65fff com.apple.ToneKit (1.0 - 1) <25D0FF56-B802-359D-9CA1-D530F4890D87> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit 0x7fff8ad68000 - 0x7fff8adaeff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8adaf000 - 0x7fff8adbbff7 com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff8ae08000 - 0x7fff8b25bfc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8b25c000 - 0x7fff8b280ff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff8b281000 - 0x7fff8b2a9fff libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib 0x7fff8b33f000 - 0x7fff8b44eff3 com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff8b451000 - 0x7fff8b454fff com.apple.xpc.ServiceManagement (1.0 - 1) <A95A15CD-3B21-3513-AFF8-1D7DE3DBFA12> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff8b4e9000 - 0x7fff8b526ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff8b527000 - 0x7fff8b6d7ffb com.apple.QuartzCore (1.10 - 361.19) <973C2AD1-9D22-3F1F-A291-84B1F677C50D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff8b6d8000 - 0x7fff8b76cfff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff8b773000 - 0x7fff8b775fff libCVMSPluginSupport.dylib (11.1.6) <4F965D25-2BC4-372B-BAE1-E833A3C4C3D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff8b7c6000 - 0x7fff8b854fff com.apple.CorePDF (4.0 - 4) <19F4CB03-189E-3271-8F7A-A7D0DB3ACE49> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff8b855000 - 0x7fff8b881fff libsandbox.1.dylib (358.20.5) <C95C61A4-C9C1-3B3C-A9A9-77DB7400598F> /usr/lib/libsandbox.1.dylib 0x7fff8b882000 - 0x7fff8b890ff7 com.apple.opengl (11.1.6 - 11.1.6) <81B00A5C-ED8A-341F-A11E-1079F7781C21> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff8b9f9000 - 0x7fff8b9f9fff com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8bb2f000 - 0x7fff8bb33ff7 libGIF.dylib (1248) <C0BB32AD-9E76-3DF1-ABD7-C856D44E7C23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8bd93000 - 0x7fff8c0fefff com.apple.VideoToolbox (1.0 - 1562.240) <BEBDEB83-618F-38BE-B7A7-5E096B428DFA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff8c0ff000 - 0x7fff8c11cfff libsystem_kernel.dylib (2782.70.3) <79B806D6-AEEF-3663-BAE3-2D8A4A0A7A92> /usr/lib/system/libsystem_kernel.dylib 0x7fff8c131000 - 0x7fff8c19bfff com.apple.imfoundation (10.0 - 1000) <842F39B6-0BE2-3B9B-9166-D40031C80C89> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation 0x7fff8c19c000 - 0x7fff8c2e4ff7 com.apple.WebKitLegacy (10600 - 10600.8.9) <9F1ED8A5-1AB9-333C-B1A1-E13485F12E53> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff8c2e5000 - 0x7fff8c6bcfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff8c6bd000 - 0x7fff8c6c2ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff8c775000 - 0x7fff8c77efff libsystem_pthread.dylib (105.40.1) <ACE90967-ECD0-3251-AEEB-461E3C6414F7> /usr/lib/system/libsystem_pthread.dylib 0x7fff8c77f000 - 0x7fff8c782ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <BCC15965-7869-34F4-9019-9D0A41DD6AFF> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff8c783000 - 0x7fff8c788ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib 0x7fff8c81c000 - 0x7fff8c877ff7 libTIFF.dylib (1248) <29AC482A-800E-3E0D-BC91-8211559111C0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff8c878000 - 0x7fff8c8a8fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib 0x7fff8cc19000 - 0x7fff8cc87ff3 com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff8cc88000 - 0x7fff8ccabff7 com.apple.idsfoundation (10.0 - 1000) <79DAA5F6-E054-3CC9-B317-65044A95B567> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation 0x7fff8cda4000 - 0x7fff8cdaefff com.apple.IntlPreferences (2.0 - 150.1) <29687F33-EE4C-3530-8AB9-5B36DBAF4485> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences 0x7fff8cdaf000 - 0x7fff8cdcaff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib 0x7fff8ce0f000 - 0x7fff8ce26ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff8ce64000 - 0x7fff8ce84fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff8ce85000 - 0x7fff8cf06ff7 com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff8cf07000 - 0x7fff8d76affb com.apple.CoreGraphics (1.600.0 - 790) <7BD274D8-73CC-32DE-BCA5-96C047A3B97B> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff8d76b000 - 0x7fff8d79aff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff8d826000 - 0x7fff8d8bdfff com.apple.CoreMedia (1.0 - 1562.240) <CCAF850F-B2E8-3F3B-9DE9-2BB469403EDF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff8d940000 - 0x7fff8d942fff libRadiance.dylib (1248) <28ECEEB1-E6FD-3152-9344-9786F586A325> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff8d943000 - 0x7fff8d94efff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff8da0c000 - 0x7fff8da19ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib 0x7fff8da1a000 - 0x7fff8da6bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <8E6AE326-9F3E-3182-BD9E-FDF561211E2E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff8da6c000 - 0x7fff8da6dffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib 0x7fff8da6e000 - 0x7fff8dda1ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib 0x7fff8dda2000 - 0x7fff8de16ffb com.apple.securityfoundation (6.0 - 55126) <7BC5EB97-2BC8-390D-AC93-C36C456F1126> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff8de17000 - 0x7fff8de66ff7 com.apple.opencl (2.4.2 - 2.4.2) <BF5E999C-5710-362E-95E8-86EE7BEA357C> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff8de67000 - 0x7fff8de9afff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff8dea0000 - 0x7fff8ee63ff3 com.apple.WebCore (10600 - 10600.8.9) <A5400B08-6067-370E-B224-14890DA39857> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff8eea4000 - 0x7fff8f089ff7 libicucore.A.dylib (531.51) <5AFEE55D-9BDD-362C-8A3C-A42237A96169> /usr/lib/libicucore.A.dylib 0x7fff8f08a000 - 0x7fff8f1b2ff7 com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8f1b3000 - 0x7fff8fd34ff7 com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8fd35000 - 0x7fff8fd37ff7 com.apple.securityhi (9.0 - 55006) <15D38919-9697-3E3A-BCB9-4E3271BC2C7E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff8fd38000 - 0x7fff8fd63ffb libarchive.2.dylib (30.50.1.1.1) <3E66E4A5-B992-3D94-9218-839B34BDAAA8> /usr/lib/libarchive.2.dylib 0x7fff8fd7e000 - 0x7fff8fd93ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff8fd94000 - 0x7fff8fd95fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff8fd96000 - 0x7fff8fd96fff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8fd97000 - 0x7fff8fd9fff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 0x7fff8fe00000 - 0x7fff8fe0bff7 com.apple.DirectoryService.Framework (10.10 - 187) <F5B30ACE-57D9-31EA-82F9-98F175B277D1> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 0x7fff8fe0c000 - 0x7fff8fe0dfff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib 0x7fff8fe30000 - 0x7fff8fe32fff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib 0x7fff8fe8d000 - 0x7fff8fe92ff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib 0x7fff8fe93000 - 0x7fff8fe9bfff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib 0x7fff8ff94000 - 0x7fff8ff98fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff8ff99000 - 0x7fff9008cff7 libJP2.dylib (1248) <292199E7-9008-3AB6-9BF2-9C91FF1989BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff9008d000 - 0x7fff900abff7 com.apple.addressbook.vCard (9.0 - 1579) <C4CDDC8B-AE35-39B8-820A-763E9C5D1794> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard 0x7fff900b5000 - 0x7fff900bfff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff900c0000 - 0x7fff9012cff3 com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS 0x7fff9012d000 - 0x7fff90135fe7 libcldcpuengine.dylib (2.4.5) <9AA2661D-B5B3-3B9A-A1A0-F25CB80446F3> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff90136000 - 0x7fff901c7ff7 libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib 0x7fff901c8000 - 0x7fff90447ffb com.apple.RawCamera.bundle (6.06 - 819) <EDA3D142-24EC-3661-87EB-B35F8E858A9D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff90448000 - 0x7fff9046ffff com.apple.shortcut (2.14 - 2.14) <0E9228EC-E688-3E83-9516-5211FFEA923E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x7fff90470000 - 0x7fff90733ff7 com.apple.WebKit (10600 - 10600.8.9) <8EE5A9F9-DE98-3202-92C0-23F6E6E5E274> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff90734000 - 0x7fff90788fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib 0x7fff9079e000 - 0x7fff907c4fff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff90822000 - 0x7fff90c52fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff90c53000 - 0x7fff91060ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff918ea000 - 0x7fff91917fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff91918000 - 0x7fff91918fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff91919000 - 0x7fff9192aff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib 0x7fff9192b000 - 0x7fff91b3bff7 com.apple.CFNetwork (720.5.7 - 720.5.7) <A47D7DD2-5903-39D0-8D27-5A7E2D119D84> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff91b3c000 - 0x7fff91b8dff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2DC09ADA-F618-3F35-9DA1-F8D7A08FE58F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff91b8e000 - 0x7fff91cb2ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff91cdf000 - 0x7fff91cecff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff91cf5000 - 0x7fff91d0fff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib 0x7fff91d10000 - 0x7fff91d4bfff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff91d4c000 - 0x7fff91d4cfff com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff91d4d000 - 0x7fff91eb4ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff91eb5000 - 0x7fff91ee5ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff91ee6000 - 0x7fff91ee9fff com.apple.IOSurface (97.5 - 97.5) <D09F4452-874E-391D-AAEC-A64F4DD5049E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff91eea000 - 0x7fff91f03ff3 com.apple.openscripting (1.6.4 - 162.2) <BF79207B-C762-346D-8FF0-3DDCECC9E9E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff91f04000 - 0x7fff91feeff7 com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff91fef000 - 0x7fff9205efff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9205f000 - 0x7fff92178ff3 com.apple.CoreText (454.11 - 454.14) <B3B308C3-F4B8-3776-9B78-8E94D4E74D0A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff92179000 - 0x7fff92218e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff92219000 - 0x7fff92219ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib 0x7fff92251000 - 0x7fff9225dfff com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) <DFC7FD85-F1B0-317C-8513-722570CB8FB9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff9225e000 - 0x7fff9225fff7 com.apple.AddressBook.ContactsData (9.0 - 1579) <FF9C31DD-7839-35FB-AE66-21AEF63583EF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData 0x7fff922c7000 - 0x7fff922dfff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib 0x7fff92470000 - 0x7fff92478ff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff9247b000 - 0x7fff924c9ff7 com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff924ca000 - 0x7fff9254eff7 com.apple.ViewBridge (105.1 - 105.1) <98E9733F-D863-30CE-BF25-E6768C73AF21> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff9254f000 - 0x7fff92550ff3 libSystem.B.dylib (1213) <4B24B5BE-45F2-355A-9A35-D438A516D140> /usr/lib/libSystem.B.dylib 0x7fff92566000 - 0x7fff925c5fff com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff925c6000 - 0x7fff92664fff com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff92690000 - 0x7fff92694fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff92695000 - 0x7fff92698ffb libCGXType.A.dylib (790) <A87FDE11-B3BE-3C78-B777-293BF25F5E43> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff926e8000 - 0x7fff927beff3 com.apple.DiskImagesFramework (10.10.5 - 398) <05774334-36DF-3912-AD3C-07167ED83FE4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x7fff927bf000 - 0x7fff92838fe7 libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib 0x7fff92839000 - 0x7fff92849ff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib 0x7fff9284a000 - 0x7fff928afff7 com.apple.ids (10.0 - 1000) <B7FB9598-02E5-341D-A019-3F20AE7E1B4D> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS 0x7fff9292b000 - 0x7fff929eeff7 libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff929ef000 - 0x7fff929f1fff com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff929f2000 - 0x7fff929fafff libsystem_dnssd.dylib (576.50.2) <9EC5AF92-D0D2-3BDE-92B6-D3730D3865C8> /usr/lib/system/libsystem_dnssd.dylib 0x7fff92bab000 - 0x7fff92bb6fff libGL.dylib (11.1.6) <38B3FF9A-5660-3080-9DB8-1CAE0E8CD739> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff92bb7000 - 0x7fff92bb7ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib 0x7fff92bb8000 - 0x7fff92c1fffb com.apple.datadetectorscore (6.0 - 396.1.2) <7D88DC30-2583-35A6-8342-425201FE7044> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff92c20000 - 0x7fff92c6dff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff92c6e000 - 0x7fff92f70ffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices 0x7fff92f71000 - 0x7fff92f73fff libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib 0x7fff92f74000 - 0x7fff92f87ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff92f88000 - 0x7fff93320ff7 com.apple.CoreFoundation (6.9 - 1153.31) <4151A95B-66CA-3E6F-9FB2-DF1D8F3E606A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff93321000 - 0x7fff93322fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff93323000 - 0x7fff9338aff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff9338b000 - 0x7fff93399fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation 0x7fff9339a000 - 0x7fff933c5ff7 com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff934c7000 - 0x7fff934d6fd3 com.apple.AppleFSCompression (68.30.1 - 1.0) <FC7A4084-8DBF-31DD-A2A4-97F719AA4F23> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff934d7000 - 0x7fff934d8ff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff93509000 - 0x7fff93514ff7 libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib 0x7fff93515000 - 0x7fff93519fff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib 0x7fff93568000 - 0x7fff9360afff com.apple.Bluetooth (4.3.6 - 4.3.6f4) <D9286207-FC6A-36B7-A10D-830F6B1A2E8F> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff9360b000 - 0x7fff93610fff libsystem_stats.dylib (163.30.2) <4F79A38D-3C9C-3578-8E38-7697F7300CB2> /usr/lib/system/libsystem_stats.dylib 0x7fff93f71000 - 0x7fff93f78fff com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 2 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 1078 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=359.1M resident=113.9M(32%) swapped_out_or_unallocated=245.2M(68%) Writable regions: Total=267.1M written=44.2M(17%) resident=47.9M(18%) swapped_out=20.7M(8%) unallocated=219.3M(82%) REGION TYPE VIRTUAL =========== ======= Activity Tracing 2048K CG backing stores 1148K CG image 564K CG shared images 400K CoreAnimation 608K CoreGraphics 12K CoreImage 8K CoreUI image data 188K Dispatch continuations 4096K Foundation 4K IOKit 420K Image IO 16K Kernel Alloc Once 8K MALLOC 55.8M MALLOC (admin) 32K Mach message 4K Memory Tag 242 12K Memory Tag 251 16K Memory Tag 255 145.6M OpenCL 32K STACK GUARD 56.1M Stack 164.4M Stack (reserved) 520K reserved VM address space (unallocated) VM_ALLOCATE 17.2M __DATA 33.5M __IMAGE 528K __LINKEDIT 75.9M __TEXT 283.2M __UNICODE 552K mapped file 155.6M shared memory 4K =========== ======= TOTAL 998.3M TOTAL, minus reserved VM space 997.8M ``` </details> <details> ``` [ 00 ] mojo::internal::MultiplexRouter::~MultiplexRouter [ 01 ] non-virtual thunk to mojo::internal::MultiplexRouter::~MultiplexRouter [ 02 ] mojo::internal::MultiplexRouter::OnPipeConnectionError [ 03 ] mojo::internal::InterfacePtrStateBase::~InterfacePtrStateBase [ 04 ] SystemNetworkContextManager::OnNetworkServiceCreated [ 05 ] content::GetNetworkService [ 06 ] electron::NetworkContextService::CreateNetworkContext [ 07 ] electron::ElectronBrowserClient::CreateNetworkContext [ 08 ] content::StoragePartitionImpl::InitNetworkContext [ 09 ] content::StoragePartitionImpl::GetNetworkContext [ 10 ] content::URLLoaderFactoryGetter::HandleNetworkFactoryRequestOnUIThread [ 11 ] content::URLLoaderFactoryGetter::Initialize [ 12 ] content::StoragePartitionImpl::Initialize [ 13 ] content::StoragePartitionImplMap::Get [ 14 ] content::(anonymous namespace)::GetStoragePartitionFromConfig [ 15 ] content::BrowserContext::GetDefaultStoragePartition [ 16 ] electron::CookieChangeNotifier::StartListening [ 17 ] electron::ElectronBrowserContext::ElectronBrowserContext [ 18 ] electron::ElectronBrowserContext::From [ 19 ] electron::api::Session::FromPartition [ 20 ] (anonymous namespace)::FromPartition [ 21 ] mate::internal::Dispatcher<v8::Local<v8::Value> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, mate::Arguments*)>::DispatchToCallback [ 22 ] v8::internal::FunctionCallbackArguments::Call [ 23 ] v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false> [ 24 ] v8::internal::Builtin_Impl_HandleApiCall [ 25 ] Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit [ 26 ] Builtins_LoadIC_NoFeedback [ 27 ] Builtins_JSEntryTrampoline [ 28 ] Builtins_JSEntry ``` </details>
https://github.com/electron/electron/issues/22835
https://github.com/electron/electron/pull/23039
abbe7417f255a600f18a4fc1595eb55860c4ab80
9e8ee3c899970b2f73000ea0e045cc83bcd6e315
2020-03-25T20:27:16Z
c++
2020-04-09T23:40:58Z
closed
electron/electron
https://github.com/electron/electron
22,833
["shell/browser/native_window_mac.mm", "shell/browser/ui/cocoa/electron_ns_window.mm", "shell/browser/ui/cocoa/electron_ns_window_delegate.mm"]
Opening and closing a modal window prevents system modals from opening
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.1.0 * **Operating System:** * macOS Catalina 10.15.3 * **Last Known Working Electron version:** * 8.0.3 ### Expected Behavior After opening and closing a modal window in an Electron application we should be able to open system modals (e.g., browsing for files or saving a file) ### Actual Behavior After opening and closing a modal window in an Electron application we are unable to open system modals (e.g., browsing for files or saving a file) ### To Reproduce Use this electron-fiddle gist: https://gist.github.com/c38df808f0ebd23f65e0c5e287d084cd 1. Set Electron fiddle to use `8.0.3` 1. Start the application 1. Press the "choose file" button, notice that it works 1. Close the file browser 1. Press the "open modal" button 1. Press the "close window" button 1. Press the "choose file" button, you can browse for a file 1. Repeat with `8.1.0`, `8.1.1`, `8.2.0`, and , `9.0.0-beta.10`. You can browse for a file before opening the modal, but not after closing the modal ### Additional Information Potentially related: #22481
https://github.com/electron/electron/issues/22833
https://github.com/electron/electron/pull/22858
c085d3bf12f00bb811e7e29fc6eb31599374c54f
b14608c2c1b015d895814a900f1e8300e121c5c0
2020-03-25T18:03:25Z
c++
2020-03-30T16:48:20Z
closed
electron/electron
https://github.com/electron/electron
22,829
["docs/api/web-frame.md", "shell/renderer/api/electron_api_web_frame.cc", "shell/renderer/electron_renderer_client.cc", "shell/renderer/electron_renderer_client.h", "spec-main/spellchecker-spec.ts"]
Expose `spellcheck_platform::CheckSpelling` API
Hi, thank you for creating such a great framework! I have a feature request which I think I can contribute, but let me check if you are interested in supporting it. ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description The builtin spellchecker has been supported in https://github.com/electron/electron/pull/20692. But it does not allow us to check spells programmatically, like [node-spellchecker](https://github.com/felixrieseberg/node-spellchecker)'s `isMisspelled` method. Chrome's spellcheck_platform provides [CheckSpelling](https://chromium.googlesource.com/chromium/src/+/46ee392970e491fb9ee2523348e23222b40d5119/components/spellcheck/browser/spellcheck_platform.h#60) to do that exactly. ### Proposed Solution Add a method to call `spellcheck_platform::CheckSpelling` like so: ```cc #if BUILDFLAG(USE_BROWSER_SPELLCHECKER) bool Session::CheckSpelling(const std::string& word) { if (spellcheck::UseBrowserSpellChecker()) { return spellcheck_platform::CheckSpelling(base::UTF8ToUTF16(word), 0); } return true; } #endif ``` in `shell/browser/api/atom_api_session.cc`. It's simple and won't affect other features. ### Alternatives Considered I don't know. ### Additional Information None Thanks!
https://github.com/electron/electron/issues/22829
https://github.com/electron/electron/pull/25060
321395d96ed8d375b2917d9a0bb2c2d3a8c57676
05b5c197aea8402fbb92a72b5138eb40f3a90b1e
2020-03-25T02:27:55Z
c++
2020-10-19T11:48:16Z
closed
electron/electron
https://github.com/electron/electron
22,780
["shell/browser/api/electron_api_browser_window.cc", "shell/browser/api/electron_api_browser_window_mac.mm", "shell/browser/native_browser_view_mac.h", "shell/browser/native_browser_view_mac.mm"]
Cursor blocked after setBounds on frameless window
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.1.1 * **Operating System:** * macOS 10.14.6 * **Last Known Working Electron version:** * n/a ### Background It seems that when resizing a frameless window *with* a BrowserView inside it to a sufficiently narrow width there is an area created at the top of the window that blocks all touches and makes the window draggable (even if the window has movable = false) ### Expected Behavior - Calling setBounds should allow the window to resize without disrupting the functionality of the BrowserView ### Actual Behavior Approximately 25% of the window at the top stops accepting input and becomes a drag region ### To Reproduce **Electron Fiddle:** https://gist.github.com/f80bfd413b7211c31e2feeb0608cafc8 ### Screenshots ![ezgif-7-09195467100b](https://user-images.githubusercontent.com/416564/77129173-62157c00-6a29-11ea-9ca4-9bcf79cd3fab.gif)
https://github.com/electron/electron/issues/22780
https://github.com/electron/electron/pull/26233
7f9b21daa0fd98f5311d87165b4ab2fe1231ad1d
e0216394722545a00fb7e47de653bb14fdbb909b
2020-03-20T01:34:35Z
c++
2020-10-29T19:51:56Z