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
| 8,867 |
["atom/browser/net/atom_url_request.cc"]
|
Uncaught error in main process when using net.request and receiving unknown content-encoding
|
* Electron version: 1.6.1
* Operating system: macOS 10.12.3, Windows 7 64bit
### Expected behavior
Should emit an error on the request object.
### Actual behavior
<img width="420" alt="image" src="https://cloud.githubusercontent.com/assets/99662/23713890/4e9b8f52-041f-11e7-9dfb-e8408bb58670.png">
An uncatchable error happens.
### How to reproduce
```bash
git clone https://github.com/arantes555/electron-net-encoding-testcase.git
cd electron-net-encoding-testcase
npm install
npm start
```
|
https://github.com/electron/electron/issues/8867
|
https://github.com/electron/electron/pull/9001
|
e0003021cfae5a2ccc2f8bf4523b2f787850659d
|
03b2167f6cd2912fced3d5b8e31610327dc56734
| 2017-03-08T17:00:57Z |
c++
| 2017-03-28T16:24:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,861 |
["docs/api/browser-window.md"]
|
Documentation: "maximize" implies "show", ready-to-show only on hidden window
|
* Electron version: 1.4.14
* Operating system: Windows
This isn't much of a bug report but I think the documentation could be a bit clearer on a few things:
- When you call the "maximize" function on a BrowserWindow that was created with "show: false" it shows the window
- The "ready-to-show" event is only invoked if the BrowserWindow is not shown yet (so it was started with show: false and no "show" or "maximize" were called on it before). The documentation just says
> While loading the page, the ready-to-show event will be emitted when renderer process has done drawing for the first time
|
https://github.com/electron/electron/issues/8861
|
https://github.com/electron/electron/pull/8878
|
286f52996860c59949e3c286e211751bfddce823
|
6ded27f3a9327061ff7e4a89fdf8c4b7ca895f10
| 2017-03-08T09:15:42Z |
c++
| 2017-03-20T17:14:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,857 |
["atom/browser/web_contents_zoom_controller.cc", "atom/browser/web_contents_zoom_controller.h", "spec/fixtures/pages/webview-origin-zoom-level.html", "spec/webview-spec.js"]
|
New webview resets the zoom on existing webviews
|
* Electron version: 1.6.1
* Operating system: MacOS 10.12
Create a webview, set the zoom level, then create a second webview for content at the same domain as the 1st webview.
### Expected behavior
Ideally the second webview would assume the same zoom as the existing webview. At minumum, it'd be good if the first webview maintained its current zoom.
### Actual behavior
The zoom level is reset on both webviews.
### How to reproduce
https://github.com/pfrazee/electron-bug-webview-zoom Instructions on the readme
|
https://github.com/electron/electron/issues/8857
|
https://github.com/electron/electron/pull/8864
|
14b548f27a0fa796cbfa4519608b64a6caaf817f
|
14e8e463b3af1d7961e06c33fdaefae5117eb42f
| 2017-03-07T22:25:20Z |
c++
| 2017-03-09T19:27:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,841 |
["shell/browser/common_web_contents_delegate.cc", "shell/renderer/electron_sandboxed_renderer_client.cc", "shell/renderer/electron_sandboxed_renderer_client.h", "spec-main/api-browser-window-spec.ts", "spec/fixtures/pages/will-navigate.html"]
|
`will-navigate` event not fired when in sandbox mode
|
Thanks for Electron! Amazing project :)
* Electron version: 1.6.2
* Operating system: macOS Sierra (10.12.3)
It happens when `BrowserWindow` is opened with `sandbox: true`. It might be on purpose, but I couldn't find any Electron/Chromium documentation that explains why. So I'm suspecting it's a bug. I can submit a PR with a failing test to this repo if you agree that it's a bug.
### Expected behavior
`webContents`' `will-navigate` event should fire when user reloads page fx.
### Actual behavior
It does not fire.
### How to reproduce
package.json:
```json
{
"name": "electron-sandbox-will-navigate-bug",
"version": "0.0.0",
"main": "main.js",
"dependencies": {
"electron": "^1.6.2"
}
}
```
main.js:
```js
const {app, BrowserWindow} = require('electron')
const path = require('path')
app.on('ready', function() {
const win = new BrowserWindow({
webPreferences: {
sandbox: true
}
})
const {webContents} = win
webContents.on('will-navigate', () => {
console.log('will-navigate')
})
webContents.on('did-navigate', () => {
console.log('did-navigate')
})
win.loadURL('file://' + path.join(__dirname, 'index.html'))
})
```
index.html:
```html
<!doctype html>
<html>
<body>
<button onclick="window.location.reload()">Reload</button>
</body>
</html>
```
Perform these steps:
- Run `npm install`
- Run `./node_modules/.bin/electron .`
- Click the Reload button in the browser window
- Observe the Terminal output
Expected output:
```
did-navigate
will-navigate
did-navigate
```
Actual output:
```
did-navigate
did-navigate
```
(will-navigate is not fired).
If you outcomment the line `sandbox:true` in `main.js`, then it works as expected.
|
https://github.com/electron/electron/issues/8841
|
https://github.com/electron/electron/pull/22188
|
8045152e592e115fafa578c09802956336a4cd99
|
a25d7fa440603020512222c54dd6862d37b02f63
| 2017-03-06T00:58:11Z |
c++
| 2020-02-21T19:08:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,836 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "spec/api-browser-window-spec.js"]
|
Creating BrowerWindows with a parent always makes them show
|
* Electron version: 1.6.1
* Operating system: macOS Sierra
When you do this from a renderer process:
new electron.remote.BrowserWindow(
parent: parentBrowserWindow,
show: false,
);
The browser window always shows even though the `show` option is `false`. If you do not provide a parent, the browser window respects the `show` option.
|
https://github.com/electron/electron/issues/8836
|
https://github.com/electron/electron/pull/9343
|
ac55c358e994f7cfb6dd2534fd5979419c5224c2
|
787675ab0825dd9a64a1ad7c8b6e22ef70184cba
| 2017-03-04T21:29:28Z |
c++
| 2017-09-14T06:50:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,828 |
["atom/utility/atom_content_utility_client.cc", "atom/utility/atom_content_utility_client.h", "chromium_src/chrome/browser/printing/print_view_manager_base.cc"]
|
webContents.print not working on windows since v1.6.1
|
seems to be same problem as here: https://github.com/electron/electron/issues/4906
It happens on windows 10 with electron version 1.6.1.
When I downgrade to 1.4.15 it works.
|
https://github.com/electron/electron/issues/8828
|
https://github.com/electron/electron/pull/9111
|
7574c33ef1b6addde7beaba889bb5403f29c4d5c
|
d857b715574315e255c0f32d6db3e7ae0021153e
| 2017-03-03T17:51:52Z |
c++
| 2017-04-05T23:27:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,805 |
["lib/common/init.js"]
|
process.windowsStore not set if Windows Store folder is moved
|
In a recent update, Microsoft enabled a setting that allows users to move their `WindowsApps` folder. Since `process.windowsStore` checks the path of the current executable to set itself, that check fails if the folder is moved.
I'll fix this posthaste myself.
* Electron version: All
* Operating system: Windows
### Expected behavior
`process.windowsStore` is set correctly, even if the binary isn't in the default location.
### Actual behavior
`process.windowsStore` is set correctly only if the binary is in the default location.
### How to reproduce
- Move your `WindowsApps` folder
- Install an Electron AppX
- See how `process.windowsStore` isn't set
|
https://github.com/electron/electron/issues/8805
|
https://github.com/electron/electron/pull/8806
|
e51a4f0af11fe28cdd64b02192ead1da71c5a674
|
8f7785bb05630ecf7dd7e5d4e751e69396723bb9
| 2017-03-01T19:40:22Z |
c++
| 2017-03-02T18:35:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,802 |
["atom/renderer/atom_renderer_client.cc", "spec/fixtures/api/isolated-preload.js"]
|
`fetch` in preload script with context isolation crashes
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.1
* Operating system: openSUSE Leap 42.2 (Linux 4.4.49, x86-64); also reproducible on Windows Server 2016 14393.
### Expected behavior
<!-- What do you think should happen? -->
In BrowserWindow or webview with context isolation enabled, calling `fetch` in preload script should work.
### Actual behavior
<!-- What actually happens? -->
The page crashes and becomes blank. Devtools shows "Devtools was disconnected from the page".
### How to reproduce
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
Download electron-quick-start, add `webPreferences: {preload: path.join(__dirname, 'index.js'), contextIsolation: true}` to the BrowserWindow options in main.js.
Create index.js: `console.log(fetch('http://example.com'))`
Run `electron .` and it crashes. If started without preload script, calling `fetch('http://example.com')` in Electron Isolated Context of devtools also causes crash.
----
I think the problem may be related with the Isolated Context's security origin. In my local electron build I add the following to CreateIsolatedWorldContext() in atom/renderer/atom_renderer_client.cc to enable cross origin requests, which can make `fetch` work.
static auto universalOriginURL = blink::WebURL(GURL("app://universal"));
static auto universalOrigin = []() {
auto result = blink::WebSecurityOrigin::create(universalOriginURL);
for (const char* scheme : {"http", "https"}) {
blink::WebSecurityPolicy::addOriginAccessWhitelistEntry(universalOriginURL,
blink::WebString::fromUTF8(scheme), blink::WebString(), true);
}
return result;
}();
render_frame_->GetWebFrame()->setIsolatedWorldSecurityOrigin(
World::ISOLATED_WORLD, universalOrigin);
|
https://github.com/electron/electron/issues/8802
|
https://github.com/electron/electron/pull/8804
|
d009b3267a864db68a68cbc06f06cb4f8c6f65f9
|
e51a4f0af11fe28cdd64b02192ead1da71c5a674
| 2017-03-01T12:46:27Z |
c++
| 2017-03-02T17:16:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,791 |
["script/lib/config.py", "spec/chromium-spec.js", "vendor/brightray"]
|
Heap Snapshots crash when attempting to create
|
* Electron version: 1.6.1, on both macOS and Windows
The following code seems to crash any renderer process hard on apps I've tested on (Slack Desktop, unreleased project X):
```js
process.atomBinding('v8_util').takeHeapSnapshot();
```
https://github.com/enlight/v8-profiler seems to have a similar effect when trying to take a heap snapshot as well.
|
https://github.com/electron/electron/issues/8791
|
https://github.com/electron/electron/pull/8926
|
f71353a4c5f09031c3e1307cec477ebb4d702d45
|
fe5db82d47f8443c3ab15692fce6d120824732f5
| 2017-02-27T22:23:00Z |
c++
| 2017-03-17T16:55:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,781 |
["docs-translations/jp/api/webview-tag.md", "docs-translations/ko-KR/api/browser-window.md", "docs-translations/ko-KR/api/webview-tag.md", "docs-translations/zh-CN/api/browser-window.md", "docs-translations/zh-CN/api/webview-tag.md", "docs/api/browser-window.md", "docs/api/webview-tag.md"]
|
Blink features url is changed. Electron website needs to be updated.
|
* Electron version:
1.4.15
* Operating system:
mac osx
### Actual behavior
the wrong url is https://cs.chromium.org/chromium/src/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in.
It is under http://electron.atom.io/docs/api/browser-window
### How to reproduce
the correct url is https://cs.chromium.org/chromium/src/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5
|
https://github.com/electron/electron/issues/8781
|
https://github.com/electron/electron/pull/8783
|
20a9cf834b6ee60dbe9ae325c8612d54e4a8bbf1
|
368da3300e91b472963ced1232e04f5f79fbd087
| 2017-02-27T03:46:17Z |
c++
| 2017-02-27T16:53:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,777 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "docs/api/web-contents.md", "spec/api-web-contents-spec.js"]
|
Option to set webrtc ip handling policy
|
Hi,
Electron web-view is leaking original IP through webRTC even though we are in VPN/Proxy
Do we have option to disable that in electron, brave is already doing this
https://github.com/brave/browser-laptop/commit/653e4db649c1e96e55f5b2c80a60f5db49b10cb3#diff-b95013a7d2996f174fdafb3bb3cfd7cb
Third party Add-ons are blocking webrtc by accessing this API
chrome.privacy.network.webRTCIPHandlingPolicy.set({value: 'default_public_interface_only'});
It will be helpful if we expose this API in electron too.
How to replicate this:
_________________________
create a simple webview
Set proxy for that session/webview
visit https://browserleaks.com/webrtc
You can see your original IP even though you are in proxy
Thanks
Jk
|
https://github.com/electron/electron/issues/8777
|
https://github.com/electron/electron/pull/8866
|
c004cf08941dae0d7a98a3e7c97659b14cd583ec
|
783b5e84f45d3096b02e9145bbda0382af21b25d
| 2017-02-26T19:55:51Z |
c++
| 2017-03-09T17:55:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,767 |
["atom/common/api/atom_api_native_image.cc", "atom/common/api/atom_api_native_image.h", "docs/api/native-image.md", "spec/api-native-image-spec.js", "spec/fixtures/assets/1x1.png"]
|
app.getFileIcon returns empty PNG
|
* Electron version: 1.6.1 beta
* Operating system: Microsoft Windows [Version 10.0.14393]
```
app.getFileIcon(path.normalize(file), (err, icon) => {
if (icon) {
console.log(icon.toBitmap()); // [buffer array]
console.log(icon.toBitmap().length); // 9216
console.log(icon.getBitmap()); // [buffer array]
console.log(icon.getBitmap().length); // 9216
console.log(icon.toPNG()); // EMPTY buffer array []
console.log(icon.toPNG().length); // 0
console.log(icon.getSize()); // {width: 32, height: 32}
console.log(icon.toDataURL()); // "data:image/png;base64,"
}
});
```
|
https://github.com/electron/electron/issues/8767
|
https://github.com/electron/electron/pull/8849
|
c0d57d609ecd520f430bb7ea46d4f719e9deb8b1
|
4f817873f19d236be91917dd6ce0a0f5cb00facd
| 2017-02-24T19:54:40Z |
c++
| 2017-03-07T20:55:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,755 |
["docs/api/web-contents.md"]
|
Allow to drag multiples files with contents.startDrag()
|
When use contents.startDrag(path), It would be great to allow us to drag multiple files by passing an array of paths. Is this improvement realistic ?
|
https://github.com/electron/electron/issues/8755
|
https://github.com/electron/electron/pull/8760
|
62f4a77755a057609cfccf6d824ed76e41a0fb57
|
cc688d7fa6a48e5133735eb67d665f5d193ec94f
| 2017-02-23T17:23:02Z |
c++
| 2017-02-23T21:45:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,754 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "atom/browser/atom_access_token_store.cc", "atom/browser/atom_access_token_store.h", "atom/browser/common_web_contents_delegate.cc", "atom/browser/common_web_contents_delegate.h", "vendor/brightray"]
|
navigator.geolocation.getCurrentPosition freezes thread
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.1
* Operating system: macOS
### Expected behavior
navigator.geolocation.getCurrentPosition runs in background
### Actual behavior
the entire UI is frozen
### How to reproduce
```js
navigator.geolocation.getCurrentPosition((pos) => {
console.log('POS: ' + pos);
}, (err) => {
console.log('Geolocation error: ', err);
}, {enableHighAccuracy: false});
```
|
https://github.com/electron/electron/issues/8754
|
https://github.com/electron/electron/pull/8923
|
8164ede297290cd1a2e4b079ac6130329d0b1bf2
|
637bdc239b8f613fec7295e119aa86a753c51d0d
| 2017-02-23T15:41:28Z |
c++
| 2017-03-28T05:45:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,752 |
["lib/renderer/api/remote.js", "lib/renderer/init.js"]
|
`executeJavaScript` cannot get result when Promise overridden by content page.
|
* Electron version: 1.6.0
* Operating system: macOS
### Expected behavior
print "2" and quit
### Actual behavior
never quit
### How to reproduce
Running following code:
```
const {app, BrowserWindow} = require('electron')
app.on('ready', () => {
let win = new BrowserWindow();
//win.loadURL('data:text/html,<html>');
win.loadURL('data:text/html,<script>window.Promise=null</script>');
win.webContents.executeJavaScript('1+1', (result) => {
console.log(result);
app.quit();
});
});
```
Or with a real case: `win.loadURL('https://www.tumblr.com/');`
### Possible solution
The Promise in [this line](https://github.com/electron/electron/blob/8e203592e25db081dc68db086938157d0847f169/lib/renderer/init.js#L42) could be overridden by content page, which cause
```
Uncaught TypeError: Promise.resolve is not a function TypeError: Promise.resolve is not a function
at Function.responseCallback (Electron.app/Contents/Resources/electron.asar/renderer/init.js:42:13)
at EventEmitter.electron.ipcRenderer.on (Electron.app/Contents/Resources/electron.asar/renderer/init.js:51:28)
```
import `Promise` into the scope can solve this.
|
https://github.com/electron/electron/issues/8752
|
https://github.com/electron/electron/pull/8845
|
e0260d6f534c39f4a3ad13541cd7e825af60697b
|
c0d57d609ecd520f430bb7ea46d4f719e9deb8b1
| 2017-02-23T14:49:11Z |
c++
| 2017-03-07T20:27:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,743 |
["docs/api/web-contents.md", "lib/browser/api/web-contents.js", "spec/api-browser-window-spec.js", "spec/static/main.js"]
|
webContents.executeJavaScript fails if no callback given
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.0
* Operating system: macOS
### Expected behavior
<!-- What do you think should happen? -->
I think `webContents.executeJavascript('5+5').then(function(result) { console.log('result', result); })` should log `10` to the console.
### Actual behavior
<!-- What actually happens? -->
The promise never fires.
### How to reproduce
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
```javascript
const {app, BrowserWindow, webContents} = require('electron');
app.on('ready', function() {
win = new BrowserWindow();
win.on('ready-to-show', () => {
win.show();
})
win.on('closed', () => {
win = null;
});
win.webContents.on('did-finish-load', () => {
console.log('finished loading');
// just promises
win.webContents.executeJavaScript('5+5')
.then(result => {
console.log('result (no callback one)', result)
})
.catch(err => {
console.log('error (no callback one)', err);
})
// promises with callback specified
win.webContents.executeJavaScript('7+7', result => {
console.log('callback result', result);
})
.then(result => {
console.log('promise result (callback one)', result)
})
.catch(err => {
console.log('error (callback one)', err);
})
});
win.loadURL('data:text/html,<html><body>Hello</body></html>');
});
```
Running the above, I'd expect to see:
```
finished loading
result (no callback one) 10
callback result 14
promise result (callback one) 14
```
but instead I see:
```
finished loading
callback result 14
promise result (callback one) 14
```
### Possible solution
I suspect the problem is that [this line](https://github.com/electron/electron/blob/1f75df0253c7cee435f2783029ed26ea20ea7ad0/lib/browser/api/web-contents.js#L118) is:
```javascript
if (callback != null) callback(result)
```
when it should be
```javascript
if (callback) callback(result)
```
I think it's trying to call an `undefined` callback. Which also means that an error is going unreported (second bug?)
|
https://github.com/electron/electron/issues/8743
|
https://github.com/electron/electron/pull/8744
|
f549bda9fc4da4e453d878e276b356d3eaa5bdc0
|
9547ff135f3f14d4bad31ae446b0a2e7a0f0ea3d
| 2017-02-22T22:45:54Z |
c++
| 2017-03-06T19:19:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,735 |
["atom/browser/api/atom_api_web_contents.cc", "docs/api/browser-window.md", "docs/api/web-contents.md", "docs/api/webview-tag.md", "spec/api-browser-window-spec.js", "spec/fixtures/api/loaded-from-dataurl.js"]
|
Support base URL option to loadURL for data URLs
|
I do a lot of HTML generation just with JavaScript and am finding myself creating `index.html` files that have code that looks like this:
<!DOCTYPE html><html><head><script src="index.js"></script></head><body></body></html>
It would be nice to be able to do:
browserWindow.loadHTML('<!DOCTYPE html><html><head><script src="index.js"></script></head><body></body></html>');
It would be even more awesome to do:
browserWindow.loadScript(pathToScript);
I tried to use the `preload` option for `BrowserWindow` and using `loadURL('about:blank')`, but this has an unintended side effect of not allowing you to reference other script or CSS files using relative paths.
What do you think about proposed feature?
|
https://github.com/electron/electron/issues/8735
|
https://github.com/electron/electron/pull/8799
|
886b47e71344e68a69c16d387ac83f429c074993
|
f549bda9fc4da4e453d878e276b356d3eaa5bdc0
| 2017-02-22T20:06:33Z |
c++
| 2017-03-06T18:25:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,730 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "docs/api/browser-window.md", "docs/api/frameless-window.md", "docs/api/touch-bar.md"]
|
Frameless Electron App not work css cursor:pointer
|
* Electron version:1.4.14
* Operating system: mac v10.12.3
### Expected behavior
setting BrowserWindow options frame false
browser Top frame zone
There is an invisible window
<!-- What do you think should happen? -->
i want work css cursor:pointer
my option code
mainWindow = new BrowserWindow({
show: false,
frame: false,// look
title: "",
useContentSize: false,
width: mainWindowWidth,
minWidth: mainWindowWidth,
height: mainWindowHeight,
minHeight: mainWindowHeight,
maximizable:false,
fullscreenable:false,
icon: iconPath
});
|
https://github.com/electron/electron/issues/8730
|
https://github.com/electron/electron/pull/8958
|
9a362eed5321c9f81178f2e5a74b8e470b3bb73a
|
dfa4af221086dcb3b2a33f278bc13ae8ff415ec4
| 2017-02-22T05:48:49Z |
c++
| 2017-06-05T21:30:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,728 |
["atom/browser/native_window_views.cc", "atom/browser/ui/views/win_frame_view.cc", "atom/browser/ui/win/atom_desktop_window_tree_host_win.cc", "atom/browser/ui/win/atom_desktop_window_tree_host_win.h", "electron.gyp"]
|
Frameless maximize overflow
|
* Electron version: 1.4.15
* Operating system: Windows 10
### Actual behavior
Height is oversized by exactly 8px consistently (taskbar is set to small icons).

### How to reproduce
https://github.com/adi518/electron-frameless-maximize-test
|
https://github.com/electron/electron/issues/8728
|
https://github.com/electron/electron/pull/9167
|
7f4bd79b01d795e4cfbcabd46784e61dbaa4532b
|
0c1d60381df21f9c1f06a641eaf97ca4d3dec65e
| 2017-02-21T17:43:21Z |
c++
| 2017-04-13T10:08:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,714 |
["atom/browser/native_window_mac.mm"]
|
BrowserWindow vibrancy not work in 1.6.0
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.0
* Operating system: mac 10.12.3
### Expected behavior
Hi everyone, i want to use vibrancy in my app, but it not work! somebody can help me?
```js
const electron = require('electron');
const {app, BrowserWindow} = electron;
function createWindow() {
let win = new BrowserWindow({
width: 800,
height: 600,
frame: false,
vibrancy: 'dark'
})
}
app.on('ready', createWindow);
```
|
https://github.com/electron/electron/issues/8714
|
https://github.com/electron/electron/pull/8717
|
1f75df0253c7cee435f2783029ed26ea20ea7ad0
|
1dd37eaab71a8a64d1f68fb88622ac3e2a31bc4a
| 2017-02-18T04:39:12Z |
c++
| 2017-02-21T16:45:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,700 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "spec/api-browser-window-spec.js", "spec/static/main.js"]
|
Crash when navigating in did-fail-load event
|
I have a download link (40mb+ file) when clicked and confirm where to save file, make another click on same link and got crash.
Tried to make sample of crash, and didn't yet face such behavior: on second click app didn't made something (not showed download dialog), but also not crashed. Will provide sample as soon as got reproducible one.
Debug:
<img width="1331" alt="screen shot 2017-02-16 at 1 24 09 pm" src="https://cloud.githubusercontent.com/assets/1834053/23017440/56041e32-f44b-11e6-8d5c-f1ff6ad671cd.png">
Report:
<img width="1398" alt="screen shot 2017-02-16 at 1 25 28 pm" src="https://cloud.githubusercontent.com/assets/1834053/23017568/db45549e-f44b-11e6-8f74-650b0f2cc756.png">
Any idea what can affect such problem?
As I see from report last triggered method was webContents.loadURL, but didn't understand why it was called since I have webContetst.session event 'will-download' called, that had to be triggered after webContents.downloadURL, not loadURL.
|
https://github.com/electron/electron/issues/8700
|
https://github.com/electron/electron/pull/8724
|
479af3c9e2549fff7a24ccf7e9f158a020842ba8
|
886b47e71344e68a69c16d387ac83f429c074993
| 2017-02-16T10:33:15Z |
c++
| 2017-03-06T18:18:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,667 |
["script/lib/config.py"]
|
Dropping items onto a webview doesn't trigger the 'drop' event
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.0
* Operating system: OSX
### Expected behavior
<!-- What do you think should happen? -->
Expecting event 'drop' on the document object to fire
### Actual behavior
Electron triggers a file open dialogue
<!-- What actually happens? -->
### How to reproduce
1) Bind the drop event in the BrowserWindow control, ie;
```js
document.addEventListener('drop',function(event){
console.log("I'm getting " + event.dataTransfer.files.length);
});
```
2) Drop a file into a webview in the browser window. Event listener doesn't fire. Fires in stable versions of electron. This may be intended but it used to fire the event. Version 1.4.15 fires the event even if dropped into a webview
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
|
https://github.com/electron/electron/issues/8667
|
https://github.com/electron/electron/pull/9037
|
9249228ac3ce772c2fcd98a379cef78bece9f2d8
|
8164ede297290cd1a2e4b079ac6130329d0b1bf2
| 2017-02-13T00:07:00Z |
c++
| 2017-03-28T00:18:17Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,653 |
["script/create-dist.py", "script/lib/config.py", "script/upload.py"]
|
Use Electron version in Chromedriver asset name
|
Currently the Chromedriver version used in the release asset name is hard-coded [here](https://github.com/electron/electron/blob/5d0da398bf1b664d90816a2de8570db612019e37/script/lib/config.py#L45-L46).
`electron-download` saves assets to the cache by name so having multiple releases with the same asset name but different contents causes issues with the SHASUM checker since it finds the file in the cache from a past release but the new checksum does not match. You end up with an error like:
```
Error: Generated checksum for "chromedriver-v2.21-darwin-x64.zip" did not match expected checksum.
```
All other assets like `ffmpeg` and `mksnapshot` carry the Electron version in the asset name so I'd like to propose we follow the same for `chromedriver` to prevent this issue and for consistency.
Another option would be to bump the `chromedriver` to match the current released version which is 2.25 but that would still seem to leave the chance that that version would not change across Chrome upgrades so we may still end up with this issue in the future.
/cc @zcbenz
|
https://github.com/electron/electron/issues/8653
|
https://github.com/electron/electron/pull/8682
|
c127ce3e4600c4d826acda996f9034570b2aafa0
|
0ac3969c6afab8067faed80849f4c5a12533e324
| 2017-02-10T17:37:57Z |
c++
| 2017-02-15T16:28:43Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,649 |
["atom/browser/native_window_views.cc", "atom/browser/ui/win/atom_desktop_native_widget_aura.cc", "atom/browser/ui/win/atom_desktop_native_widget_aura.h", "filenames.gypi", "spec/api-web-contents-spec.js", "spec/fixtures/pages/focus-web-contents.html"]
|
Hidden windows can steal focus from non-hidden ones
|
* Electron version: 1.6.0, does _not_ repro in 1.4.x
* Operating system: Win32 tested, others possible
It appears that even if you create a window with `focusable: false` and `show: false`, calling `loadURL` on it will cause it to accept window focus and for other windows to lose focus.
### How to reproduce
Open the default Electron app
```js
BW = require('electron').remote.BrowserWindow
let ourWindow = BW.getFocusedWindow()
ourWindow.on('blur', () => console.log("Lost it!"))
hidden = new BW({show: false, width: 500, height: 500, focusable: false})
hidden.loadURL("http://www.yahoo.com")
>>> "Lost it!"
```
This breaks anyone using background windows for computation such as VS Code and Slack (via electron-remote), because whenever a background task kicks off, users can't type anymore
|
https://github.com/electron/electron/issues/8649
|
https://github.com/electron/electron/pull/8676
|
0ac3969c6afab8067faed80849f4c5a12533e324
|
9a7ac5326caadcae3cb2c7432c58353b7db1009e
| 2017-02-09T23:22:47Z |
c++
| 2017-02-15T19:22:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,632 |
["lib/browser/api/menu.js", "lib/browser/api/web-contents.js"]
|
Right click on fullscreened flash player in webview shows TypeError
|
* Electron version: 1.4.15,1.5.0,1.6.0
* Operating system:Windows 10 Home Basic
* PepperFlashPlayer Version: 24.0.0.194
1. open page with flash in webview.
I tried a game and a video site: http://tenhou.net/0/ and http://www.youku.com
2. make the flash fullscreened
3. right click
4. an error dialog opened.
```
TypeError: Error Processing argument at index 0, conversion failure from null
at TypeError (native)
at Menu.popup(...\electron.asar\browser\api\menu.js:162:8)
at WebContents.<anonymous> (...\electron.asar\browser\api\webconten...:10)
at emitTwo(event.js:106:13)
at WebContents.emit(event.js:191:7)
```
### Expected behavior
no error
### Actual behavior
error dialog
### How to reproduce
main.js
```
const {app, BrowserWindow} = require('electron');
let win;
app.on('window-all-closed', function() {
app.quit();
});
app.on('ready', function() {
win = new BrowserWindow({
width: 800,
height: 600
});
win.loadURL('file://' + __dirname + '/index.html');
win.on('closed', function() {
win = null;
});
});
const path = require('path');
const fs = require('fs');
const {execSync} = require('child_process');
let system32_path = execSync('echo %SYSTEMROOT%\\System32', {encoding:"utf8"}).trim();
let flash_path = path.resolve(system32_path, 'Macromed', 'Flash');
if (fs.existsSync(flash_path)) {
let files = fs.readdirSync(flash_path);
let ppapi_flash_path = null;
let ppapi_flash_version = null;
for (let file of files) {
let matches;
if (matches = file.match(/pepflashplayer64_(\d+)_(\d+)_(\d+)_(\d+).dll/)) {
ppapi_flash_path = path.resolve(flash_path, file);
ppapi_flash_version = `${matches[1]}.${matches[2]}.${matches[3]}.${matches[4]}`;
}
}
if (fs.existsSync(ppapi_flash_path)) {
app.commandLine.appendSwitch('--enable-npapi');
app.commandLine.appendSwitch('ppapi-flash-path', ppapi_flash_path);
app.commandLine.appendSwitch('ppapi-flash-version', ppapi_flash_version);
}
}
```
index.html
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<style>
html{
width:100%;
height:100%;
}
body{
margin:0;padding:0;
height:100%;
}
</style>
<script>
</script>
<webview id="main" src="http://v.youku.com/v_show/id_XMjUwMjc0MzA3Mg==.html" autosize="on" style="display:inline-flex; width:100%; height:100%" plugins></webview>
</body>
</html>
```
|
https://github.com/electron/electron/issues/8632
|
https://github.com/electron/electron/pull/8739
|
5819acbc204e1656ef21f155003a4fb9492491df
|
d01250eceb6d567378df1de44b5631246c1a523b
| 2017-02-08T19:25:11Z |
c++
| 2017-02-24T17:05:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,622 |
["lib/browser/api/browser-window.js", "lib/browser/guest-view-manager.js", "lib/renderer/web-view/web-view.js", "spec/webview-spec.js"]
|
WebView causes Warning: Possible EventEmitter memory leak detected. 11 ELECTRON_RENDERER_WINDOW_VISIBILITY_CHANGE listeners added. Use emitter.setMaxListeners() to increase limit
|
* Electron version: 1.3.1 (32-bit), 1.6.0 (64-bit)
* Operating system: Win 10 x64
### Expected behavior
The WebView should have a dispose method or should not attach multiple listeners to ipcRenderer.
### Actual behavior
Every time a WebView is created, a new event listener is attached.
### How to reproduce
Just run this from renderer:
```
for (let i = 0; i < 10; i++) { new WebView(); }
```
|
https://github.com/electron/electron/issues/8622
|
https://github.com/electron/electron/pull/8742
|
2f5f7721fc3a9ab82786be28fe45db662a9ada1e
|
51d6a550610188347601bdb93fabcbf8f8b81607
| 2017-02-08T01:54:54Z |
c++
| 2017-02-28T16:45:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,621 |
["atom/browser/native_window.cc"]
|
'scroll-touch-end' not emitted in 1.6.0
|
* Electron version: 1.6.0
* Operating system: MacOS 10.12.2
### Expected behavior
'scroll-touch-end' emits when trackpad scrolling ends.
### Actual behavior
The begin event emits, but not the end
### How to reproduce
Example repo: https://github.com/pfrazee/electron-bug-no-scroll-touch-end
|
https://github.com/electron/electron/issues/8621
|
https://github.com/electron/electron/pull/8673
|
624e44dd6fb585cc9acd4a0b56c0568c789b5bd1
|
e9e85956053dff45a2982ca241ba0b6eae672990
| 2017-02-07T23:28:29Z |
c++
| 2017-02-14T17:32:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,611 |
["spec/fixtures/module/test.coffee", "spec/modules-spec.js", "spec/package.json", "vendor/node"]
|
coffee-script register fails on 1.6.0 & 1.5.1
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.0 / 1.5.1
* Operating system: Windows 10 x64
### Expected behavior
Coffee-script won't fail with `require('coffee-script').register()` or `require('coffee-script/register')`
<!-- What do you think should happen? -->
### Actual behavior
Coffee-script fails to register
<!-- What actually happens? -->
### How to reproduce
1. Download the `Electron-quick-start` app
2. install `coffee-script` via `npm i --save coffee-script`
2. Add a register line in `index.html`, for example,
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
<script>
// You can also require other files to run in this process
require('coffee-script').register()
require('./renderer.js')
</script>
</html>
```
(`require('coffee-script').register()` and `require('coffee-script/register')` will give the same result)
4. launch the app with Electron 1.5.1 / 1.6.0, error message will appear in `Console` tab


Error message on 1.6.0:
```
C:\Users\kagami\Documents\git\electron-quick-start\node_modules\coffee-script\lib\coffee-script\coffee-script.js:254 Uncaught TypeError: Cannot read property 'length' of undefined
at C:\Users\kagami\Documents\git\electron-quick-start\node_modules\coffee-script\lib\coffee-script\coffee-script.js:254:26
at C:\Users\kagami\Documents\git\electron-quick-start\node_modules\coffee-script\lib\coffee-script\coffee-script.js:425:4
at Object.<anonymous> (C:\Users\kagami\Documents\git\electron-quick-start\node_modules\coffee-script\lib\coffee-script\coffee-script.js:427:2)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
```
While the same app won't throw any error on 1.5.0 and previous

The lines related to this error in `coffee-script` are:
```javascript
if (require.extensions) {
ref = this.FILE_EXTENSIONS;
fn1 = function(ext) {
var base;
return (base = require.extensions)[ext] != null ? base[ext] : base[ext] = function() {
throw new Error("Use CoffeeScript.register() or require the coffee-script/register module to require " + ext + " files.");
};
};
for (i = 0, len = ref.length; i < len; i++) {
ext = ref[i];
fn1(ext);
}
}
```
`this.FILE_EXTENSIONS` becomes `undefinded` but I have no idea how it happens
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
|
https://github.com/electron/electron/issues/8611
|
https://github.com/electron/electron/pull/8618
|
83d31cefeb9a806720771adee113f488c1861f0b
|
d00a96ce356425f5a0c751f236259dbbc8265c32
| 2017-02-07T04:47:36Z |
c++
| 2017-02-08T18:33:48Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,610 |
["atom/browser/native_window_mac.mm"]
|
titleBarStyle: hidden-inset broken in 1.6.0
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.0
* Operating system: OS X 10.11.6
### Expected behavior
The title bar should be rendered as it is in previous versions of Electron.
<!-- What do you think should happen? -->
### Actual behavior
```titleBarStyle: "hidden-inset"``` seems to have the same behavior as ```titleBarStyle: "hidden"```.
Screenshots:
<img width="244" alt="electron-1_5_1" src="https://cloud.githubusercontent.com/assets/10314059/22677425/08f62a58-ecb8-11e6-8c6b-0e56043e5769.png">
<img width="246" alt="electron-1_6_0" src="https://cloud.githubusercontent.com/assets/10314059/22677426/08f6722e-ecb8-11e6-96be-b2e3af8b1526.png">
<!-- What actually happens? -->
### How to reproduce
This seems to happen in any app - even ```electron-quick-start``` has the issue when the title bar style is changed.
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
|
https://github.com/electron/electron/issues/8610
|
https://github.com/electron/electron/pull/8619
|
f9b319e4f8129f04ac56d06aee1ceeab433f826f
|
5cd18fe32a23c872215218308c536b37dc055a11
| 2017-02-07T04:09:11Z |
c++
| 2017-02-08T04:58:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,609 |
["README.md"]
|
Separate Appveyor account from Atom team
|
https://github.com/electron/electron/issues/8609
|
https://github.com/electron/electron/pull/8924
|
48152a813ba12c9bdbdcfaefaf578f490836dfa3
|
eeccdf967c4605dc7f5ca251047c7f0c085a5ba0
| 2017-02-07T01:22:26Z |
c++
| 2017-03-14T20:18:04Z |
|
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,608 |
["script/create-dist.py", "script/lib/config.py"]
|
Debug symbols not generated for Release build
|
For Linux, this is because libchromiumcontent does not have `-g` enabled. For Windows, this is because the PDB files are not copied to the correct places.
|
https://github.com/electron/electron/issues/8608
|
https://github.com/electron/electron/pull/8640
|
acedc3e726cca330061665c229340f106ffed014
|
e8f689ecd3ee255e6835178e181b4a74304cff91
| 2017-02-07T00:30:46Z |
c++
| 2017-02-10T10:11:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,602 |
["atom/node/osfhandle.cc"]
|
Linking fails for release builds on 32-bit Windows
|
Linking master which runs Chrome 56 on 32-bit Windows fails with unresolved symbol errors.
Saw this on CI and also locally, 64-bit seems to be fine.
```
[1154/1154] LINK_EMBED electron.exe
FAILED: C:\Python27\python.exe gyp-win-tool link-with-manifests environment.x86 True electron.exe "C:\Python27\python.exe gyp-win-tool link-wrapper environment.x86 False link.exe /nologo /OUT:electron.exe @electron.exe.rsp" 1 mt.exe rc.exe "obj\electron.electron.exe.intermediate.manifest" obj\electron.electron.exe.generated.manifest ..\..\atom\browser\resources\win\atom.manifest
webkit.lib(InspectorSession.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static bool __cdecl v8_inspector::V8InspectorSession::canDispatchMethod(class v8_inspector::StringView const &)" (__imp_?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NABVStringView@2@@Z) referenced in function "public: void __thiscall blink::InspectorSession::dispatchProtocolMessage(class WTF::String const &,class WTF::String const &)" (?dispatchProtocolMessage@InspectorSession@blink@@QAEXABVString@WTF@@0@Z)
webkit.lib(InspectorSession.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) const v8_inspector::V8Inspector::Channel::`vftable'" (__imp_??_7Channel@V8Inspector@v8_inspector@@6B@) referenced in function "public: virtual __thiscall blink::InspectorSession::~InspectorSession(void)" (??1InspectorSession@blink@@UAE@XZ)
webkit.lib(InspectorDOMAgent.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) const v8_inspector::V8InspectorSession::Inspectable::`vftable'" (__imp_??_7Inspectable@V8InspectorSession@v8_inspector@@6B@) referenced in function "public: virtual void * __thiscall blink::InspectableNode::`scalar deleting destructor'(unsigned int)" (??_GInspectableNode@blink@@UAEPAXI@Z)
webkit.lib(InspectorDOMDebuggerAgent.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) char const * const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::XHR" (__imp_?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB)
webkit.lib(InspectorDOMDebuggerAgent.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) char const * const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::DOM" (__imp_?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB)
webkit.lib(InspectorDOMDebuggerAgent.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) char const * const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::EventListener" (__imp_?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB)
webkit.lib(ThreadDebugger.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::V8Inspector,struct std::default_delete<class v8_inspector::V8Inspector> > __cdecl v8_inspector::V8Inspector::create(class v8::Isolate *,class v8_inspector::V8InspectorClient *)" (__imp_?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@std@@@std@@PAVIsolate@v8@@PAVV8InspectorClient@2@@Z) referenced in function "public: __thiscall blink::ThreadDebugger::ThreadDebugger(class v8::Isolate *)" (??0ThreadDebugger@blink@@QAE@PAVIsolate@v8@@@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::beginEnsureAllContextsInGroup(int)" (?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual bool __thiscall v8_inspector::V8InspectorClient::canExecuteScripts(int)" (?canExecuteScripts@V8InspectorClient@v8_inspector@@UAE_NH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleAPIMessage(int,enum v8_inspector::V8ConsoleAPIType,class v8_inspector::StringView const &,class v8_inspector::StringView const &,unsigned int,unsigned int,class v8_inspector::V8StackTrace *)" (?consoleAPIMessage@V8InspectorClient@v8_inspector@@UAEXHW4V8ConsoleAPIType@2@ABVStringView@2@1IIPAVV8StackTrace@2@@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::endEnsureAllContextsInGroup(int)" (?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual class v8::Local<class v8::Context> __thiscall v8_inspector::V8InspectorClient::ensureDefaultContextInGroup(int)" (?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UAE?AV?$Local@VContext@v8@@@v8@@H@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual class v8::MaybeLocal<class v8::Value> __thiscall v8_inspector::V8InspectorClient::memoryInfo(class v8::Isolate *,class v8::Local<class v8::Context>)" (?memoryInfo@V8InspectorClient@v8_inspector@@UAE?AV?$MaybeLocal@VValue@v8@@@v8@@PAVIsolate@4@V?$Local@VContext@v8@@@4@@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::muteMetrics(int)" (?muteMetrics@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::quitMessageLoopOnPause(void)" (?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UAEXXZ)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::runIfWaitingForDebugger(int)" (?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::runMessageLoopOnPause(int)" (?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2001: unresolved external symbol "public: virtual void __thiscall v8_inspector::V8InspectorClient::unmuteMetrics(int)" (?unmuteMetrics@V8InspectorClient@v8_inspector@@UAEXH@Z)
webkit.lib(ThreadDebugger.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) const v8_inspector::V8InspectorClient::`vftable'" (__imp_??_7V8InspectorClient@v8_inspector@@6B@) referenced in function "public: virtual __thiscall blink::ThreadDebugger::~ThreadDebugger(void)" (??1ThreadDebugger@blink@@UAE@XZ)
webkit.lib(MainThreadDebugger.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall v8_inspector::V8ContextInfo::V8ContextInfo(class v8::Local<class v8::Context>,int,class v8_inspector::StringView const &)" (__imp_??0V8ContextInfo@v8_inspector@@QAE@V?$Local@VContext@v8@@@v8@@HABVStringView@1@@Z) referenced in function "public: void __thiscall blink::MainThreadDebugger::contextCreated(class blink::ScriptState *,class blink::LocalFrame *,class blink::SecurityOrigin *)" (?contextCreated@MainThreadDebugger@blink@@QAEXPAVScriptState@2@PAVLocalFrame@2@PAVSecurityOrigin@2@@Z)
webkit.lib(WorkerThreadDebugger.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall v8_inspector::V8ContextInfo::V8ContextInfo(class v8::Local<class v8::Context>,int,class v8_inspector::StringView const &)" (__imp_??0V8ContextInfo@v8_inspector@@QAE@V?$Local@VContext@v8@@@v8@@HABVStringView@1@@Z)
webkit.lib(V8InspectorString.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::StringBuffer,struct std::default_delete<class v8_inspector::StringBuffer> > __cdecl v8_inspector::StringBuffer::create(class v8_inspector::StringView const &)" (__imp_?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@std@@@std@@ABVStringView@2@@Z) referenced in function "class std::unique_ptr<class v8_inspector::StringBuffer,struct std::default_delete<class v8_inspector::StringBuffer> > __cdecl blink::toV8InspectorStringBuffer(class WTF::StringView const &)" (?toV8InspectorStringBuffer@blink@@YA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@std@@@std@@ABVStringView@WTF@@@Z)
webkit.lib(DOMDebugger.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::RemoteObject,struct std::default_delete<class v8_inspector::protocol::Runtime::API::RemoteObject> > __cdecl v8_inspector::protocol::Runtime::API::RemoteObject::fromJSONString(class v8_inspector::StringView const &)" (__imp_?fromJSONString@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@std@@@std@@ABVStringView@5@@Z) referenced in function "public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::RemoteObject,struct std::default_delete<class v8_inspector::protocol::Runtime::API::RemoteObject> > __cdecl blink::protocol::ValueConversions<class v8_inspector::protocol::Runtime::API::RemoteObject>::parse(class blink::protocol::Value *,class blink::protocol::ErrorSupport *)" (?parse@?$ValueConversions@VRemoteObject@API@Runtime@protocol@v8_inspector@@@protocol@blink@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@std@@@std@@PAVValue@23@PAVErrorSupport@23@@Z)
webkit.lib(IndexedDB.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::RemoteObject,struct std::default_delete<class v8_inspector::protocol::Runtime::API::RemoteObject> > __cdecl v8_inspector::protocol::Runtime::API::RemoteObject::fromJSONString(class v8_inspector::StringView const &)" (__imp_?fromJSONString@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@std@@@std@@ABVStringView@5@@Z)
webkit.lib(Log.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::StackTrace,struct std::default_delete<class v8_inspector::protocol::Runtime::API::StackTrace> > __cdecl v8_inspector::protocol::Runtime::API::StackTrace::fromJSONString(class v8_inspector::StringView const &)" (__imp_?fromJSONString@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@std@@@std@@ABVStringView@5@@Z) referenced in function "public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::StackTrace,struct std::default_delete<class v8_inspector::protocol::Runtime::API::StackTrace> > __cdecl blink::protocol::ValueConversions<class v8_inspector::protocol::Runtime::API::StackTrace>::parse(class blink::protocol::Value *,class blink::protocol::ErrorSupport *)" (?parse@?$ValueConversions@VStackTrace@API@Runtime@protocol@v8_inspector@@@protocol@blink@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@std@@@std@@PAVValue@23@PAVErrorSupport@23@@Z)
webkit.lib(Network.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class std::unique_ptr<class v8_inspector::protocol::Runtime::API::StackTrace,struct std::default_delete<class v8_inspector::protocol::Runtime::API::StackTrace> > __cdecl v8_inspector::protocol::Runtime::API::StackTrace::fromJSONString(class v8_inspector::StringView const &)" (__imp_?fromJSONString@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@std@@@std@@ABVStringView@5@@Z)
electron.exe : fatal error LNK1120: 23 unresolved externals
```
|
https://github.com/electron/electron/issues/8602
|
https://github.com/electron/electron/pull/8607
|
a2ecef26a2264494f41682b606ca42a1362d8b2e
|
e6fe2a93f2dbc4a844be1ebb752659cdebce38bf
| 2017-02-06T21:09:39Z |
c++
| 2017-02-07T00:41:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,601 |
["atom/browser/ui/file_dialog.h", "atom/browser/ui/file_dialog_mac.mm", "docs/api/dialog.md", "lib/browser/api/dialog.js"]
|
Expose NSOpenPanel's resolveAliases property via showOpenDialog API
|
* Electron version: 1.4.15
* Operating system: Mac OS 10.11.6
### Desired behavior
1. Create a symlink to a file:
```sh
ln -s the-existing-file the-alias
```
2. Display the Open File dialog using a new API to preserve symlink paths:
```js
electron.dialog.showOpenDialog({
properties: ['openFile'],
// This is a new flag. I don't know what it should be called.
resolveAliases: false,
}, (selectedPaths) => {
console.log(selectedPaths);
})
```
3. Select the symlink path.
4. See that the callback is called with the symlink paths (`the-alias`).
### Actual behavior
Currently, when a symlink is selected, the callback is always called with the symlink's resolved path.
<!-- What actually happens? -->
### Notes
* The relevant OSX API: [-(NSOpenPanel *) resolvesAliases](https://developer.apple.com/reference/appkit/nsopenpanel/1533625-resolvesaliases?language=objc)
* An OSX bug that prevents the `resolvesAliases` flag from working unless the symlink is the last element of the path: http://www.openradar.me/11398659
|
https://github.com/electron/electron/issues/8601
|
https://github.com/electron/electron/pull/8617
|
266c78b861e3cb4463c7d32b65eacbf7adcf6055
|
8c2cf03f378008baf2cb31050795ac9c929411b0
| 2017-02-06T20:21:02Z |
c++
| 2017-02-13T16:29:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,573 |
["atom/browser/ui/message_box_mac.mm", "docs/api/dialog.md"]
|
Dialog box with `cancelId` but no "Cancel" button can't be dismissed with esc key
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.4.15
* Operating system: macOS 10.12.3
### Expected behavior
<!-- What do you think should happen? -->
Pressing esc on a dialog box with a cancelId should emulate clicking the button with that index.
### Actual behavior
<!-- What actually happens? -->
An alert tone from the OS is produced, as with any unrecognised key press.
### How to reproduce
<!-- For bugs, provide sample code or a repo URL that demos the problem -->
```javascript
require('electron').dialog.showMessageBox({
buttons: ['OK', 'Button text'],
cancelId: 1
});
```
The esc to cancel does work if you change the cancel button text to `Cancel`.
|
https://github.com/electron/electron/issues/8573
|
https://github.com/electron/electron/pull/8733
|
d01250eceb6d567378df1de44b5631246c1a523b
|
b936221b6397a97a2079c1725b04ba3b7c39ef00
| 2017-02-02T22:37:28Z |
c++
| 2017-02-24T17:32:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,563 |
["vendor/brightray"]
|
Crash during runtime and at app quit
|
* Electron version: 1.4.14
* Operating system: macOs Sierra (version 10.12.2)
I have an application that consists mainly in several `webviews` loading different websites (aka a web browser).
Randomly the app crashes during runtime and, a bit more often, when user quits the app.
I have not found a way to constantly reproduce the crash.
I think it appeared when I bumped from electron v1.4.7 to v1.4.14, but I'm not sure.
Here is one of the crash dump I collected:
```
Process: BrowserX [9386]
Path: /Applications/BrowserX.app/Contents/MacOS/BrowserX
Identifier: org.efounders.BrowserX
Version: 0.1.39 (0.1.39)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: BrowserX [9386]
User ID: 501
Date/Time: 2017-01-31 19:48:27.208 +0100
OS Version: Mac OS X 10.12 (16A323)
Report Version: 12
Anonymous UUID: BDA7ED86-D4C8-6965-17C1-A1A773DB8737
Sleep/Wake UUID: C8DE73B9-B6F4-4FFB-8336-55864DFCD8FE
Time Awake Since Boot: 140000 seconds
Time Since Wake: 5000 seconds
System Integrity Protection: enabled
Crashed Thread: 21 Geolocation
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 [0]
VM Regions Near 0:
-->
__TEXT 000000010a8c2000-000000010a8c3000 [ 4K] r-x/rwx SM=COW /Applications/BrowserX.app/Contents/MacOS/BrowserX
Thread 0:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fffcd9a2fde __semwait_signal + 10
1 libsystem_pthread.dylib 0x00007fffcda8c865 pthread_join + 425
2 com.github.electron.framework 0x000000010c6f4963 0x10c497000 + 2480483
3 com.github.electron.framework 0x000000010c6f815e 0x10c497000 + 2494814
4 com.github.electron.framework 0x000000010cee51be 0x10c497000 + 10805694
5 com.github.electron.framework 0x000000010cee533e 0x10c497000 + 10806078
6 com.github.electron.framework 0x000000010cee5766 0x10c497000 + 10807142
7 com.github.electron.framework 0x000000010c69affb 0x10c497000 + 2113531
8 com.github.electron.framework 0x000000010c69aead 0x10c497000 + 2113197
9 com.github.electron.framework 0x000000010cd5df5b 0x10c497000 + 9203547
10 com.github.electron.framework 0x000000010cd5d072 0x10c497000 + 9199730
11 com.github.electron.framework 0x000000010c499007 AtomMain + 71
12 org.efounders.BrowserX 0x000000010a8c2f26 main + 38
13 libdyld.dylib 0x00007fffcd874255 start + 1
Thread 1:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fffcd9a42de read + 10
1 com.github.electron.framework 0x000000010c53e14f 0x10c497000 + 684367
2 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
3 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
4 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
5 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 2:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fffcd99b41a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffcd99a867 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffb88358d4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffb8834d61 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffb88345b4 CFRunLoopRunSpecific + 420
5 com.apple.Foundation 0x00007fffba231cb2 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.github.electron.framework 0x000000010c697e9e 0x10c497000 + 2100894
7 com.github.electron.framework 0x000000010c697674 0x10c497000 + 2098804
8 com.github.electron.framework 0x000000010c6d8fc1 0x10c497000 + 2367425
9 com.github.electron.framework 0x000000010c6f850d 0x10c497000 + 2495757
10 com.github.electron.framework 0x000000010c6f85ff 0x10c497000 + 2495999
11 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
12 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
13 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
14 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 3:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fffcd99b41a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffcd99a867 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffb88358d4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffb8834d61 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffb88345b4 CFRunLoopRunSpecific + 420
5 com.apple.AppKit 0x00007fffb6618e9e _NSEventThread + 205
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 4:: CachePoolWorker1/77071
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 5:: CachePoolWorker2/79363
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 6:: CachePoolWorker3/79875
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 7:: CachePoolWorker4/80387
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 8:: SimpleCacheWorker1/89943
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 9:: SimpleCacheWorker2/91683
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 10:: PowerSaveBlocker
0 libsystem_kernel.dylib 0x00007fffcd99b41a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffcd99a867 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffb88358d4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffb8834d61 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffb88345b4 CFRunLoopRunSpecific + 420
5 com.github.electron.framework 0x000000010c697bff 0x10c497000 + 2100223
6 com.github.electron.framework 0x000000010c697674 0x10c497000 + 2098804
7 com.github.electron.framework 0x000000010c6d8fc1 0x10c497000 + 2367425
8 com.github.electron.framework 0x000000010c6f850d 0x10c497000 + 2495757
9 com.github.electron.framework 0x000000010c6f85ff 0x10c497000 + 2495999
10 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
11 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
12 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
13 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 11:: CachePoolWorker5/106539
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 12:: SimpleCacheWorker3/107119
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 13:: SimpleCacheWorker4/109879
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 14:: SimpleCacheWorker5/111727
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010c6f588e 0x10c497000 + 2484366
3 com.github.electron.framework 0x000000010c6f4ffd 0x10c497000 + 2482173
4 com.github.electron.framework 0x000000010c6f7bbd 0x10c497000 + 2493373
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 libnode.dylib 0x000000010ab67d19 uv_cond_wait + 9
3 libnode.dylib 0x000000010ab5c383 0x10aa09000 + 1389443
4 libnode.dylib 0x000000010ab678e9 0x10aa09000 + 1435881
5 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 16:
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 libnode.dylib 0x000000010ab67d19 uv_cond_wait + 9
3 libnode.dylib 0x000000010ab5c383 0x10aa09000 + 1389443
4 libnode.dylib 0x000000010ab678e9 0x10aa09000 + 1435881
5 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 17:
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 libnode.dylib 0x000000010ab67d19 uv_cond_wait + 9
3 libnode.dylib 0x000000010ab5c383 0x10aa09000 + 1389443
4 libnode.dylib 0x000000010ab678e9 0x10aa09000 + 1435881
5 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 18:
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 libnode.dylib 0x000000010ab67d19 uv_cond_wait + 9
3 libnode.dylib 0x000000010ab5c383 0x10aa09000 + 1389443
4 libnode.dylib 0x000000010ab678e9 0x10aa09000 + 1435881
5 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 19:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fffcd99b41a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffcd99a867 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffb88358d4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffb8834d61 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffb88345b4 CFRunLoopRunSpecific + 420
5 com.apple.CFNetwork 0x00007fffb7a0a144 +[NSURLConnection(Loader) _resourceLoadLoop:] + 313
6 com.apple.Foundation 0x00007fffba24230d __NSThread__start__ + 1243
7 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
8 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
9 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 20:: LevelDBEnv.IDB
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b97a _pthread_cond_wait + 712
2 com.github.electron.framework 0x000000010d79d9a8 0x10c497000 + 19949992
3 com.github.electron.framework 0x000000010d79d909 0x10c497000 + 19949833
4 com.github.electron.framework 0x000000010d79ee90 0x10c497000 + 19955344
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 21 Crashed:: Geolocation
0 com.github.electron.framework 0x000000010d01fad3 0x10c497000 + 12094163
1 com.github.electron.framework 0x000000010d095014 0x10c497000 + 12574740
2 com.github.electron.framework 0x000000010d06e23f 0x10c497000 + 12415551
3 com.github.electron.framework 0x000000010d0e1ca9 0x10c497000 + 12889257
4 com.github.electron.framework 0x000000010d0e202e 0x10c497000 + 12890158
5 com.github.electron.framework 0x000000010d0e59fe 0x10c497000 + 12904958
6 com.github.electron.framework 0x000000010d0e5a6e 0x10c497000 + 12905070
7 com.github.electron.framework 0x000000010c6e7620 0x10c497000 + 2426400
8 com.github.electron.framework 0x000000010c6e75fd 0x10c497000 + 2426365
9 com.github.electron.framework 0x000000010c6e74c0 0x10c497000 + 2426048
10 com.github.electron.framework 0x000000010cdf4797 0x10c497000 + 9820055
11 com.github.electron.framework 0x000000010c609523 brightray::BrowserContext::~BrowserContext() + 275
12 com.github.electron.framework 0x000000010c53a66a atom::AtomBrowserContext::~AtomBrowserContext() + 218
13 com.github.electron.framework 0x000000010c53a689 atom::AtomBrowserContext::~AtomBrowserContext() + 9
14 com.github.electron.framework 0x000000010c53a6ae atom::AtomBrowserContext::~AtomBrowserContext() + 14
15 com.github.electron.framework 0x000000010c536141 base::RefCounted<brightray::BrowserContext>::Release() const + 33
16 com.github.electron.framework 0x000000010c53611d scoped_refptr<atom::AtomBrowserContext>::Release(atom::AtomBrowserContext*) + 13
17 com.github.electron.framework 0x000000010c536101 scoped_refptr<atom::AtomBrowserContext>::~scoped_refptr() + 17
18 com.github.electron.framework 0x000000010c535389 scoped_refptr<atom::AtomBrowserContext>::~scoped_refptr() + 9
19 com.github.electron.framework 0x000000010c5353bc atom::AtomAccessTokenStore::~AtomAccessTokenStore() + 28
20 com.github.electron.framework 0x000000010c5353e9 atom::AtomAccessTokenStore::~AtomAccessTokenStore() + 9
21 com.github.electron.framework 0x000000010c5353fe atom::AtomAccessTokenStore::~AtomAccessTokenStore() + 14
22 com.github.electron.framework 0x000000010cee6ede 0x10c497000 + 10813150
23 com.github.electron.framework 0x000000010c6f861c 0x10c497000 + 2496028
24 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
25 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
26 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
27 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 22:: WorkerPool/134763
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b9b3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010c6e794b 0x10c497000 + 2427211
3 com.github.electron.framework 0x000000010c6fa26d 0x10c497000 + 2503277
4 com.github.electron.framework 0x000000010c6fa693 0x10c497000 + 2504339
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 23:: WorkerPool/146807
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b9b3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010c6e794b 0x10c497000 + 2427211
3 com.github.electron.framework 0x000000010c6fa26d 0x10c497000 + 2503277
4 com.github.electron.framework 0x000000010c6fa693 0x10c497000 + 2504339
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 24:: WorkerPool/46811
0 libsystem_kernel.dylib 0x00007fffcd9a2c8a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffcda8b9b3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010c6e794b 0x10c497000 + 2427211
3 com.github.electron.framework 0x000000010c6fa26d 0x10c497000 + 2503277
4 com.github.electron.framework 0x000000010c6fa693 0x10c497000 + 2504339
5 com.github.electron.framework 0x000000010c6f4a17 0x10c497000 + 2480663
6 libsystem_pthread.dylib 0x00007fffcda8aabb _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffcda8aa07 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffcda8a231 thread_start + 13
Thread 25:
0 libsystem_pthread.dylib 0x00007fffcda8a214 start_wqthread + 0
1 ??? 0x000000010c0ffa00 0 + 4497340928
Thread 26:
0 libsystem_pthread.dylib 0x00007fffcda8a214 start_wqthread + 0
Thread 27:
0 libsystem_kernel.dylib 0x00007fffcd9a34e6 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fffcda8a632 _pthread_wqthread + 1023
2 libsystem_pthread.dylib 0x00007fffcda8a221 start_wqthread + 13
Thread 28:
0 libsystem_pthread.dylib 0x00007fffcda8a214 start_wqthread + 0
Thread 21 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fb0c246e7b0 rcx: 0x0000000000000001 rdx: 0x0000000000000001
rdi: 0x000000000000010a rsi: 0x000060800083f9c8 rbp: 0x0000700013447a10 rsp: 0x0000700013447990
r8: 0x0000608000363510 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x00007fb0c2763001
r12: 0x0000600000135810 r13: 0x000000000001d297 r14: 0x00007000134479d8 r15: 0x00007000134479b0
rip: 0x000000010d01fad3 rfl: 0x0000000000010216 cr2: 0x00007fea7a0290a0
Logical CPU: 0
Error Code: 0x02000170
Trap Number: 133
Binary Images:
0x10a8c2000 - 0x10a8c2ff7 +org.efounders.BrowserX (0.1.39 - 0.1.39) <32397E1E-4249-3B36-99B2-C1B61154B991> /Applications/BrowserX.app/Contents/MacOS/BrowserX
0x10a8c7000 - 0x10a8e1fff +com.github.Squirrel (1.0 - 1) <4C459C36-AFB6-3B8A-8FEC-76C192C17E30> /Applications/BrowserX.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x10a906000 - 0x10a969ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/BrowserX.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10a9e0000 - 0x10a9f4fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/BrowserX.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x10aa09000 - 0x10b773ffb +libnode.dylib (0) <46B87F18-0CC2-38F4-9E4E-4D4D789EAF74> /Applications/BrowserX.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib
0x10bc8f000 - 0x10bec6fe7 +libffmpeg.dylib (0) <04C1AE74-C50E-315A-AE5D-05FBDF91854A> /Applications/BrowserX.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x10c070000 - 0x10c0aefff com.apple.audio.midi.CoreMIDI (1.10 - 88) <81393A2D-184B-3847-802A-B8BCF6D1080C> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10c0d7000 - 0x10c0f0ffb libexpat.1.dylib (15) <617B8B7A-A0AB-37D6-AFCA-F90F7F14E455> /usr/lib/libexpat.1.dylib
0x10c3b3000 - 0x10c3b7fff com.apple.audio.AppleHDAHALPlugIn (276.26 - 276.26) <E792FB29-7228-39E4-AA4E-9739F3E54800> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x10c40c000 - 0x10c4491c7 dyld (421.1) <A525EAEA-AF86-30C2-B360-3D093B4F0828> /usr/lib/dyld
0x10c497000 - 0x10f93df53 +com.github.electron.framework (0) <3A9DB52D-4C5F-3933-B4BF-D0B40E3EC804> /Applications/BrowserX.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x112694000 - 0x1126b3ff7 com.apple.cmio.DAL.AppleCamera (400.5.57 - AppleCameraDeviceAbstractionLayer-5.57.0) <F1506A9C-3470-385A-899D-31601A30DD09> /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/MacOS/AppleCamera
0x1139ff000 - 0x113a1bfff com.apple.security.csparser (3.0 - 57740.1.18) <59FC4D03-99ED-3543-B26B-E466B074EAF9> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x114d4d000 - 0x1152adfff com.apple.driver.AppleIntelBDWGraphicsGLDriver (10.18.65 - 10.1.8) <6CBAD16A-FF7C-3B5D-ABD3-5BAF0548FEA5> /System/Library/Extensions/AppleIntelBDWGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsGLDriver
0x1154c7000 - 0x115544fff com.apple.driver.AppleIntelBDWGraphicsMTLDriver (10.18.65 - 10.1.8) <1583A20D-E1C2-370A-9D6D-6442CD5191F3> /System/Library/Extensions/AppleIntelBDWGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsMTLDriver
0x11ecbf000 - 0x11ee27fff com.apple.audio.units.Components (1.14 - 1.14) <695D3410-4177-3CC3-A419-1127ECC911C4> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x7fffb3660000 - 0x7fffb3998fff com.apple.RawCamera.bundle (7.00 - 874) <99AF1865-BCDD-3313-85BF-E246745201F0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fffb51b5000 - 0x7fffb5373fff com.apple.avfoundation (2.0 - 1183.3) <E6DCAB50-ECD4-3645-8A93-D14F14092DC4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fffb5374000 - 0x7fffb5417ff7 com.apple.audio.AVFAudio (1.0 - ???) <18E472FC-5AD7-33B8-8D46-49D5AC2DB13A> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fffb54aa000 - 0x7fffb54aafff com.apple.Accelerate (1.11 - Accelerate 1.11) <D700DBDF-69AE-37A2-B9C7-0961CF0B6841> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fffb54ab000 - 0x7fffb54c2ffb libCGInterfaces.dylib (331.4) <03835456-F519-3B47-85F6-426BF7B05EE3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fffb54c3000 - 0x7fffb59dcfeb com.apple.vImage (8.1 - ???) <A1D77DB1-2893-3A18-8986-BD78E441D89D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fffb59dd000 - 0x7fffb5b4dff3 libBLAS.dylib (1185) <C7E42BBE-2337-3AEF-9C45-A2F2CB1A5B3E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fffb5b4e000 - 0x7fffb5b62ffb libBNNS.dylib (14) <CFDEE88D-E002-347C-BC68-83099651585B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fffb5b63000 - 0x7fffb5f59fef libLAPACK.dylib (1185) <2E8201CB-9A41-3D65-853E-841917FCE77B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fffb5f5a000 - 0x7fffb5f70fff libLinearAlgebra.dylib (1185) <8CC29DE1-A231-3D5E-B5F1-DCC309036FE0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fffb5f71000 - 0x7fffb5f77fff libQuadrature.dylib (3) <120F6228-A3D4-3184-89D7-785ADC2AC715> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fffb5f78000 - 0x7fffb5f8cff7 libSparseBLAS.dylib (1185) <C35235B7-CFA6-39A7-BD6E-79F4D9CAFD36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fffb5f8d000 - 0x7fffb6114fe7 libvDSP.dylib (600) <F59348AA-E1D3-3A27-8AB5-F546D38BFB76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fffb6115000 - 0x7fffb61c7ffb libvMisc.dylib (600) <70D4B548-47EE-3C6B-A93B-3EA6B60701E0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fffb61c8000 - 0x7fffb61c8fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A395B521-8E54-30F2-B4FE-355D68900DAF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fffb6485000 - 0x7fffb715cff3 com.apple.AppKit (6.9 - 1504) <5524F97F-FB11-3556-8AC4-FF634C6CCCB7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fffb716e000 - 0x7fffb716efff com.apple.ApplicationServices (48 - 48) <3E1395EA-C661-3318-9B87-9857BB81021B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fffb716f000 - 0x7fffb71ddff7 com.apple.ApplicationServices.ATS (377 - 422) <521E41BF-D495-3233-B6BF-C0B83DD1A8C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fffb7277000 - 0x7fffb73a5fff libFontParser.dylib (194) <CDC6A0AA-E6AC-315B-AFBF-011F64548911> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fffb73a6000 - 0x7fffb73f0fff libFontRegistry.dylib (196) <3B8B0E78-2B30-3F18-B7D3-BE4E96F6BAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fffb744d000 - 0x7fffb747ffff libTrueTypeScaler.dylib (194) <E8B9E8E7-1F7A-3700-895C-501C12EDD001> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fffb74eb000 - 0x7fffb7595ff7 com.apple.ColorSync (4.12.0 - 502) <C86F8032-83DD-34EB-A4CB-87E96F25CF1C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fffb7596000 - 0x7fffb75e6fff com.apple.HIServices (1.22 - 589) <3167EF9C-F121-39EF-AAE2-7700E7128426> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fffb75e7000 - 0x7fffb75f6ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <47D1A017-91A4-37F3-93E0-3923CD6ED2DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fffb75f7000 - 0x7fffb7644fff com.apple.print.framework.PrintCore (12 - 491) <B7CC15C1-AF50-37F3-8AF6-65F8CDC323F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fffb7645000 - 0x7fffb7680fff com.apple.QD (3.12 - 310) <8F718290-DD82-36CE-9AF0-EFB6D31A49F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fffb7681000 - 0x7fffb768cff7 com.apple.speech.synthesis.framework (6.0.15 - 6.0.15) <23EA6076-ECDF-3A50-81E7-3CE6451DC8C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fffb768d000 - 0x7fffb7899fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <EDDC86C8-92F3-34C6-A5C1-A176ADA724C3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fffb789a000 - 0x7fffb789afff com.apple.audio.units.AudioUnit (1.14 - 1.14) <AA9DB0D2-3B2F-3366-B451-DD9E89038F6F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fffb7a03000 - 0x7fffb7d86fff com.apple.CFNetwork (807.0.4 - 807.0.4) <A338A213-4FFF-3317-B4DB-84735C63C507> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fffb7da0000 - 0x7fffb7da0fff com.apple.Carbon (154 - 157) <AB71A31F-5B15-3BF5-8532-591EACD07B21> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fffb7da1000 - 0x7fffb7da4fff com.apple.CommonPanels (1.2.6 - 98) <DDA2DF0B-86E7-34B6-B688-D7371DBC8A63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fffb7da5000 - 0x7fffb80a8fff com.apple.HIToolbox (2.1.1 - 855) <AA4E2957-6B2D-3822-881C-0F64222F9578> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fffb80a9000 - 0x7fffb80acff7 com.apple.help (1.3.5 - 49) <27C5F9FE-838F-3807-A4AC-D99470185B10> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fffb80ad000 - 0x7fffb80b2fff com.apple.ImageCapture (9.0 - 9.0) <E3E757FD-4060-33A4-A2AC-85EFBD987FCE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fffb80b3000 - 0x7fffb814aff3 com.apple.ink.framework (10.9 - 219) <B44BA36D-7549-3EB2-8CF6-E171885194FB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fffb814b000 - 0x7fffb8165fff com.apple.openscripting (1.7 - 172) <B204BF70-C4AA-3699-8493-66E6645A92A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fffb8166000 - 0x7fffb8167ff3 com.apple.print.framework.Print (12 - 267) <CA7E9448-0903-34C8-AAF6-9070B52BF70E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fffb8168000 - 0x7fffb816aff7 com.apple.securityhi (9.0 - 55006) <856F4FB9-AAF2-3FC2-BE19-E7AB494232CC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fffb816b000 - 0x7fffb8171ff7 com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <A20B0F7B-C32A-3FF1-BB75-BAC0EE4EF889> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fffb8251000 - 0x7fffb8251fff com.apple.Cocoa (6.11 - 22) <5EEB0A26-F1C2-3D57-8441-52C0B80C2A6A> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fffb8384000 - 0x7fffb8414ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <0352D931-596B-3AFE-B5C6-5925CF9F870E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fffb8415000 - 0x7fffb8428ff3 com.apple.CoreBluetooth (1.0 - 1) <73A2B185-70E4-3535-A653-E1BC74584E55> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fffb8429000 - 0x7fffb871fffb com.apple.CoreData (120 - 752.2) <CCDCE896-CD36-3483-8E04-C513433BDDC5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fffb8720000 - 0x7fffb87acfff com.apple.CoreDisplay (1.0 - 1) <F10E2F1A-FA51-3256-BCCE-34FF30AB1E3A> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fffb87ad000 - 0x7fffb8c46fef com.apple.CoreFoundation (6.9 - 1348.1) <4F7826EC-CC36-38B4-A8F3-DC57BF00EE9B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fffb8c47000 - 0x7fffb92c5fff com.apple.CoreGraphics (2.0 - 1070) <ED82EAB8-A6E9-30C5-A36E-0F1597A259EF> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fffb92c6000 - 0x7fffb9505ff7 com.apple.CoreImage (12.0.0 - 451) <84C71E9C-5231-342F-94B1-2BB6860E8AD3> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fffb9563000 - 0x7fffb9613ff7 com.apple.CoreMedia (1.0 - 1903.7) <5FE3B4CC-EC1A-38FE-96FA-FFD419229F3E> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fffb9614000 - 0x7fffb965fff7 com.apple.CoreMediaIO (801.0 - 4922) <2813BA18-E24C-3CFB-8B34-73575DFDF0BC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fffb9660000 - 0x7fffb9660fff com.apple.CoreServices (775.8 - 775.8) <C36F7F47-D585-32F2-8A6F-7711935CDFD6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fffb9661000 - 0x7fffb96b2ff7 com.apple.AE (712 - 712) <0EF17D7E-6BA4-3555-BC38-9BD0CC5B82A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fffb96b3000 - 0x7fffb998efff com.apple.CoreServices.CarbonCore (1159 - 1159) <837B7ECF-7E62-3210-988C-63D7AB4EAA88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fffb998f000 - 0x7fffb99c2fff com.apple.DictionaryServices (1.2 - 274) <302B8678-D057-3CF8-ACA7-7424A4A6A00A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fffb99c3000 - 0x7fffb99cbffb com.apple.CoreServices.FSEvents (1230 - 1230) <8836E7D0-844F-36F9-9601-B630BB82336B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fffb99cc000 - 0x7fffb9b37fff com.apple.LaunchServices (775.8 - 775.8) <6E7CE1DA-27A4-3B48-A8E3-F2AA868ADD7C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fffb9b38000 - 0x7fffb9be8ffb com.apple.Metadata (10.7.0 - 1075) <9EDF10CF-1755-346A-A3C9-97642C443A58> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fffb9be9000 - 0x7fffb9c48fff com.apple.CoreServices.OSServices (775.8 - 775.8) <FCF1334F-D2D7-3C5A-A8FE-C173C5EDE586> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fffb9c49000 - 0x7fffb9cb9fff com.apple.SearchKit (1.4.0 - 1.4.0) <F1B3EF8D-E820-317C-AC7F-8F056C246874> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fffb9cba000 - 0x7fffb9d00ff7 com.apple.coreservices.SharedFileList (38 - 38) <6C5A3FBB-9502-3725-AC3A-AE7B1528BBD4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fffb9d8d000 - 0x7fffb9ed8ff7 com.apple.CoreText (352.0 - 544) <064B53E8-CD5A-3D1B-81DF-498A659FC20A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fffb9ed9000 - 0x7fffb9f0efff com.apple.CoreVideo (1.8 - 234.0) <48C31E93-87C2-31F4-97E7-9E54C1EA8E7D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fffb9f0f000 - 0x7fffb9f80ffb com.apple.framework.CoreWLAN (11.0 - 1200.25.1) <F46EF4A2-C348-3F76-A1C2-B8A84C17FE2B> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fffba07b000 - 0x7fffba080fff com.apple.DiskArbitration (2.7 - 2.7) <566D5C06-13E8-3638-B2EC-2B834D5F04F1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fffba20f000 - 0x7fffba5b6ffb com.apple.Foundation (6.9 - 1349) <08A463B1-296E-3AC1-B8D3-01A75B0785A8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fffba5e2000 - 0x7fffba613ff3 com.apple.GSS (4.0 - 2.0) <B30A0B99-AFDE-3BF8-A04F-761A75A6A3B1> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fffba6c7000 - 0x7fffba76affb com.apple.Bluetooth (5.0.0 - 5.0.0f18) <00417775-D746-32C1-9598-CE8716DFBECD> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fffba76b000 - 0x7fffba800fff com.apple.framework.IOKit (2.0.2 - 1324.1.7) <10BDCD1E-0463-3C53-BF11-C9A0919C1588> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fffba801000 - 0x7fffba807ffb com.apple.IOSurface (152 - 152) <558D4451-2D9D-3D47-B3A5-E7C18DF53F1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fffba808000 - 0x7fffba85aff3 com.apple.ImageCaptureCore (7.0 - 7.0) <EF8DF81D-3D82-3202-BE75-E49D38EC105D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fffba85b000 - 0x7fffba9b1fef com.apple.ImageIO.framework (3.3.0 - 1570.1) <AB0EB12E-A175-3901-A50F-3D9DF7494DFD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fffba9b2000 - 0x7fffba9b6fff libGIF.dylib (1570.1) <118942D5-4B78-32AF-BC57-AF1EFAFADE44> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fffba9b7000 - 0x7fffbaaa7fff libJP2.dylib (1570.1) <12D6A8AE-58CA-342B-884B-C39DF672EFD1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fffbaaa8000 - 0x7fffbaacbffb libJPEG.dylib (1570.1) <FD9BB4E5-EB4B-3ECF-866A-2B3C6BB1842C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fffbaacc000 - 0x7fffbaaf3ff7 libPng.dylib (1570.1) <1F8E3EB7-BD80-3E8B-9BD4-213EBDB9BD07> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fffbaaf4000 - 0x7fffbaaf6ff3 libRadiance.dylib (1570.1) <0136CEAF-70C5-3B3F-A3A9-C79D6C95CD4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fffbaaf7000 - 0x7fffbab50ff3 libTIFF.dylib (1570.1) <BE6B299B-6481-36F8-9A18-FD6628DC4D54> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fffbac70000 - 0x7fffbb716ff7 com.apple.JavaScriptCore (12602 - 12602.1.50.0.5) <D701E578-C347-392D-BB90-1B144DAAAEEB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fffbb717000 - 0x7fffbb730ff7 com.apple.Kerberos (3.0 - 1) <49DCBE1A-130C-3FBF-AAEA-AF9A518913AC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fffbb9aa000 - 0x7fffbb9b0fff com.apple.MediaAccessibility (1.0 - 97.1.1) <EE1825C7-3B58-32F8-9F5F-B7172452BB01> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fffbb9c6000 - 0x7fffbbf13fff com.apple.MediaToolbox (1.0 - 1903.7) <37363406-481C-3DDD-A61F-9E2153A3660B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fffbbf14000 - 0x7fffbbf6bff7 com.apple.Metal (85.82 - 85.82) <CDC847A6-F1F6-3661-8981-180F2A485092> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fffbc681000 - 0x7fffbc689fff com.apple.NetFS (6.0 - 4.0) <6614F9B8-0861-338B-8FF0-8E402F96141C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fffbc85d000 - 0x7fffbc865ff7 libcldcpuengine.dylib (2.8.4) <F15C17F0-3342-36BD-A28E-7AC44B87BF8C> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fffbca2e000 - 0x7fffbca7cff3 com.apple.opencl (2.8.6 - 2.8.6) <DA3164B7-EB48-3F68-A40F-CD9B433E385F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fffbca7d000 - 0x7fffbca96ffb com.apple.CFOpenDirectory (10.12 - 194) <BDD22B3E-4149-366A-A974-942280861DD4> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fffbca97000 - 0x7fffbcaa2ff7 com.apple.OpenDirectory (10.12 - 194) <E1125140-E42C-369C-8DC8-D0935767B275> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fffbcaa3000 - 0x7fffbcaa5fff libCVMSPluginSupport.dylib (12.4.2.1) <5A7CBDC5-297E-30E0-8951-2F3DAFD0027E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fffbcaa6000 - 0x7fffbcaa9ff7 libCoreFSCache.dylib (148) <3297ACE0-B9D8-3821-8685-2619B4234621> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fffbcaaa000 - 0x7fffbcaadfff libCoreVMClient.dylib (148) <B4299590-02BA-3130-98EA-A2D3A53852E1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fffbcaae000 - 0x7fffbcab6ffb libGFXShared.dylib (12.4.2.1) <3CBE90E5-6472-3C4C-825D-7567A5652115> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fffbcab7000 - 0x7fffbcac2fff libGL.dylib (12.4.2.1) <E68C6C85-3B98-3525-9279-3296977FBF9F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fffbcac3000 - 0x7fffbcaffff7 libGLImage.dylib (12.4.2.1) <50C7DE05-73CB-3D21-BB93-31C384EB6199> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fffbcb00000 - 0x7fffbcc76ffb libGLProgrammability.dylib (12.4.2.1) <2B17044B-CDB6-38F7-BA1F-9ED1A078481A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fffbcc77000 - 0x7fffbccb7ff3 libGLU.dylib (12.4.2.1) <D5DB68EC-751F-34D1-BCEB-2B86D560E243> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fffbd61f000 - 0x7fffbd62dfff com.apple.opengl (12.4.2 - 12.4.2) <06F5BF0B-BD03-361D-9D7B-626517E4F761> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fffbd62e000 - 0x7fffbd7d4fff GLEngine (12.4.2.1) <8FFA4B17-F02A-3D7A-ACA9-D156E4E43B4D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fffbd7d5000 - 0x7fffbd7ffffb GLRendererFloat (12.4.2.1) <82826589-22A1-312C-9C4E-FA45F4D8D976> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fffbd896000 - 0x7fffbd9ddff7 com.apple.QTKit (7.7.3 - 2974) <DD63A171-2DE6-3210-89B0-BD5991539755> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fffbd9de000 - 0x7fffbdc49fff com.apple.imageKit (3.0 - 1016) <A3D24043-95CD-3A40-9850-83E02BDF56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fffbdc4a000 - 0x7fffbdd03ff7 com.apple.PDFKit (1.0 - 1) <32ED1D9C-B9AB-337B-93E5-9DDA8E68F6FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fffbdd04000 - 0x7fffbe22afff com.apple.QuartzComposer (5.1 - 351) <10A260C7-A44C-3C64-BF68-FC0FCCD08489> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fffbe22b000 - 0x7fffbe24effb com.apple.quartzfilters (1.10.0 - 1.10.0) <9ECD9812-151A-300D-8F37-F7FEBE67B8BC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fffbe24f000 - 0x7fffbe33cff7 com.apple.QuickLookUIFramework (5.0 - 720) <7DBE40A6-3F2F-3AF0-ACF4-8C95B78346C5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fffbe33d000 - 0x7fffbe33dfff com.apple.quartzframework (1.5 - 21) <09455972-8A33-3D61-B193-BA7E7CF984CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fffbe33e000 - 0x7fffbe538ff7 com.apple.QuartzCore (1.11 - 449.39) <B6BEEBAC-2923-3BA6-8DBD-621A2B0E51C1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fffbe539000 - 0x7fffbe58eff7 com.apple.QuickLookFramework (5.0 - 720) <F54FCBB5-53DD-351D-AAEB-2470CEB30017> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fffbe58f000 - 0x7fffbe5a2ff7 com.apple.SafariServices.framework (12602 - 12602.1.50.0.10) <165467B5-1EE7-325A-8847-0929DC0B81E4> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fffbea9e000 - 0x7fffbedb9fff com.apple.security (7.0 - 57740.1.18) <AF5E42F1-B513-3410-A5BE-1EC9CBAF8452> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fffbedba000 - 0x7fffbee30ff7 com.apple.securityfoundation (6.0 - 55132.1.1) <259D4B70-0F8C-3818-99E7-3EBEAA18DE1B> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fffbee5a000 - 0x7fffbee5dff3 com.apple.xpc.ServiceManagement (1.0 - 1) <6A9EA339-BB6A-3DD9-BF08-00B8C0262839> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fffbf1e2000 - 0x7fffbf253ff7 com.apple.SystemConfiguration (1.14 - 1.14) <C7F21776-2CCE-327B-B155-7A5948277BD6> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fffbf254000 - 0x7fffbf5ffff7 com.apple.VideoToolbox (1.0 - 1903.7) <C0044876-9800-3CCA-B7D3-50B92077EF4D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fffc1861000 - 0x7fffc187cff3 com.apple.AppContainer (4.0 - 307.1.1) <05373DD5-5892-3542-B178-C140F1AB6886> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fffc187d000 - 0x7fffc188aff3 com.apple.AppSandbox (4.0 - 307.1.1) <20324EFC-70DC-389D-9C27-37DCAA7E07CC> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fffc188b000 - 0x7fffc18adffb com.apple.framework.Apple80211 (12.0 - 1200.33) <06F8EA45-5E43-3744-BF41-BA86B8BBB5CF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fffc18ae000 - 0x7fffc18bdfdb com.apple.AppleFSCompression (88 - 1.0) <B6E2148F-BFBF-3F1B-A7DF-0F39190B4C20> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fffc19a8000 - 0x7fffc1a3397f com.apple.AppleJPEG (1.0 - 1) <B4C3209B-58A5-359F-A898-F61B6C40E5E9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fffc1a6c000 - 0x7fffc1a6fff3 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <6FF50E26-5BDA-3421-BDAE-B57AE6E4F6AC> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fffc1a70000 - 0x7fffc1ac2fff com.apple.AppleVAFramework (5.0.34 - 5.0.34) <193400A6-B326-3911-BB4F-6C49C1E5FA8F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fffc1e4f000 - 0x7fffc1ecdff7 com.apple.backup.framework (1.8 - 1.8) <E2888B63-F43C-367F-B23F-7D9F9BD64401> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fffc2ae7000 - 0x7fffc2b0effb com.apple.ChunkingLibrary (172 - 172) <83E91936-305D-32A4-A256-5582B96B1852> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fffc342e000 - 0x7fffc3437ffb com.apple.CommonAuth (4.0 - 2.0) <D9958C57-9E97-33F5-A21C-B454FDB11548> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fffc35b8000 - 0x7fffc3995fe7 com.apple.CoreAUC (224.0.0 - 224.0.0) <8DF6075A-0711-33A9-9031-6FDA22E85C4F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fffc3996000 - 0x7fffc39c6fff com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <5E1B0512-E50B-3534-99EF-AD15E601877A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fffc3b53000 - 0x7fffc3b64fff com.apple.CoreEmoji (1.0 - 40) <F3D73BF8-6D48-3B1F-BBE6-EE927E725E92> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fffc3c19000 - 0x7fffc3c2ffff com.apple.CoreMediaAuthoring (2.2 - 955) <3B877988-3823-3A84-A083-CE0B5B54F791> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fffc3c36000 - 0x7fffc3cc6ffb com.apple.CorePDF (4.0 - 4) <42FD0781-A19C-3E36-BFDA-DAEAFB3A3115> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fffc3e3d000 - 0x7fffc3e6dff3 com.apple.CoreServicesInternal (276 - 276) <CCB21255-89DC-3F53-A6D6-8FA8F693C837> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fffc40f6000 - 0x7fffc4180fff com.apple.CoreSymbolication (61050) <BAC8D20F-4DC6-32EE-91FE-BF08E930420A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fffc4181000 - 0x7fffc42bbfef com.apple.coreui (2.1 - 424.1) <B9B92DB5-1C6C-306F-BD29-B1F82EC95283> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fffc42bc000 - 0x7fffc435bffb com.apple.CoreUtils (4.3 - 430.70) <87BEB880-3D71-3251-B51E-FF0A42DFC065> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fffc43ab000 - 0x7fffc4410ff3 com.apple.framework.CoreWiFi (12.0 - 1200.25.1) <D7C870BE-55DE-34AF-8941-D42696D505B1> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fffc4411000 - 0x7fffc441cfff com.apple.CrashReporterSupport (10.12 - 815) <10C3797E-DD63-303B-B901-1C52A502D2F8> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fffc44c2000 - 0x7fffc4539ff3 com.apple.datadetectorscore (7.0 - 539) <C3F6F52B-A1AD-36FA-9BF9-C8D0E147F0A3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fffc4573000 - 0x7fffc45b2fff com.apple.DebugSymbols (137 - 137) <B229F3F7-250B-3151-8048-CEA7BF80FA52> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fffc45b3000 - 0x7fffc46c4ff7 com.apple.desktopservices (1.11 - 1.11) <494E239D-706F-350B-9481-2A8ECEEDBD8B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fffc4803000 - 0x7fffc480dfff com.apple.DisplayServicesFW (3.1 - 380) <79733A44-F60D-3EC0-BBC7-C4AEC5649D8F> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fffc498f000 - 0x7fffc4dc0ff7 com.apple.vision.FaceCore (3.3.2 - 3.3.2) <DEB42099-6927-332C-8D3E-D45096318D25> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fffc60f9000 - 0x7fffc60f9fff libmetal_timestamp.dylib (600.0.48.25) <348D32E6-AD49-36DC-A0DE-5A44B2699FFA> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fffc6106000 - 0x7fffc6111ff3 libGPUSupportMercury.dylib (12.4.2.1) <A720545E-40F3-3FE0-A8B3-067D49083417> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fffc63c3000 - 0x7fffc63dfff7 com.apple.GenerationalStorage (2.0 - 259) <43D40063-BD46-3008-8992-FF092B7C9A58> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fffc6ad1000 - 0x7fffc6b47fff com.apple.Heimdal (4.0 - 2.0) <18C127D7-9C61-3C5B-8C6F-7953760D2674> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fffc7159000 - 0x7fffc7160ffb com.apple.IOAccelerator (288.13 - 288.13) <F77E27C3-20DD-3CE5-9D0A-6C89A997080E> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fffc7162000 - 0x7fffc7176ff3 com.apple.IOPresentment (1.0 - 25) <40934217-996A-3DDB-A8C4-484CA0F0222B> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fffc7177000 - 0x7fffc7199ff7 com.apple.IconServices (74.1 - 74.1) <F7B83970-4A72-3186-BBB3-90FA86C3E263> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fffc7234000 - 0x7fffc7244ff3 com.apple.IntlPreferences (2.0 - 216) <43FFAB0C-4124-3231-B0CB-137CCB0A53AF> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fffc727b000 - 0x7fffc742ffff com.apple.LanguageModeling (1.0 - 123) <10152D7F-C7C0-34AA-A295-D712D16C76E6> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fffc7a66000 - 0x7fffc7a69fff com.apple.Mangrove (1.0 - 1) <05039E9F-9C07-375B-A940-D90D455A2EC2> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fffc7cc5000 - 0x7fffc7d3dfef com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <FAFA0DF5-4226-3867-A2E2-CAB889DC4490> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fffc7ea3000 - 0x7fffc7eaeff7 com.apple.MobileKeyBag (2.0 - 1.0) <7ECC9D0A-246F-3D7E-9E78-16DBA0B55F49> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fffc7ebf000 - 0x7fffc7ee5fff com.apple.MultitouchSupport.framework (367.6 - 367.6) <32D8588A-29BD-3A23-92B2-05C013DA5BC5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fffc7f92000 - 0x7fffc7f9cfff com.apple.NetAuth (6.0 - 6.0) <D57D5888-0290-3295-A1C4-D673D4DCB497> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fffc873d000 - 0x7fffc877eff7 com.apple.PerformanceAnalysis (1.145 - 145) <9DF1FCCC-7EBF-3213-B77A-0C3D3B7CF7AF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fffc8e0e000 - 0x7fffc8e28fff com.apple.ProtocolBuffer (1 - 249) <D8B7694B-B598-3728-8583-9C4CC0F05B64> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fffc8e29000 - 0x7fffc8e39ffb com.apple.QuickLookThumbnailing (1.0 - 1) <DD5F14E6-A8A8-3EA8-96A3-4C84092BC18F> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fffc8e42000 - 0x7fffc8e65ff3 com.apple.RemoteViewServices (2.0 - 124) <280DB828-4613-3DF8-ACBA-C91989B64347> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fffc9a94000 - 0x7fffc9a97ff7 com.apple.SecCodeWrapper (4.0 - 307.1.1) <64F951CB-A975-32F0-BC60-1E839E607FCB> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fffc9b25000 - 0x7fffc9ba0fff com.apple.Sharing (659.1.6 - 659.1.6) <C217107C-CD4B-311D-9FBA-7435B1F6186F> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fffc9bc1000 - 0x7fffc9e13fff com.apple.SkyLight (1.600.0 - 100) <6B9F1B65-AA33-3AA6-8EA2-DB98CC74E37F> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fffc9fed000 - 0x7fffc9ff9fff com.apple.SpeechRecognitionCore (3.0.15 - 3.0.15) <BE386037-4B61-341F-80E2-5D8B5B50C8BC> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fffca6dc000 - 0x7fffca748ff3 com.apple.Symbolication (61080.2) <0F183B36-0BCF-3330-8C68-4A521A142919> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fffcab3f000 - 0x7fffcab45ff7 com.apple.TCC (1.0 - 1) <CEE9F9F9-2A24-3F60-BE73-4703D85E307C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fffcabd1000 - 0x7fffcad84ff3 com.apple.TextureIO (1.31 - 1.31) <9E6E91C7-76DC-3C12-9629-494084792476> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fffcadf8000 - 0x7fffcadf9fff com.apple.TrustEvaluationAgent (2.0 - 28) <6793B664-C4FC-3CD4-B0E7-25B9933391AC> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fffcadfa000 - 0x7fffcaf89ffb com.apple.UIFoundation (1.0 - 489) <0CD14719-FC52-3AC5-87EF-775437927990> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fffcb9e4000 - 0x7fffcba93ff7 com.apple.ViewBridge (265.1 - 265.1) <21855FE3-F19D-3E3F-9500-BFC811DA75C6> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fffcbebb000 - 0x7fffcbec1fff com.apple.XPCService (2.0 - 1) <BC3FCE26-6219-3316-949F-37F7005C9A0F> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fffcbf92000 - 0x7fffcbf94ffb com.apple.loginsupport (1.0 - 1) <03B57D6F-C210-32BC-B384-5B0E95660283> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fffcbfe9000 - 0x7fffcc004ff7 libCRFSuite.dylib (34) <BACC371B-6153-36B5-BC54-3BCF26FBB221> /usr/lib/libCRFSuite.dylib
0x7fffcc005000 - 0x7fffcc010fff libChineseTokenizer.dylib (21) <09E74E18-ADB2-30D2-A858-13691CB1186C> /usr/lib/libChineseTokenizer.dylib
0x7fffcc0a2000 - 0x7fffcc0a3ff3 libDiagnosticMessagesClient.dylib (102) <422911A4-E273-3E88-BFC4-DF6470E48242> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fffcc0a4000 - 0x7fffcc2b7fff libFosl_dynamic.dylib (16.37) <3EA1C7EE-4A6C-3B09-BCA7-81A074B24013> /usr/lib/libFosl_dynamic.dylib
0x7fffcc2d3000 - 0x7fffcc2dafff libMatch.1.dylib (27) <5D52A207-E2AF-3E05-8C51-91C1D82FCEE8> /usr/lib/libMatch.1.dylib
0x7fffcc2db000 - 0x7fffcc2dbfff libOpenScriptingUtil.dylib (172) <D025E180-BB3B-3FFA-98FC-B6835354D723> /usr/lib/libOpenScriptingUtil.dylib
0x7fffcc2dc000 - 0x7fffcc2dfff7 libScreenReader.dylib (477.1.5) <88D484EC-7589-324B-890D-799F27DF0FB3> /usr/lib/libScreenReader.dylib
0x7fffcc2e0000 - 0x7fffcc2e1ff3 libSystem.B.dylib (1238) <168B3C56-081B-3998-9A44-681EB4C6828F> /usr/lib/libSystem.B.dylib
0x7fffcc34d000 - 0x7fffcc378ffb libarchive.2.dylib (41.1.1) <C4F76D18-8484-3779-AE80-14F27E57ABB5> /usr/lib/libarchive.2.dylib
0x7fffcc379000 - 0x7fffcc3edfff libate.dylib (1.12.12) <DD989482-B873-3094-97BB-2B5AE8D3B544> /usr/lib/libate.dylib
0x7fffcc3f1000 - 0x7fffcc3f1ff3 libauto.dylib (187) <5BBF6A00-CC76-389D-84E7-CA88EDADE683> /usr/lib/libauto.dylib
0x7fffcc3f2000 - 0x7fffcc402ff3 libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
0x7fffcc403000 - 0x7fffcc411ff7 libbz2.1.0.dylib (38) <6FD3B63F-0F86-3A25-BD5B-E243F58792C9> /usr/lib/libbz2.1.0.dylib
0x7fffcc412000 - 0x7fffcc468ff7 libc++.1.dylib (307.4) <BEE86868-F831-384C-919E-2B286ACFE87C> /usr/lib/libc++.1.dylib
0x7fffcc469000 - 0x7fffcc493fff libc++abi.dylib (307.2) <1CEF8ABB-7E6D-3C2F-8E0A-E7884478DD23> /usr/lib/libc++abi.dylib
0x7fffcc494000 - 0x7fffcc4a4ffb libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
0x7fffcc4a5000 - 0x7fffcc4bafc3 libcompression.dylib (34) <1691D6F2-46CD-3DA6-B44F-24CDD9BD0E4E> /usr/lib/libcompression.dylib
0x7fffcc4bb000 - 0x7fffcc4bbff7 libcoretls.dylib (121.1.1) <F3BAB54C-DA82-37C3-A218-46FEB179D555> /usr/lib/libcoretls.dylib
0x7fffcc4bc000 - 0x7fffcc4bdffb libcoretls_cfhelpers.dylib (121.1.1) <D12709F3-BBE3-3CF7-9070-C2A0803F5526> /usr/lib/libcoretls_cfhelpers.dylib
0x7fffcc577000 - 0x7fffcc65bff3 libcrypto.0.9.8.dylib (64) <4CB423CE-0B86-334A-9335-FEE75198024F> /usr/lib/libcrypto.0.9.8.dylib
0x7fffcc7f9000 - 0x7fffcc84cff7 libcups.2.dylib (450) <04CA1F55-4B70-3D65-B4B1-62F6C271A9EF> /usr/lib/libcups.2.dylib
0x7fffcc89d000 - 0x7fffcc8a4ff3 libdscsym.dylib (145) <0972B577-B427-3A1C-A9E7-325B6B265135> /usr/lib/libdscsym.dylib
0x7fffcc8c6000 - 0x7fffcc8c6fff libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
0x7fffcc8d6000 - 0x7fffcc8dbff3 libheimdal-asn1.dylib (498) <8F3F1AE8-CE4A-355C-82E3-74DA46B5BB02> /usr/lib/libheimdal-asn1.dylib
0x7fffcc8dc000 - 0x7fffcc9ceff7 libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
0x7fffcc9cf000 - 0x7fffccbf4fff libicucore.A.dylib (57131.0.1) <72594943-D25E-3F70-A4AC-8E9F9F442B7E> /usr/lib/libicucore.A.dylib
0x7fffccbfa000 - 0x7fffccbfbfff liblangid.dylib (126) <3F4530C9-8BE1-3AA7-9A82-98694D240866> /usr/lib/liblangid.dylib
0x7fffccbfc000 - 0x7fffccc15ffb liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
0x7fffccc16000 - 0x7fffccc2cff7 libmarisa.dylib (5) <2183D484-032D-3DE5-8984-3A14006E034E> /usr/lib/libmarisa.dylib
0x7fffccc2d000 - 0x7fffcced6fff libmecabra.dylib (744) <545EDC2D-22BB-3E8F-BFD3-921447581D9F> /usr/lib/libmecabra.dylib
0x7fffccf09000 - 0x7fffccf81ffb libnetwork.dylib (856.1.8) <30FC3C60-CCA9-3E2B-80AA-DE53F5762374> /usr/lib/libnetwork.dylib
0x7fffccf82000 - 0x7fffcd352d97 libobjc.A.dylib (706) <F9AFE665-A3A2-3285-9495-19803A565861> /usr/lib/libobjc.A.dylib
0x7fffcd355000 - 0x7fffcd359fff libpam.2.dylib (21) <352F8FF6-2248-3594-B357-8D031DEFB06C> /usr/lib/libpam.2.dylib
0x7fffcd35a000 - 0x7fffcd38aff7 libpcap.A.dylib (67) <450DB888-2C0C-3085-A5F1-69324DFE902C> /usr/lib/libpcap.A.dylib
0x7fffcd3a8000 - 0x7fffcd3c4ffb libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
0x7fffcd3c5000 - 0x7fffcd3fefff libsandbox.1.dylib (592.1.3) <0024D751-23D8-35DF-87CF-72E489DA2F9F> /usr/lib/libsandbox.1.dylib
0x7fffcd412000 - 0x7fffcd413ff3 libspindump.dylib (228) <F80FAB75-D656-3FDA-8753-D3D6771B17E6> /usr/lib/libspindump.dylib
0x7fffcd414000 - 0x7fffcd55cfff libsqlite3.dylib (252) <FCA29CD2-E8E4-3324-8E2C-19BDC11F0338> /usr/lib/libsqlite3.dylib
0x7fffcd64d000 - 0x7fffcd65afff libxar.1.dylib (354) <AAFCF321-8100-3622-880B-9661DCA35D69> /usr/lib/libxar.1.dylib
0x7fffcd65e000 - 0x7fffcd74dffb libxml2.2.dylib (30.11) <26676155-64CE-323F-B73C-AD77AF5982E8> /usr/lib/libxml2.2.dylib
0x7fffcd74e000 - 0x7fffcd777fff libxslt.1.dylib (15.8) <FFF5DD45-F544-34B2-BE3C-DB877DC60081> /usr/lib/libxslt.1.dylib
0x7fffcd778000 - 0x7fffcd789ff3 libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
0x7fffcd798000 - 0x7fffcd79cff7 libcache.dylib (79) <84E55656-FDA9-3B29-9E4F-BE31B2C0AA3C> /usr/lib/system/libcache.dylib
0x7fffcd79d000 - 0x7fffcd7a7fff libcommonCrypto.dylib (60092.1.2) <79F738D8-0AD7-3DEA-AF80-E0F8B90B74E3> /usr/lib/system/libcommonCrypto.dylib
0x7fffcd7a8000 - 0x7fffcd7affff libcompiler_rt.dylib (62) <486BDE52-81B4-3446-BD72-23977CAE556F> /usr/lib/system/libcompiler_rt.dylib
0x7fffcd7b0000 - 0x7fffcd7b8fff libcopyfile.dylib (138) <0DA49B77-56EC-362D-98FF-FA78CFD986D6> /usr/lib/system/libcopyfile.dylib
0x7fffcd7b9000 - 0x7fffcd83bff3 libcorecrypto.dylib (442.1.3) <1CA8B679-810E-3C04-945A-4AC19372CDC7> /usr/lib/system/libcorecrypto.dylib
0x7fffcd83c000 - 0x7fffcd86efff libdispatch.dylib (703.1.4) <12B1D95B-283D-325D-85AB-29A2FFD36987> /usr/lib/system/libdispatch.dylib
0x7fffcd86f000 - 0x7fffcd874ff3 libdyld.dylib (421.1) <CDFBDC9C-418C-369D-B433-F64B0630E640> /usr/lib/system/libdyld.dylib
0x7fffcd875000 - 0x7fffcd875ffb libkeymgr.dylib (28) <09CD7CA6-46D2-3A9F-B9F1-7C4CA5CA0D68> /usr/lib/system/libkeymgr.dylib
0x7fffcd876000 - 0x7fffcd882ffb libkxld.dylib (3789.1.32) <48BDBE7F-AAE6-3050-9017-6959051CF16A> /usr/lib/system/libkxld.dylib
0x7fffcd883000 - 0x7fffcd883fff liblaunch.dylib (972.1.5) <DC31FDEA-FD81-335E-BAA8-5A7395D20772> /usr/lib/system/liblaunch.dylib
0x7fffcd884000 - 0x7fffcd889fff libmacho.dylib (894) <1EAE5ADD-490C-3B1F-9F97-447BA8E0E90F> /usr/lib/system/libmacho.dylib
0x7fffcd88a000 - 0x7fffcd88cff3 libquarantine.dylib (85) <78EF62D8-C890-3FC0-937A-C2FD8CEF8992> /usr/lib/system/libquarantine.dylib
0x7fffcd88d000 - 0x7fffcd88effb libremovefile.dylib (45) <C4FC07FF-ED86-382E-B06F-33C34718080C> /usr/lib/system/libremovefile.dylib
0x7fffcd88f000 - 0x7fffcd8a7ff7 libsystem_asl.dylib (349.1.1) <F0987490-8427-367F-B302-A05A7D61FEBF> /usr/lib/system/libsystem_asl.dylib
0x7fffcd8a8000 - 0x7fffcd8a8ff7 libsystem_blocks.dylib (67) <B8C3701D-5A91-3D35-999D-2DC8D5393525> /usr/lib/system/libsystem_blocks.dylib
0x7fffcd8a9000 - 0x7fffcd936fe7 libsystem_c.dylib (1158.1.2) <5F260836-48E4-3F57-8553-62D2DA228A1F> /usr/lib/system/libsystem_c.dylib
0x7fffcd937000 - 0x7fffcd93affb libsystem_configuration.dylib (888.1.2) <67BB9D8B-2430-38AD-81A7-F0EC924B2590> /usr/lib/system/libsystem_configuration.dylib
0x7fffcd93b000 - 0x7fffcd93efff libsystem_coreservices.dylib (41.1) <11F22E6C-0DCB-3699-A4F0-C99E301E56E9> /usr/lib/system/libsystem_coreservices.dylib
0x7fffcd93f000 - 0x7fffcd957ffb libsystem_coretls.dylib (121.1.1) <8F7E9B12-400D-3276-A9C5-4546B0258554> /usr/lib/system/libsystem_coretls.dylib
0x7fffcd958000 - 0x7fffcd95efff libsystem_dnssd.dylib (765.1.2) <C5FF2025-C60B-39C6-B205-6BF1BC51D1B3> /usr/lib/system/libsystem_dnssd.dylib
0x7fffcd95f000 - 0x7fffcd988fff libsystem_info.dylib (503) <C686B834-5E7D-382C-AF6E-44AB78EE83E2> /usr/lib/system/libsystem_info.dylib
0x7fffcd989000 - 0x7fffcd9abff7 libsystem_kernel.dylib (3789.1.32) <5C68A0D7-C3C9-3E52-B983-EDE9A28AB6FC> /usr/lib/system/libsystem_kernel.dylib
0x7fffcd9ac000 - 0x7fffcd9f3fe7 libsystem_m.dylib (3121.4) <E3370D16-EBAA-3C7F-AC56-2D6EAD7DB0A4> /usr/lib/system/libsystem_m.dylib
0x7fffcd9f4000 - 0x7fffcda12ff7 libsystem_malloc.dylib (116) <3DD17B88-B7A4-38B9-9E95-AB88E1C3B647> /usr/lib/system/libsystem_malloc.dylib
0x7fffcda13000 - 0x7fffcda69fff libsystem_network.dylib (856.1.8) <A8973360-956A-33BF-9971-14D59C84E0D1> /usr/lib/system/libsystem_network.dylib
0x7fffcda6a000 - 0x7fffcda73ff3 libsystem_networkextension.dylib (563.1.11) <1C551832-9360-36DD-A7BA-52B55A171720> /usr/lib/system/libsystem_networkextension.dylib
0x7fffcda74000 - 0x7fffcda7dffb libsystem_notify.dylib (165) <AF77D471-6B13-36BA-B144-7E7DDB9DBA9F> /usr/lib/system/libsystem_notify.dylib
0x7fffcda7e000 - 0x7fffcda86fe7 libsystem_platform.dylib (126.1.2) <884DDF42-3CAE-334A-82CE-965617130FB1> /usr/lib/system/libsystem_platform.dylib
0x7fffcda87000 - 0x7fffcda91fff libsystem_pthread.dylib (218.1.3) <050AE77B-4F4B-334A-A5BA-CF0D10AF5304> /usr/lib/system/libsystem_pthread.dylib
0x7fffcda92000 - 0x7fffcda95fff libsystem_sandbox.dylib (592.1.3) <90FEF628-316D-3F84-9EF4-F7F510A4FBBB> /usr/lib/system/libsystem_sandbox.dylib
0x7fffcda96000 - 0x7fffcda97fff libsystem_secinit.dylib (24) <A54B8FEF-E792-3C54-8E0B-E80A376662F2> /usr/lib/system/libsystem_secinit.dylib
0x7fffcda98000 - 0x7fffcda9ffff libsystem_symptoms.dylib (532.1.1) <B26F656E-94F9-3834-9B03-51C4FF11D1BF> /usr/lib/system/libsystem_symptoms.dylib
0x7fffcdaa0000 - 0x7fffcdac0ff7 libsystem_trace.dylib (518.1.16) <C3CDF7BC-CA3D-34F5-ADF8-46AAAB0B47F8> /usr/lib/system/libsystem_trace.dylib
0x7fffcdac1000 - 0x7fffcdac6ffb libunwind.dylib (35.3) <9F7C2AD8-A9A7-3DE4-828D-B0F0F166AAA0> /usr/lib/system/libunwind.dylib
0x7fffcdac7000 - 0x7fffcdaf0ff7 libxpc.dylib (972.1.5) <2A901937-48E1-3BF2-83F1-2431156D82B7> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 383
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: 7351277
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=372.2M resident=0K(0%) swapped_out_or_unallocated=372.2M(100%)
Writable regions: Total=375.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=375.1M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 2
Activity Tracing 256K 2
CG backing stores 260K 4
CG image 16K 5
CoreAnimation 20K 4
CoreUI image data 144K 3
CoreUI image file 156K 4
Foundation 4K 2
IOKit 7940K 2
Kernel Alloc Once 8K 2
MALLOC 140.2M 66
MALLOC guard page 48K 11
Memory Tag 242 12K 2
Memory Tag 251 12K 2
Memory Tag 255 585.1M 96
SQLite page cache 64K 2
STACK GUARD 56.1M 30
Stack 179.3M 33
VM_ALLOCATE 4284K 17
__DATA 31.1M 264
__GLSLBUILTINS 2588K 2
__IMAGE 528K 2
__LINKEDIT 124.6M 18
__TEXT 247.6M 263
__UNICODE 556K 2
mapped file 62.8M 21
shared memory 16.4M 13
=========== ======= =======
TOTAL 1.4G 847
Model: MacBookAir7,2, BootROM MBA71.0166.B12, 2 processors, Intel Core i5, 1,6 GHz, 8 GB, SMC 2.27f2
Graphics: Intel HD Graphics 6000, Intel HD Graphics 6000, Built-In
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54424C41522D4E5444
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54424C41522D4E5444
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (7.21.171.10.1a16)
Bluetooth: Version 5.0.0f18, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0128G, 121,33 GB
USB Device: USB 3.0 Bus
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Air, Apple Inc., 27.2
```
|
https://github.com/electron/electron/issues/8563
|
https://github.com/electron/electron/pull/8654
|
d3c967401de0c70f4a21fb14d3ee42a51bdcff74
|
80dad58a59c30b4afe1d2ab8f4f441d8f38f9819
| 2017-02-02T10:39:44Z |
c++
| 2017-02-14T16:41:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,555 |
["script/lib/config.py"]
|
Mac app store build uses non-public APIs
|
* Electron version: 1.5.0
* Operating system: macOS
I made a test build with the electron 1.5.0 MAS version and submitted it to apple. These are the issues that apple complained about.
> Performance - 2.5.1
>
> Your app uses or references the following non-public API(s):
>
> '/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics'
>
> : CGSSetWindowBackgroundBlurRadius
>
> The use of non-public APIs is not permitted on the App Store as it can lead to a poor user experience should these APIs change.
|
https://github.com/electron/electron/issues/8555
|
https://github.com/electron/electron/pull/8668
|
5e78330c6d15bbb277408479ddfd5481f9031d3e
|
593b7cc92a334475bc5e6e99d07abfa1617ac777
| 2017-02-01T14:21:23Z |
c++
| 2017-02-13T08:03:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,499 |
["atom/common/node_bindings.cc", "spec/node-spec.js", "spec/static/main.js", "vendor/node"]
|
uncaughtException event not firing in main process
|
* Electron version: 1.5.0
* Operating system: macOS 10.12
### Expected behavior
* An `uncaughtException` event is emitted on `process` in the main process for thrown errors
### Actual behavior
* Event is not emitted
* Error is logged in the terminal
### How to reproduce
* `throw Error('here')` in the main process
* Dialog does not popup
Only appears to happen in 1.5.0, not 1.4.x, possibly related to the node 7.4 upgrade.
|
https://github.com/electron/electron/issues/8499
|
https://github.com/electron/electron/pull/8507
|
a4e25a89172269a18c9c53f2419df4998fc2eb5d
|
2ee5f6f358a683b77dd00102606c70f38953c9b7
| 2017-01-25T00:48:49Z |
c++
| 2017-01-26T23:43:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,492 |
["atom/browser/web_contents_preferences.cc", "atom/browser/web_contents_preferences.h"]
|
Support setting numeric options from webpreferences attribute
|
Hello everyone, ask a question:
How to set the minimumFontSize property to webview ?
like BrowserWindow ,webPreferences.minimumFontSize
|
https://github.com/electron/electron/issues/8492
|
https://github.com/electron/electron/pull/8542
|
852519a826dda90ee911adb0a3548d2fe4b31ea2
|
c3c5470a7c2c49a0ef962b6e735136720dc555fb
| 2017-01-24T14:12:54Z |
c++
| 2017-02-07T17:15:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,471 |
["atom/common/native_mate_converters/blink_converter.cc", "docs/api/web-contents.md", "spec/api-web-contents-spec.js"]
|
'before-input-event' is missing the code property
|
* Electron version: 1.4.15
* Operating system: Windows 10
### Expected behavior
The new [before-input-event](https://github.com/electron/electron/blob/master/docs/api/web-contents.md#event-before-input-event) event should imitate the properties from [KeyboardEvents](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
### Actual behavior
Missing the ```KeyboardEvent.code``` equivalent.
Because of this, it's not possible for me to distinguish between my shortcuts created with 1 and Numpad1 for instance.
Looking at comments for the ```before-input-event``` issue ([#7586](https://github.com/electron/electron/issues/7586#issuecomment-263431783)), The ```code``` property was never mentioned in the psudo code. Missed by mistake?
```code``` is available on the ```keydown``` events in Electron, which I use now. I'm not able to rewrite my code to use ```before-input-event```, for now.
|
https://github.com/electron/electron/issues/8471
|
https://github.com/electron/electron/pull/8561
|
dc1c11a8412b08124a0ed51e828cd762b44786dd
|
604c2470bcfce86cb15f2b882543c0a786cb1a3e
| 2017-01-22T17:25:11Z |
c++
| 2017-02-02T18:33:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,465 |
["default_app/main.js", "docs/api/menu-item.md", "docs/api/menu.md", "lib/browser/api/menu-item-roles.js"]
|
Force Refresh
|
Hi! Sorry for polluting the issue tracker. I'm used to doing (on Mac), `Command + Shift + R` to give the page a full refresh rather than partial. Is this something that is achievable at Electron's end?
|
https://github.com/electron/electron/issues/8465
|
https://github.com/electron/electron/pull/8570
|
555347e726d5f35557e0f703b54370a3e7dabfa7
|
cf694ef32b78f0904219c6c8ba554d3d5cbea037
| 2017-01-21T16:47:43Z |
c++
| 2017-02-03T17:44:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,457 |
["atom/browser/web_dialog_helper.cc"]
|
macOS: buggy / crashy Quick Look via <input type="file">'s open dialog
|
* Electron version: 1.4.15 (probably older versions too).
* Operating system: macOS 10.12.2
When Quick Look is launched by right-clicking a file in a file dialog, clicking its close button doesn't work (and there's an audible beep), and after enough clicking around frequently it crashes. I suspect the same thing would happen using `dialog.showOpenDialog` presented as a sheet, but I haven't tested.
Minimal app to reproduce:
```js
const {app, BrowserWindow} = require('electron')
app.on('ready', () => {
const win = new BrowserWindow({width: 300, height: 100})
win.loadURL('data:text/html,<input type="file">')
})
```
Example:

Crash log: https://gist.github.com/javan/4c19dddd73b0581e60f6baf3b75d4dd8
|
https://github.com/electron/electron/issues/8457
|
https://github.com/electron/electron/pull/8745
|
cc688d7fa6a48e5133735eb67d665f5d193ec94f
|
5819acbc204e1656ef21f155003a4fb9492491df
| 2017-01-20T18:24:54Z |
c++
| 2017-02-24T16:38:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,455 |
["atom/browser/ui/views/global_menu_bar_x11.cc"]
|
Globalmenu consumes 100% CPU and does not work
|
* Electron version: 1.4.15
* Operating system: Arch Linux, `Linux yoga 4.7.6-1-ARCH #1 SMP PREEMPT Fri Sep 30 19:28:42 CEST 2016 x86_64 GNU/Linux`.
I'm running Electron under [KDE Plasma 5.9](https://www.kde.org/announcements/plasma-5.8.95.php), but judging from https://github.com/atom/atom/issues/6255 and https://github.com/atom/atom/issues/5970, it could be also reproduced with other versions. This also affects Atom for obvious reasons ;-).
### Expected behavior
* Global menu should work (like in other programs).
* Electron apps shouldn't consume 100% CPU for no reason.
### Actual behavior
* Global menu is visible, but pressing any action does nothing.
* Electron apps consume 100% CPU.
### Workaround
Use `ELECTRON_FORCE_WINDOW_MENU_BAR=1` (disables globalmenu integration).
### How to reproduce
* Install Plasma 5.9 (for other options see linked issues above).
* Run `electron` under Plasma 5.9 with an enabled global menu (I'm using the menu button in the window titlebar option).
* Observe CPU usage, e.g. with `htop`.
* Try to click any entries in the globalmenu, e.g. `Quit` — they do nothing.
### Screenshots
Without `ELECTRON_FORCE_WINDOW_MENU_BAR`:

With `ELECTRON_FORCE_WINDOW_MENU_BAR`:

What the menu looks like:

None of the actions work, not even the `File → Quit` one.
|
https://github.com/electron/electron/issues/8455
|
https://github.com/electron/electron/pull/10070
|
5b7cf19ced024fc8caf34347b10eead779cb4b69
|
a7035b08d575a92cc078902705b139869764c77f
| 2017-01-20T13:41:18Z |
c++
| 2017-07-31T01:42:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,439 |
["atom/browser/native_window_views.cc"]
|
Fullscreen transparent window is not transparent
|
* Electron version: 1.4.14
* Operating system: Windows 8.1
### Expected behavior
A fullscreen transparent window should be transparent.
### Actual behavior
The window is not transparent (has a white background).
### How to reproduce
```
electron.app.on("ready", function () {
var win = new BrowserWindow({
show: true,
frame: false,
fullscreen: true,
transparent: true
});
});
```
Refs https://github.com/electron/electron/issues/8321#issuecomment-273615701
|
https://github.com/electron/electron/issues/8439
|
https://github.com/electron/electron/pull/8438
|
71512ad244d5aa9e82af2e57cc89b31d0729a7ff
|
a7891e584a82858907da75ed9a4664c0f1ffc5b6
| 2017-01-18T23:24:24Z |
c++
| 2017-01-18T23:12:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,433 |
["docs/api/content-tracing.md"]
|
The contentTracing module of electron seems not working
|
Hello,
I try this code without success:
**test.js**
```js
'use strict';
const {contentTracing} = require ('electron');
const options = {
categoryFilter: '*',
traceOptions: 'record-until-full,enable-sampling'
};
contentTracing.startRecording (options, () => {
console.log ('Tracing started');
setTimeout (() => {
contentTracing.stopRecording ('', (path) => {
console.log ('Tracing data recorded to ' + path);
});
}, 5000);
});
```
It comes from http://electron.atom.io/docs/api/content-tracing/
Nothing printed, no file.. WTF?
* Electron version: v1.4.14
* Operating system: MS Windows 10
### Expected behavior
At least to see 'Tracing started' in the console output.
### Actual behavior
Nothing happens; it hangs
### How to reproduce
```js
node_modules/.bin/electron test.js
```
|
https://github.com/electron/electron/issues/8433
|
https://github.com/electron/electron/pull/8572
|
cf694ef32b78f0904219c6c8ba554d3d5cbea037
|
2f3578679f5ebe218317cd64d82a206f19c5b134
| 2017-01-18T15:27:45Z |
c++
| 2017-02-03T17:53:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,423 |
["lib/browser/api/exports/electron.js", "lib/renderer/api/remote.js", "spec/api-ipc-spec.js"]
|
No such module: atom_common_app
|
```
No such module: atom_common_app
```
* Electron version: 1.4.12
* Operating system: Mac OS X, Windows 7/10, Linux
### How to reproduce
Dunno. We started to see the issue in our Sentry 5 days ago.
|
https://github.com/electron/electron/issues/8423
|
https://github.com/electron/electron/pull/8766
|
51d6a550610188347601bdb93fabcbf8f8b81607
|
dba154b06202c44bafd8e20feccd7033d805ff5e
| 2017-01-17T15:34:35Z |
c++
| 2017-02-28T17:19:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,416 |
["atom/browser/api/atom_api_cookies.cc", "atom/browser/api/atom_api_cookies.h", "docs/api/cookies.md", "spec/api-session-spec.js"]
|
Cookie is not saved on application close
|
* Electron version: 1.4.14
* Operating system: Windows
Hi!
I faced with issue described in this two comments:
https://github.com/electron/electron/issues/6388#issuecomment-236498471
https://github.com/electron/electron/issues/6388#issuecomment-244483403
The main issue is fixed, but the session is lost if the app is closed immediately after login and setting the cookie.
### Expected behavior
Cookie should be saved.
### Actual behavior
When the app is closed after less then 10-15 seconds a cookie is set, it is not saved when the app is reopened.
|
https://github.com/electron/electron/issues/8416
|
https://github.com/electron/electron/pull/9194
|
190fc46e7748aefa6944991ad0e519fb5349f391
|
1fe10406ad9cb27eb0cf956de7230ac89390bd6e
| 2017-01-16T09:18:32Z |
c++
| 2017-04-18T16:09:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,415 |
["atom/browser/api/atom_api_window.cc", "atom/browser/api/atom_api_window.h", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "atom/browser/native_window_views.h", "docs/api/browser-window.md"]
|
API to enable/disable a window
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.4.12
* Operating system: Windows 7
### Expected behavior
When a modal window is shown in a lazy manner, allow a manual (by code) disabling of parent window.
Suggestions:
- add option like `{..., disableParentImmediately: true, ...}`
- provide an API interface to the function [NativeWindowViews::SetEnabled(bool enable)](https://github.com/electron/electron/blob/master/atom/browser/native_window_views.cc#L987)
### Actual behavior
Actually is the parent window disabled only at the very moment of showing the modal window. The time between `new BrowserWindow(...)` and Event: 'ready-to-show' takes quite long time (cca 500ms) during which an user can take an action.
I created a topic on the atom discussion:
https://discuss.atom.io/t/modal-window-with-postponed-show-allows-interaction-with-a-parent-window/38094
In the end I had looked into the framework source code and I found that enabling/disabling of the window is a private feature of the atom in [NativeWindowViews::SetEnabled(bool enable)](https://github.com/electron/electron/blob/master/atom/browser/native_window_views.cc#L987) implementation, particularly in NativeWindowViews::Show(), NativeWindowViews::Hide(), NativeWindowViews::DeleteDelegate().
### How to reproduce
Create a window modal window, rendered from url and ensure that it is showed in a lazy manner and it takes at least a few ms. Maybe use some delay during the Event: 'ready-to-show' to ensure that. User will be able to click the parent.
Example of modal window lazy opening:
```
function openWarningWindow(parent: string) {
let winWarn = new BrowserWindow({ width: 400, height: 160, modal: true, parent: global[parent], title: "Warning", show: false, maximizable: false, minimizable: false, frame: false, resizable: false, thickFrame: true });
winWarn.setMenu(null);
winWarn.loadURL(`${urlPrefix}/renderer.process.html?warning-window.view`);
winWarn.once("ready-to-show", () => {
winWarn.show();
});
}
```
Thank you guys.
|
https://github.com/electron/electron/issues/8415
|
https://github.com/electron/electron/pull/11832
|
6fd5b168bc139213342c06a231c1571339f9e26d
|
64f509ea7a5930dfb230e377d2c92f3e933e7833
| 2017-01-16T07:45:39Z |
c++
| 2018-02-06T19:14:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,407 |
["docs/development/build-instructions-osx.md", "docs/development/build-instructions-windows.md"]
|
Document toolchains used for building official Electron releases
|
For example, it would be very handy to know which Xcode/SDK versions and which VS version (e.g. VS2015 Update 3) is used to build official Electron releases.
|
https://github.com/electron/electron/issues/8407
|
https://github.com/electron/electron/pull/8452
|
1960327918e9cd92996323996c6c3fbae878aacf
|
0ca5ad754e5e1da85cb31646f80608c2f56675a8
| 2017-01-13T17:13:49Z |
c++
| 2017-01-24T18:53:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,338 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "spec/api-browser-window-spec.js"]
|
Application exits fullscreen when leaving Kiosk mode
|
* Electron version: 1.4.12
* Operating system: OSX 10.11
If a BrowserWindow is created in full screen mode (fullScreen: true), but programmatically enters and exits kiosk mode (setKiosk(false)), I would expect the app to stay fullScreen at all times.
This issue appears to be in **NativeWindowMac::SetKiosk(bool kiosk)**. It calls SetFullScreen(true) when entering kiosk and SetFullScreen(false) when leaving kiosk. It would be nice if a check was made to see if the window was already full screen and then just skip these calls. This would allow more graceful kiosking for full screen apps.
|
https://github.com/electron/electron/issues/8338
|
https://github.com/electron/electron/pull/8399
|
dcbc10ac3810cb2b4b88cd583b783666aad03ccc
|
f7bdf5d04e1ea4018e59834b579eddb0cd6a0007
| 2017-01-04T19:13:58Z |
c++
| 2017-01-17T21:03:51Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,337 |
["patches/common/chromium/.patches", "patches/common/chromium/dom_storage_limits.patch", "patches/common/chromium/dom_storage_map.patch", "spec/chromium-spec.js"]
|
localStorage values are limited to 10Mb
|
localStorage is still limited to 10Mb. After running a few tests, it throws a:
> DOMException: Failed to execute 'setItem' on 'Storage': Setting the value of 'data' exceeded the quota.
Also reported in [issue 897](https://github.com/electron/electron/issues/897), which is closed.
* Electron version: 1.4.13
* Operating system: Windows 7
### Expected behavior
No limit/quota
### Actual behavior
Limited to 10Mb
### How to reproduce
Run `localStorage.setItem('data', (new Array(11*1024*1024)).join("x"));`
|
https://github.com/electron/electron/issues/8337
|
https://github.com/electron/electron/pull/15596
|
c9d0960f472d2fc474a9ad1b4443a27c7036effa
|
b21dbdb20d011564dce1a31d505fe4b8fbd96684
| 2017-01-04T16:36:46Z |
c++
| 2018-11-12T17:19:01Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,305 |
["atom/browser/native_window_mac.mm"]
|
Border renders wrong when using Vibrancy
|
I'm using the settings below to create my MainWindow (notice the Vibrancy).
In my index.html I have a header component which has a white background color. As you can see in the image below it renders wrong. Is there anything I can do to fix this?
**Settings:**
```
mainWindow = new BrowserWindow({
center: true,
show: false,
width: 360,
height: 440,
minWidth: 300,
minHeight: 300,
vibrancy: 'ultra-dark',
frame: false,
transparent: true
});
```
**Image:**

|
https://github.com/electron/electron/issues/8305
|
https://github.com/electron/electron/pull/8354
|
8ada7fe30b6810407af07994d29cc33e0bd1e230
|
5204d6ce453a38e5ff16a47e363ae81b7b78e74f
| 2016-12-29T16:28:46Z |
c++
| 2017-01-09T19:12:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,293 |
["atom/browser/api/atom_api_auto_updater.cc", "docs/api/auto-updater.md"]
|
No way/API to know why a window is closing
|
* Electron version: 1.4.13
* Operating system: macOS
I am explaining the problem with a real world scenario so it is easier to understand.
There is no way to implement hot exit. By hot exit I mean - store the state of multiple windows when application quits so when started again the state could be restored. Hot exit shouldn't be turned on when a user is closing a window using the close button but instead a dialog asking if they want to save or disregard unsaved changes should appear.
For hot exit to work Electron should provide a mechanism to determine if `BrowserWindow` is being closed by the user or is being closed because the application is quitting. This seems easy at first because we could subscribe to `app.before-quit` event and raise a flag if the app is quitting.
```javascript
var quitting = false;
app.on('before-quit', function () {
quitting = true;
});
browserWindow.on('close', function () {
if (quitting) {
// turn on hot exit and save window state
} else {
// show dialog if there are any unsaved changes
}
});
```
This works in the typical case but not if you want to restart the app(and for sure want to restore the state) after an update have been download. Calling `autoUpdater.quitAndInstall()` makes `before-quit` event called after the windows are closed and the above code starts failing.
There seems to be no way in Electron to properly determine if the app is quitting so you could perform an action in the `browserWindow.close` event.
|
https://github.com/electron/electron/issues/8293
|
https://github.com/electron/electron/pull/12619
|
d06c79f5d34f9b1e2af084228966e547441acb58
|
40ff17c9f969e7ec651a61614b59795c39fa087a
| 2016-12-28T11:11:46Z |
c++
| 2018-04-16T19:43:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,286 |
["atom/browser/web_contents_preferences.cc", "docs/api/browser-window.md"]
|
Cursive fonts not cursive.
|
If I set the style on any text in a `BrowserWindow` as such:
```
P {
font-family: cursive;
}
```
...I would expect that text to take on a "cursive" look, much as it does when I apply the same style to a page loaded in Chrome Browser.
However in Electron 1.4.12 on Mac it looks like it's `serif`.
`cursive` is one of the W3C's five standard styles along with `serif`, `sans-serif`, `monospace`, and `fantasy` [1]. All of these work as expected in Electron except `cursive`.
It seems it should work just like the others. I presume it's just an omission somewhere?
Thanks!
[1] https://www.w3.org/wiki/CSS/Properties/font-family
|
https://github.com/electron/electron/issues/8286
|
https://github.com/electron/electron/pull/8295
|
25c80f314b1ea92fc24209e8a88ffa65ad3d0873
|
219693d91f6c6d321c948d13bfb893457e24781b
| 2016-12-26T23:45:05Z |
c++
| 2016-12-28T21:42:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,236 |
["atom/browser/ui/file_dialog.h", "atom/browser/ui/file_dialog_win.cc", "docs/api/dialog.md", "lib/browser/api/dialog.js"]
|
Support create prompt on dialog.showOpenDialog
|
I have requirement where when showOpenDialog , user enters path manually and it does not exist,
another dialog pops up and asks if path should be created automatically.
However I only see a callback at https://github.com/electron/electron/blob/master/docs/api/dialog.md#dialogshowopendialogbrowserwindow-options-callback
and i cant capture error so I can open another dialog.Electron just htorws error its self with following message
```
Path does not exist.
Check the path and try again.
```
see here as windows supports it
https://msdn.microsoft.com/en-us/library/system.windows.forms.filedialog.checkfileexists(v=vs.110).aspx
something like will be very helpful
```
openFileDialog1.CheckFileExists = true;
openFileDialog1.CheckPathExists = true;.
```
|
https://github.com/electron/electron/issues/8236
|
https://github.com/electron/electron/pull/8566
|
930a5c6de252c82c5eb089fb5589a4c41e266618
|
62a400b7d6d4090fbcbaa23ef43d0a384bac3b56
| 2016-12-19T10:10:15Z |
c++
| 2017-02-03T16:58:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,223 |
["atom/browser/net/atom_url_request.cc", "spec/api-net-spec.js"]
|
net.request sends cookie incorrectly
|
* Electron version: 1.4.5
* Operating system: Win 10 x64
### Expected behavior
`net.request` sends cookie as what I set
### Actual behavior
`net.request` sends cookie as default session's cookie
### How to reproduce
```
const {net} = require('electron');
const request = net.request({
method: 'GET',
url: 'https://mydomain.com/foo',
session: null
});
request.removeHeader('Cookie');
// If current default session has a cookie `foo=11111`,
// `request.setHeader` here has no effect. the request always send `foo=11111`
// but expected is `foo=22222`
request.setHeader('Cookie', 'foo=22222');
request.end();
```
|
https://github.com/electron/electron/issues/8223
|
https://github.com/electron/electron/pull/8258
|
d3d09ff25f4b17f17367c8d85cda8071f84bff5d
|
e788b9f959eb7f9415493323132010e09ab20336
| 2016-12-16T22:43:14Z |
c++
| 2017-01-06T00:47:44Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,205 |
["atom/common/api/atom_api_v8_util.cc", "atom/common/api/remote_callback_freer.cc", "atom/common/api/remote_callback_freer.h", "atom/common/api/remote_object_freer.cc", "atom/common/api/remote_object_freer.h", "lib/browser/objects-registry.js", "lib/browser/rpc-server.js", "lib/renderer/api/remote.js", "lib/renderer/web-view/web-view.js"]
|
Missing remote object
|
I have a function that is called several times in a loop that is trying to access cookies, but after few times i get the following error:
Electron: 1.4.11
Cannot get property 'cookies' on missing remote object 16127
Error: Cannot get property 'cookies' on missing remote object 16127
at throwRPCError (D:\devel\work\js\microstockr.desktop\node_modules\electron-prebuilt\dist\resources\electron.asar\browser\rpc-server.js:143:17)
at EventEmitter.<anonymous> (D:\devel\work\js\microstockr.desktop\node_modules\electron-prebuilt\dist\resources\electron.asar\browser\rpc-server.js:368:7)
at emitThree (events.js:116:13)
at EventEmitter.emit (events.js:194:7)
at WebContents.<anonymous> (D:\devel\work\js\microstockr.desktop\node_modules\electron-prebuilt\dist\resources\electron.asar\browser\api\web-contents.js:231:13)
at emitTwo (events.js:106:13)
at WebContents.emit (events.js:191:7)
The code is:
var session = require('electron').remote.session;
session.defaultSession.cookies.get({ url: url }, function(err, domainCookies) {.....});
|
https://github.com/electron/electron/issues/8205
|
https://github.com/electron/electron/pull/13603
|
bdceea6acaf87c61e4284ceca0ac8f8292d1f27a
|
e90c4abc0d7971f5b64bcff7d25fdbebf88148b7
| 2016-12-14T11:13:57Z |
c++
| 2018-07-12T02:10:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,202 |
["lib/browser/guest-window-manager.js", "spec/chromium-spec.js", "spec/fixtures/pages/window-open.html", "spec/static/main.js"]
|
Stack overflow when opening new browser windows with parent
|
Stack overflow when opening new browser windows with parent option set.
* Electron version: 1.3.13
* Operating system: Windows
### Expected behavior
No exception
### Actual behavior
Uncaught Exception:
RangeError: Maximum call stack size exceeded
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:10:31)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
at mergeOptions (c:\Repos\electron\1.3.13\resources\electron.asar\browser\guest-window-manager.js:17:22)
### How to reproduce
In main.js
browserWindow.webContents.on('new-window', function (event, url, frame, disposition, options) {
options.parent = browserWindow;
});
Open a browser window and from there open another browser window using
<a href="https://www.google.com" target="_blank">Test</a>. From there new window opened, open another window using Ctrl+Click on hyperlink to hit this stack overflow.
|
https://github.com/electron/electron/issues/8202
|
https://github.com/electron/electron/pull/8340
|
0a7dccbad8ecc649c3a17bece4f7ba12557f901a
|
52390120ae8e70387f3bc6340090dc9d8b369cc8
| 2016-12-14T00:06:05Z |
c++
| 2017-01-09T16:29:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,131 |
["atom/browser/native_window_mac.mm"]
|
Rounded corners appear in modal browserwindows shown later
|
* Electron version: 1.4.10
* Operating system: macOS Sierra 10.12.1
### Expected behavior
Window corners of modal windows should not be rounded

### Actual behavior
If the modal window is first hidden, and becomes shown later, rounded corners appear:

### How to reproduce
```js
const {app, BrowserWindow} = require("electron")
app.on('ready', () => {
// create main window
const mainWindow = new BrowserWindow({width: 600, height: 400})
mainWindow.loadURL('file://' + __dirname + '/index.html')
// create modal window
const modalWindow = new BrowserWindow({width: 100, height: 100, parent: mainWindow, modal: true, show: false})
modalWindow.loadURL('file://' + __dirname + '/modal.html') // modal.html is filled with color
// rounded corner appears if the modal window is hidden at first
setTimeout(() => {
modalWindow.show()
}, 1000)
// rounded corner does not appear if it is shown immediately
// modalWindow.show()
})
```
Full example is here: https://github.com/seanchas116/electron-testings/tree/master/modal-corner
|
https://github.com/electron/electron/issues/8131
|
https://github.com/electron/electron/pull/8167
|
2fa9ca1f6dcc0acfdf19854576b6d946f2f1f717
|
e77fa72d6dcf63deacd16e11d1e2b1267f577653
| 2016-12-02T13:30:09Z |
c++
| 2016-12-12T18:05:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,126 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "atom/common/options_switches.cc", "atom/common/options_switches.h", "docs/api/browser-window.md"]
|
Add option to show title text in titlebar in fullscreen when titleBarStyle: 'hidden-inset'
|
* Electron version: 1.4.10
* Operating system: macOS El Capitane
We want to show a title to our users when they are in fullscreen. However, when a window has `titleBarStyle: 'hidden-inset'` the title is not shown in fullscreen when mouse reaches the top of the screen.
We saw [this issue](https://github.com/electron/electron/issues/6715) where it is described that it would look ugly. Is it going to look like the image provided below? Because we will be satisfied with such an appearance.

It would be great if Electron could have an option for enabling the title to be shown when `titleBarStyle: 'hidden-inset'` is set (something like `alwaysShowTitleTextInFullscreen`). Currently we are not happy with the behavior and even thought that it was a bug.
|
https://github.com/electron/electron/issues/8126
|
https://github.com/electron/electron/pull/9788
|
720755e124b0389715cb3996fed7533b7011b906
|
5581d1d65282620b1222189bcee185536f8d528b
| 2016-12-02T09:52:21Z |
c++
| 2017-07-14T18:58:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,117 |
["docs/api/net.md", "lib/browser/api/net.js", "spec/api-net-spec.js"]
|
Disparity between net module headers and Node IncommingMessage headers
|
As I understand things the net module is supposed to follow the Node API as closely as possible, from [net.md](https://github.com/electron/electron/blob/master/docs/api/net.md)
> The net module API has been specifically designed to mimic, as closely as possible, the familiar Node.js API. The API components including classes, methods, properties and event names are similar to those commonly used in Node.js.
The net module version of `IncommingMessage`, however, [returns a different structure](https://github.com/electron/electron/blob/master/lib/browser/api/net.js#L42) for its header collection than its Node counterpart. Where Node returns a simple object like `{ "Content-Type": "foo", ... }` the net module returns an object where each value is an array containing any duplicate headers: `{ "Content-Type": [ "foo" ], ...}`
<img width="356" alt="screen shot 2016-12-01 at 14 55 49" src="https://cloud.githubusercontent.com/assets/634063/20796414/490139ba-b7d6-11e6-920f-d24f8e7cc036.png">
So the net module returns duplicate headers as an array whereas Node will concat duplicate headers into a single string value (comma separated list) if the header is defined as a list in the HTTP specification.
From [the Node docs](https://nodejs.org/api/http.html#http_message_headers)
> Duplicates in raw headers are handled in the following ways, depending on the header name:
>
> Duplicates of age, authorization, content-length, content-type, etag, expires, from, host, if-modified-since, if-unmodified-since, last-modified, location, max-forwards, proxy-authorization, referer, retry-after, or user-agent are discarded.
>
> set-cookie is always an array. Duplicates are added to the array.
>
> For all other headers, the values are joined together with ', '.
### Expected behavior
Duplicate HTTP response headers should be joined together if allowed by the HTTP specification or else discarded.
### Actual behavior
Headers are returned in an array regardless of duplicates.
### Proposed solution
Node has already solved this problem once, see [_http_incoming.js#L134-L180](https://github.com/nodejs/node/blob/8264a2225628cbc32116f83a079f6024786988ab/lib/_http_incoming.js#L134-L180). Although the method is exposed on the `IncommingMessage` prototype it's an undocumented method which is subject to change so using it directly is probably #dangerzone. Since the licenses of electron and node seem compatible I propose borrowing that code and adapting it for use in electron.
cc @kevinsawicki @joshaber @shiftkey
|
https://github.com/electron/electron/issues/8117
|
https://github.com/electron/electron/pull/17517
|
7c6cedb1191ef9071dc80ca2dc475d76914c4926
|
8ea33d69ac491c2421308f2bdbce6731afad1d02
| 2016-12-01T14:09:51Z |
c++
| 2019-04-02T14:41:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,116 |
["script/lib/config.py"]
|
`KeyboardEvent.key` reports an incorrect code on Linux for non-US keyboards when holding `ctrl` down
|
**Electron version:** 1.3.9 (but it doesn't work properly on Chrome 54 either)
When receiving `keydown` events on Linux from a non-US keyboard layout, the `.key` property will report an incorrect value if the user also presses <kbd>Ctrl</kbd>. In Atom, we have circumvented this issue by directly accessing the X11 APIs, but some users are [experiencing problems](https://github.com/atom/atom/issues/13170) on operating systems that have GNOME installed. [This codepen](http://codepen.io/anon/pen/aBENLP) illustrates the bug:
* Create a VM and install Ubuntu on it.
* Install Chrome.
* Add the Colemak US keyboard layout.
* Open the codepen with Google Chrome and toggle the DevTools Console.
* Press <kbd>L</kbd>: notice that the console prints `i`.
* While holding <kbd>Ctrl</kbd>, press <kbd>L</kbd>: notice that the console prints `l`.
Could this be fixed in Electron somehow? Alternatively, can the Electron team submit a patch to Chromium that solves this? Fixing it upstream feels easier than [doing it in a library](https://github.com/atom/keyboard-layout/blob/master/src/keyboard-layout-manager-linux.cc#L81-L132) because we should have direct access to the operating system `KeyPress` events. Thoughts? 💭
/cc: @groundwater @zcbenz
|
https://github.com/electron/electron/issues/8116
|
https://github.com/electron/electron/pull/8147
|
6c214ed386aef12c61671edb295798a0b3a591f1
|
571592a5a4e1fbda34613aa66267da17b0f67cf2
| 2016-12-01T13:22:25Z |
c++
| 2016-12-06T18:36:25Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,089 |
["atom/browser/api/atom_api_session.cc", "atom/browser/api/atom_api_session.h", "atom/browser/api/atom_api_url_request.cc", "atom/browser/api/atom_api_url_request.h", "atom/browser/net/atom_url_request.cc", "atom/browser/net/atom_url_request.h", "docs/api/session.md", "docs/api/structures/remove-client-certificate.md", "docs/api/structures/remove-password.md", "spec/api-session-spec.js"]
|
Allow clearing auth cache
|
Will be nice to clear auth credentials. For example, I'm using a proxy that accepts options via username:
```
proxy.com:8080
user: wiliam_country_US
```
So, if I want to change the peer node, I change my username:
```
proxy.com:8080
user: wiliam_country_GB
```
But, I'm not changing the proxy, so electron has valid credentials and is not going to trigger `login` event.
I'm searching the way to clean auth settings so electron asks them again.
|
https://github.com/electron/electron/issues/8089
|
https://github.com/electron/electron/pull/8107
|
952e3bac2cc08bc2e2a878d883c65123720b32bc
|
dc5b27069a0ca6574d4e9565b585bdb4cf91f4cd
| 2016-11-28T08:03:55Z |
c++
| 2016-12-09T18:08:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,088 |
["atom/browser/api/atom_api_app.cc", "docs/api/app.md", "spec/api-app-spec.js", "spec/static/main.js"]
|
There should be a way to skip client cert request
|
* Electron version: 1.4.8
* Operating system: Windows 8.1 x64
### Expected behavior
**There should be a way to skip client cert request.**
Server can ask for the client cert optionally and even if the client didn't send client certificate, server will still continues with the connection as usual.
For ex, Tomcat can be configured like: `<Connector port="9443" protocol="HTTP/1.1" clientAuth="want" scheme="https" ...>`. Similarly, Node.js server can be configured to `{requestCert: true, rejectUnauthorized: false, ...}` while creating server instance (as mentioned [here](https://nodejs.org/api/tls.html#tls_tls_createserver_options_secureconnectionlistener)). Server can be configured like this, and another filter/middleware can reject the request for some resources.
### Actual behavior
Currently there is no way to not sending any client cert when server asks for it.
If I call the `callback` without any certificate arg, `Caught unhandled exception: TypeError: Insufficient number of arguments.` is coming. If I didn't invoke the `callback` at all, the request is in pending state till the timeout occur, which is expected.
### How to reproduce
app.on('select-client-certificate', (event, webContents, url, list, callback) => {
event.preventDefault()
callback(list[ 0 ])
})
|
https://github.com/electron/electron/issues/8088
|
https://github.com/electron/electron/pull/8134
|
cd067bca37891854ec1c47ed24e6358888289e89
|
2a8b36c761bea11b2fd16eafc46bf6b47dfa99fd
| 2016-11-28T03:19:32Z |
c++
| 2016-12-15T16:31:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,083 |
["atom/common/api/atom_bindings.cc", "atom/common/node_bindings.cc", "atom/renderer/atom_sandboxed_renderer_client.cc", "docs/api/process.md"]
|
process.versions.electron can be overridden
|
* Electron version: All
* Operating system: All
### Expected behavior
`process.versions.electron` should be non-configurable
### Actual behavior
```js
process.versions.electron = '99.99.99'
```
Code such as the above will override the Electron version which can stop third party modules correctly recognising the Electron version.
### How to reproduce
Run the code above^^
The reason this is an issue is that other versions such as `process.versions.node` can not be configured / changed.
|
https://github.com/electron/electron/issues/8083
|
https://github.com/electron/electron/pull/15628
|
4e53019b75ece9e83aea03221470c94d0e8158c3
|
2a8e8a060370e0e4c2b3ddf8ddf187d26dd6206b
| 2016-11-26T23:42:03Z |
c++
| 2018-11-08T14:28:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,079 |
["atom/browser/net/url_request_fetch_job.cc", "spec/api-protocol-spec.js"]
|
The session passed to interceptHttpProtocol doesn't work
|
* Electron version: 1.4.9
* Operating system: Windows 10 x64
### Expected behavior
The new request generated by interceptHttpProtocol should work normally with new session(slaveSession).
### Actual behavior
The new request seems to stick with the old session(mainSession).
### How to reproduce
```
const electron = require('electron')
const {app, protocol} = require('electron')
const BrowserWindow = electron.BrowserWindow
const {session} = require('electron')
let mainWindow
let mainSession
let slaveSession
app.on('ready', function(){
mainSession = session.fromPartition('main')
slaveSession = session.fromPartition('slave')
mainWindow = new BrowserWindow({
webPreferences: {
javascript: true,
plugins: true,
webSecurity: false,
session: mainSession
}
});
mainWindow.webContents.openDevTools()
mainSession.protocol.interceptHttpProtocol('http', function(request, callback) {
if(request.url.indexOf('/api/list') >= 0){
request.url = "custom:" + request.url.split(':')[1]
callback(request)
} else {
console.log('pass ' + request.url)
callback({'url': request.url, 'method': request.method, 'session': slaveSession})
}
}, function(error){
if (error) log("interceptHttpProtocol error: " + error)
})
mainWindow.loadURL("http://pan.baidu.com")
})
```
The following codes will enter infinite loop:
```
pass http://pan.baidu.com/
pass http://pan.baidu.com/
...
...
```
But there is no interceptHttpProtocol defined on slaveSession, is it a bug?
|
https://github.com/electron/electron/issues/8079
|
https://github.com/electron/electron/pull/8085
|
1d288b69e2ea8057a0aa497b13240411fe8dd2c8
|
f2aabeefd5eff7c2c901713179e5000c0c1a5561
| 2016-11-25T14:54:45Z |
c++
| 2016-12-12T21:07:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,064 |
["atom/browser/native_window_mac.mm"]
|
Crash on wake due to NSRangeException
|
I've been seeing consistent crashes on wake from the Slack mac app with the following error:
```
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArray0 objectAtIndex:]: index 0 beyond bounds for empty NSArray'
abort() called
terminating with uncaught exception of type NSException
```
and this part of the stack trace suggests it might be something electron-related:
```
9 com.apple.CoreFoundation 0x00007fffb4dec31d -[__NSArray0 objectAtIndex:] + 93
10 com.github.electron.framework 0x0000000102995d99 atom::NativeWindowMac::GetBounds() + 137
11 com.github.electron.framework 0x000000010296bf09 atom::api::Window::GetBounds() + 25
12 com.github.electron.framework 0x00000001029730c8 gfx::Rect base::internal::RunnableAdapter<gfx::Rect (atom::api::Window::*)()>::Run<atom::api::Window*>(atom::api::Window*&&) + 40
13 com.github.electron.framework 0x0000000102973090 gfx::Rect base::internal::InvokeHelper<false, gfx::Rect, base::internal::RunnableAdapter<gfx::Rect (atom::api::Window::*)()> >::MakeItSo<atom::api::Window*>(base::internal::RunnableAdapter<gfx::Rect (atom::api::Window::*)()>, atom::api::Window*&&) + 32
```
Full crash report: https://gist.github.com/davidcornu/d974f6cf07cc6ab4001307cd118acd6d.
Running MacOS Sierra 10.12.1, Slack 2.3.2 App Store (which uses Electron 1.3.8)
|
https://github.com/electron/electron/issues/8064
|
https://github.com/electron/electron/pull/8249
|
b9f569f7fb325e747a47a33e161ba1f03c101d80
|
026711e7502a90670b628d82f1e632c98b375ced
| 2016-11-23T14:38:21Z |
c++
| 2016-12-21T18:58:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,055 |
["atom/app/atom_main_delegate.cc"]
|
Crash on electron app start
|
We're seeing a crash on electron app start with the following stack trace. We're seeing in the wild and could not get a consistent repro. Has anyone seen this type of stack trace or have pointers on where to investigate?
```
0 teams!base::debug::BreakDebugger 0x000000000000000D 0x000000001A1C0000 debugger_win.cc
1 teams!logging::LogMessage::~LogMessage 0x0000000000000238 0x000000001A1C0000 logging.cc
2 teams!`anonymous namespace'::ActiveVerifier::StartTracking 0x00000000000002C5 0x000000001A1C0000 scoped_handle.cc
3 teams!base::win::VerifierTraits::StartTracking 0x000000000000003D 0x000000001A1C0000 scoped_handle.cc
4 teams!base::win::GenericScopedHandle_base::win::HandleTraits,base::win::VerifierTraits_::Set 0x0000000000000077 0x000000001A1C0000 scoped_handle.h
5 teams!base::WaitableEvent::WaitableEvent 0x0000000000000039 0x000000001A1C0000 waitable_event_win.cc
6 teams!IPC::SyncMessageFilter::Send 0x0000000000000189 0x000000001A1C0000 ipc_sync_message_filter.cc
7 teams!gpu::CommandBufferProxyImpl::WaitForGetOffsetInRange 0x0000000000000238 0x000000001A1C0000 command_buffer_proxy_impl.cc
8 teams!gpu::CommandBufferHelper::Finish 0x00000000000000C6 0x000000001A1C0000 cmd_buffer_helper.cc
9 teams!gpu::gles2::GLES2Implementation::WaitForCmd 0x0000000000000090 0x000000001A1C0000 gles2_implementation.cc
10 teams!gpu::gles2::GLES2Implementation::Flush 0x0000000000000051 0x000000001A1C0000 gles2_implementation.cc
11 teams!gpu::gles2::GLES2Implementation::SetAggressivelyFreeResources 0x0000000000000196 0x000000001A1C0000 gles2_implementation.cc
12 teams!cc::DelegatingRenderer::DidChangeVisibility 0x0000000000000111 0x000000001A1C0000 delegating_renderer.cc
13 teams!cc::LayerTreeHostImpl::SetVisible 0x00000000000000C0 0x000000001A1C0000 layer_tree_host_impl.cc
14 teams!cc::ProxyImpl::SetVisibleOnImpl 0x0000000000000170 0x000000001A1C0000 proxy_impl.cc
15 teams!base::internal::Invoker_base::IndexSequence_0,1_,base::internal::BindState_base::internal::RunnableAdapter_void 0x0000000000000067 0x000000001A1C0000 bind_internal.h
16 teams!base::debug::TaskAnnotator::RunTask 0x000000000000013C 0x000000001A1C0000 task_annotator.cc
17 teams!base::MessageLoop::RunTask 0x0000000000000379 0x000000001A1C0000 message_loop.cc
18 teams!base::MessageLoop::DoWork 0x00000000000002F0 0x000000001A1C0000 message_loop.cc
19 teams!base::MessagePumpDefault::Run 0x00000000000000BB 0x000000001A1C0000 message_pump_default.cc
20 teams!base::RunLoop::Run 0x000000000000002E 0x000000001A1C0000 run_loop.cc
21 teams!base::MessageLoop::Run 0x0000000000000020 0x000000001A1C0000 message_loop.cc
22 teams!base::Thread::ThreadMain 0x000000000000017B 0x000000001A1C0000 thread.cc
23 teams!base::`anonymous namespace'::ThreadFunc 0x000000000000015A 0x000000001A1C0000 platform_thread_win.cc
24 kernel32!BaseThreadInitThunk 0x0000000000000022 0x00000000ABF90000 thread.c
25 ntdll!RtlUserThreadStart 0x0000000000000034 0x00000000AC540000 rtlstrt.c
```
Electron version: 1.3.6
Operating system: Windows 10
|
https://github.com/electron/electron/issues/8055
|
https://github.com/electron/electron/pull/8679
|
fe59f413f64cbf310adee6116c3e24e955574b3c
|
c127ce3e4600c4d826acda996f9034570b2aafa0
| 2016-11-22T19:31:56Z |
c++
| 2017-02-15T02:04:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,039 |
["lib/browser/api/ipc-main.js", "lib/renderer/api/ipc-renderer-setup.js"]
|
MenuItem click handler not executed
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.3.9
* Operating system: Windows 10
### Expected behavior
When a menu item is created with a `click` function, that function should be executed when the item is clicked.
### Actual behavior
The `click` function is ignored.
### How to reproduce
Unfortunately I can't find a simple way to reproduce this bug. My program does use multiple Electron `browserWindow`s, as well as Angular.js as a framework. The problematic menus occur inside included Angular directives. However, no matter how I try, I can't reproduce this issue outside of my specific app. The worst part is that it was working last night, and stopped working at an unknown point between now and then, without a commit in between.
Are there any known situations in which the `click` handler isn't executed at all? Everything else about the menu works. Creating simple menus just using the `role` options works, and the menus execute just like they should. The menus pop up, and are otherwise formatted exactly how I put them together. The only problem is the `click` not running at all.
This is my example code, included inside of a `link` function of an Angular directive:
```
$element.on('contextmenu', e=>{
let menu = new Menu();
menu.append(new MenuItem({
label: 'test',
click() {
console.log('test');
}
}));
menu.popup(remote.getCurrentWindow());
})
```
|
https://github.com/electron/electron/issues/8039
|
https://github.com/electron/electron/pull/8049
|
8fd6463ab0155685c966ee5ed18e4669f8bbe4ad
|
bbaab755e319601f8c95728b6375a02e727e9501
| 2016-11-21T19:10:47Z |
c++
| 2016-11-27T06:29:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,036 |
["docs/api/browser-window.md", "patches/chromium/.patches", "patches/chromium/enable_reset_aspect_ratio.patch", "shell/browser/native_window_views.cc", "shell/browser/ui/views/frameless_view.cc", "shell/browser/ui/views/native_frame_view.cc"]
|
Enforce a aspect ratio when resizing for Windows
|
As in topic. API currently offers fixed ratio only for Mac but not for Windows
|
https://github.com/electron/electron/issues/8036
|
https://github.com/electron/electron/pull/26941
|
16c864a932b13c7602c53ddb82939242b6bf0915
|
5f99569b6c5196d9648ce426f587d249e01ff1ca
| 2016-11-21T10:29:52Z |
c++
| 2021-01-05T08:17:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,984 |
["atom/renderer/atom_sandboxed_renderer_client.cc", "spec/api-browser-window-spec.js"]
|
Printing to PDF doesn't work with sandbox enabled
|
* Electron version: 1.4.6
* Operating system: Linux Mint 18
### Expected behavior
Printing to PDF works even when using a renderer sandbox
### Actual behavior
The callback passed to printToPDF never gets called, so my app hangs. The sample code logs "Printing" on the console, but never "Success." Changing the sandbox flag to false fixes the issue.
### How to reproduce
```
const {BrowserWindow, app} = require('electron')
app.on('ready', function() {
var webPreferences = {
sandbox: true
}
var mainWindow = new BrowserWindow({
webPreferences: webPreferences
})
mainWindow.webContents.on('did-finish-load', function() {
console.log('Printing')
mainWindow.webContents.printToPDF({}, function(error, data) {
if (error) {
console.error('Failed to print')
} else {
console.log('Success')
}
})
})
mainWindow.loadURL('https://www.google.com')
})
```
|
https://github.com/electron/electron/issues/7984
|
https://github.com/electron/electron/pull/8165
|
de625bfb655eff580e72b558850722edf7cefaad
|
1a0fbf84f9bb3c3af6a92de018acaf5173dc50ae
| 2016-11-15T23:12:31Z |
c++
| 2016-12-12T17:26:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,970 |
["lib/browser/chrome-extension.js", "lib/renderer/chrome-api.js"]
|
Installing Augury (angular2) dev tool on electron 1.4.5
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.4.5
* Operating system: Win10
We just updated electron to 1.4.5, and one of the reasons to upgrade, was to be able to use dev extensions such as Augury. I tried installing the dev extension, following the steps described in electron docs: https://github.com/electron/electron/blob/master/docs/tutorial/devtools-extension.md
### Expected behavior
Augury dev tool to work with newest version of electron
### Actual behavior
Augury was installed, and the Augury tab is visible, but the dev tool doesn't actually work.
It throws the error: "responde callback is not supported"
https://github.com/electron/electron/blob/19d8a366b35536681cb77e634cb1e7dd387a1cc0/lib/renderer/chrome-api.js#L124
### How to reproduce
Install Augury https://chrome.google.com/webstore/detail/augury/elgalmkoelokbchhkhacckoklkejnhcd
on the latest version of electron
It would be nice to know if there is a work around for this, if this is intended to be supported in the future, or if we can help making this work. It would be greatly appreciated, and helpful for our team.
Thanks
|
https://github.com/electron/electron/issues/7970
|
https://github.com/electron/electron/pull/7974
|
eb63bea87c299b3c440d6a36ccced3cc9653e1c4
|
3834f0c6a6909194184d1f2ffbe457ebfa5c3d76
| 2016-11-14T21:11:26Z |
c++
| 2016-11-17T04:01:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,968 |
["atom/browser/api/atom_api_window.cc", "atom/browser/api/atom_api_window.h", "atom/browser/native_window.cc", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "docs/api/browser-window.md", "spec/api-browser-window-spec.js"]
|
Add API to close QLPreviewPanel after `previewFile`
|
In 1.4.5, Electron added a new API (`previewFile`) that allows you to open a quicklook preview panel. However, there isn't an API for closing the preview panel that is opened.
QLPreviewPanel is a subclass of NSWindow - using Mac OS X APIs, it's pretty easy to close the shared Quicklook preview panel.
We need this functionality because the panel does not close automatically when the window is blurred, or when another window is opened in the application (https://github.com/nylas/N1/issues/3021). Other user action, such as moving focus to a message that doesn't have quicklook attachments should also probably close the panel.
I'm not sure what a good name for this API would be. Maybe `dismissFilePreview` or `unpreviewFile`?
|
https://github.com/electron/electron/issues/7968
|
https://github.com/electron/electron/pull/8038
|
a7395118afaec2163e8927e28ac22a6db6e5d2f4
|
774b2f99f2424f7858fff45995900de466d40882
| 2016-11-14T19:07:17Z |
c++
| 2016-11-28T22:47:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,960 |
["lib/renderer/inspector.js"]
|
Electron's Developer Tools cannot 'Remove folder from workspace'
|
* Electron version: ^1.4.5
* Operating system: Windows 10@last-version
### Expected behavior
Electron's Developer Tools should be able to 'Remove folder from workspace' after successfully adding them with the 'Add folder to workspace' option.
### Actual behavior
Electron's Developer Tools cannot 'Remove folder from workspace' after successfully adding one with the 'Add folder to workspace' option.
### How to reproduce
* run a basic electron app
* open the embedded Developer Tools
* use the Add folder to workspace option in the sources' left panel
* try to remove it
|
https://github.com/electron/electron/issues/7960
|
https://github.com/electron/electron/pull/8086
|
21f0b2bd2ad38c228e6b35a49e98757d5b5e023c
|
477ac313ab93bf0173eff897835a96d6a3a8dbb5
| 2016-11-13T22:01:16Z |
c++
| 2016-11-29T21:31:21Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,953 |
["atom/browser/browser_mac.mm"]
|
Opening the about dialog after passing a non-empty credits string to app.setAboutPanelOptions crashes the app
|
* Electron version: 1.4.6
* Operating system: OS X 10.11.6 (El Capitan)
### Expected behavior
The about dialog should show when I click Electron->About
### Actual behavior
Electron crashes
### How to reproduce
1. Put the following code in `main.js`:
```js
if (process.platform == 'darwin') {
app.setAboutPanelOptions({
applicationName: app.getName(),
applicationVersion: app.getVersion(),
copyright: "Released under the MIT license",
credits: "m"
})
}
```
2. Click on Electron -> About ...
3. The app crashes. It seems to happen for any non-empty string passed to credits.
Console log:
```2016-11-12 12:02:02.782 Electron[5633:438050] -[NSTaggedPointerString string]: unrecognized selector sent to instance 0x6d15
2016-11-12 12:02:02.867 Electron[5633:438050] An uncaught exception was raised
2016-11-12 12:02:02.867 Electron[5633:438050] -[NSTaggedPointerString string]: unrecognized selector sent to instance 0x6d15
2016-11-12 12:02:02.871 Electron[5633:438050] (
0 CoreFoundation 0x00007fff9b2e3452 __exceptionPreprocess + 178
1 libobjc.A.dylib 0x00007fff8aebaf7e objc_exception_throw + 48
2 CoreFoundation 0x00007fff9b34d10d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
3 CoreFoundation 0x00007fff9b2534d1 ___forwarding___ + 1009
4 CoreFoundation 0x00007fff9b253058 _CF_forwarding_prep_0 + 120
5 Foundation 0x00007fff89116f22 -[NSConcreteMutableAttributedString replaceCharactersInRange:withAttributedString:] + 51
6 UIFoundation 0x00007fff854e240a __71-[NSConcreteTextStorage replaceCharactersInRange:withAttributedString:]_block_invoke + 52
7 UIFoundation 0x00007fff854e234d -[NSConcreteTextStorage replaceCharactersInRange:withAttributedString:] + 138
8 AppKit 0x00007fff98f22fef -[NSSystemInfoPanel updateNib] + 301
9 AppKit 0x00007fff98f22beb -[NSSystemInfoPanel showInfoPanel:] + 50
10 Electron Framework 0x0000000103fd4b0b _ZN4atom7Browser14ShowAboutPanelEv + 59
11 Electron Framework 0x0000000103fdc601 _ZNK4base13ScopedTypeRefIP14NSUserActivityNS_8internal22ScopedNSProtocolTraitsIS2_EEE3getEv + 609
12 libsystem_trace.dylib 0x00007fff9269507a _os_activity_initiate + 75
13 AppKit 0x00007fff98aa5dbd -[NSApplication sendAction:to:from:] + 460
14 AppKit 0x00007fff98aa5b57 -[NSMenuItem _corePerformAction] + 336
15 AppKit 0x00007fff98aa58b7 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 114
16 libsystem_trace.dylib 0x00007fff9269507a _os_activity_initiate + 75
17 AppKit 0x00007fff98b37e54 -[NSMenu performActionForItemAtIndex:] + 131
18 AppKit 0x00007fff98b37dc7 -[NSMenu _internalPerformActionForItemAtIndex:] + 35
19 AppKit 0x00007fff98b37c1f -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 107
20 AppKit 0x00007fff989dcfd9 NSSLMMenuEventHandler + 708
21 HIToolbox 0x00007fff8e6fc7be _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1231
22 HIToolbox 0x00007fff8e6fbc48 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 404
23 HIToolbox 0x00007fff8e7119e6 SendEventToEventTarget + 40
24 HIToolbox 0x00007fff8e75b99a _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueEventRef + 411
25 HIToolbox 0x00007fff8e786d5b SendMenuCommandWithContextAndModifiers + 59
26 HIToolbox 0x00007fff8e786d0c SendMenuItemSelectedEvent + 188
27 HIToolbox 0x00007fff8e786be8 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 96
28 HIToolbox 0x00007fff8e787596 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 711
29 HIToolbox 0x00007fff8e787230 _HandleMenuSelection2 + 460
30 AppKit 0x00007fff989c80fa _NSHandleCarbonMenuEvent + 277
31 AppKit 0x00007fff9883d13d _DPSNextEvent + 1906
32 AppKit 0x00007fff9883c226 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454
33 AppKit 0x00007fff98830d80 -[NSApplication run] + 682
34 Electron Framework 0x00000001041239ae _ZN4base8internal14NarrowingRangeIilE3minEv + 395486
35 Electron Framework 0x0000000104122fb4 _ZN4base8internal14NarrowingRangeIilE3minEv + 392932
36 Electron Framework 0x0000000104164901 _ZN4base8internal14NarrowingRangeIilE3minEv + 661553
37 Electron Framework 0x000000010488462b _ZN4base8internal14NarrowingRangeIilE3minEv + 8131931
38 Electron Framework 0x0000000104884480 _ZN4base8internal14NarrowingRangeIilE3minEv + 8131504
39 Electron Framework 0x0000000104886982 _ZN4base8internal14NarrowingRangeIilE3minEv + 8140978
40 Electron Framework 0x00000001048809cd _ZN4base8internal14NarrowingRangeIilE3minEv + 8116477
41 Electron Framework 0x00000001047e97c0 _ZN4base8internal14NarrowingRangeIilE3minEv + 7497456
42 Electron Framework 0x00000001047e89a6 _ZN4base8internal14NarrowingRangeIilE3minEv + 7493846
43 Electron Framework 0x0000000103f2f347 AtomMain + 71
44 Electron 0x0000000103f25f26 main + 38
45 libdyld.dylib 0x00007fff937af5ad start + 1
)
```
|
https://github.com/electron/electron/issues/7953
|
https://github.com/electron/electron/pull/7979
|
bee5ced8f45d0c318053649aa635c4fca2afae19
|
cb0845fc4929992f13fe56ac493f26dacfa70efb
| 2016-11-12T17:10:54Z |
c++
| 2016-11-16T15:45:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,951 |
["atom/browser/native_window_views.cc", "atom/browser/native_window_views.h", "atom/browser/native_window_views_win.cc", "spec/api-browser-window-spec.js"]
|
Windows: Restore (after minimize) to wrong window size
|
* Electron version: 1.4.6
* Operating system: Windows 10
### Expected behavior
After minimizing the window it should restore to the same size.
### Actual behavior
After minimizing the window it is restored to a larger width.
### How to reproduce
The issue started with Electron 1.4.5 and will only appear when you use `minWidth` property in browser window config. As an example:
```javascript
const windowConfig = {
title: "Test app",
width: 800,
height: 600,
minWidth: 800
};
const mainWindow = new BrowserWindow(windowConfig);
```
|
https://github.com/electron/electron/issues/7951
|
https://github.com/electron/electron/pull/8047
|
414db313c67096fed4ea7f51a601b457f057bf41
|
e356168c9a7573bdedf9122278d28ac6605c9909
| 2016-11-12T07:51:58Z |
c++
| 2016-11-22T22:01:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,920 |
["atom/common/node_bindings.cc", "atom/renderer/atom_render_view_observer.cc"]
|
JavaScript execution from ipcRenderer or setImmediate not recorded in devtool timeline
|
* Electron version: 1.4.6
* Operating system: macOS Sierra
### Expected behavior
Callbacks executed from `ipcRenderer.on` or `setImmediate` will be recorded in devtool timeline
### Actual behavior
Callbacks on `ipcRenderer.on` or `setImmediate` not recorded
(Callbacks on `setTimeout` are recorded normally)
### How to reproduce
This is a simple example that do some heavy task in `ipcRenderer.on` callback:
https://github.com/seanchas116/electron-testings/tree/master/timeline-ipc
|
https://github.com/electron/electron/issues/7920
|
https://github.com/electron/electron/pull/8159
|
b08bc02cde2d849227995dfd10f39ed9d2c04c29
|
2e1e893675ed41089bf6713b62cc0e02046a636b
| 2016-11-10T02:04:44Z |
c++
| 2016-12-12T21:50:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,918 |
["lib/renderer/api/remote.js"]
|
TypeError when accessing remote objects
|
* Electron version: 1.4.5
* Operating system: Mac & Windows
I am running into errors randomly whenever accessing remote methods.
Following is similar to #7196
```
remote.js:98
Uncaught TypeError: Cannot read property 'Symbol(Symbol.iterator)' of undefined
_:51
```
And one other
```
electron.asar\renderer\api\remote.js:217 Uncaught Error: Cannot read property 'object' of undefined
TypeError: Cannot read property 'object' of undefined
at ObjectsRegistry.get (electron.asar\browser\objects-registry.js:44:28)
at EventEmitter.<anonymous> (electron.asar\browser\rpc-server.js:325:31)
at emitThree (events.js:116:13)
at EventEmitter.emit (events.js:194:7)
at WebContents.<anonymous> (electron.asar\browser\api\web-contents.js:219:13)
at emitTwo (events.js:106:13)
at WebContents.emit (events.js:191:7)
```
@kevinsawicki any ideas on fixing this?
|
https://github.com/electron/electron/issues/7918
|
https://github.com/electron/electron/pull/7980
|
cb0845fc4929992f13fe56ac493f26dacfa70efb
|
63a138b6debfe434f12afa45cba2a0f93ec436ae
| 2016-11-09T20:42:15Z |
c++
| 2016-11-16T15:46:42Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,885 |
["atom/browser/ui/accelerator_util.cc"]
|
Disabled menu items can be triggered with their accelerator
|
* Electron version: v1.4.5
* Operating system: Windows 10
### Expected behavior
If disabled menu items have accelerators, they can be triggered using that accelerator. Since disabled menu items are not clickable, one would expect that they can't be triggered in any way.
### Actual behavior
You can trigger disabled menu items with accelerators by pressing the corresponding accelerator.
### How to reproduce
In the default app, just set the `enabled` property on the 'Toggle Developer Tools' menu item to `false`. Observe that by pressing 'Ctrl+Shift+I' we can still trigger the menu item.
|
https://github.com/electron/electron/issues/7885
|
https://github.com/electron/electron/pull/7962
|
89feefac2cff7784788944257c08e5fc4a20da6d
|
301b8ec39a5b2645bb6889d09547ff40f2890545
| 2016-11-05T14:59:02Z |
c++
| 2016-11-15T19:05:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,883 |
["atom/browser/atom_browser_context.cc", "atom/browser/net/about_protocol_handler.cc", "atom/browser/net/about_protocol_handler.h", "atom/browser/net/url_request_about_job.cc", "atom/browser/net/url_request_about_job.h", "filenames.gypi", "spec/api-protocol-spec.js"]
|
handle about scheme
|
* Electron version: 1.4.5
* Operating system: win10
### Expected behavior
Use about:blank without error
### Actual behavior
Devtools console will show an error message: **`GET about:blank net::ERR_UNKNOWN_URL_SCHEME`** if use `about:blank` url.
### How to reproduce
`<iframe src="about:blank">`
|
https://github.com/electron/electron/issues/7883
|
https://github.com/electron/electron/pull/7908
|
debdce1e66f5669392ffb748b0279a1186265ab0
|
7b463297c6bcfc59091e808204c65827557dc6b4
| 2016-11-05T08:36:14Z |
c++
| 2016-11-10T00:13:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,868 |
["atom/browser/api/atom_api_auto_updater.cc", "atom/browser/api/atom_api_auto_updater.h", "atom/browser/auto_updater.h", "atom/browser/auto_updater_mac.mm"]
|
AutoUpdater returns localized error strings
|
* Electron version: 1.3.6
* Operating system: Mac OS X 10.11
Currently, when the auto updater runs into an error, it returns a localized error message in auto_updater_mac.mm. Handling these errors becomes more complicated because we now have to account for all the different languages. Moreover, unicode string comparison in javascript is not very stable.
If you can prefix the localized error message with an error code, then we can look at that error code and properly handle errors no matter what language.
|
https://github.com/electron/electron/issues/7868
|
https://github.com/electron/electron/pull/10125
|
2467d91f27c0ef1904e957bf04387168c2dd0bbf
|
768e8388d2fc93618954efc33011ebfb23a78652
| 2016-11-03T21:09:52Z |
c++
| 2017-07-27T06:49:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,859 |
["atom/browser/api/atom_api_system_preferences.cc", "atom/browser/api/atom_api_system_preferences.h", "atom/browser/api/atom_api_system_preferences_win.cc"]
|
Requiring systemPreferences causes globalShortcut to not work
|
* Electron version: 1.4.4
* Operating system: win10
Hi,
Example described [here](https://github.com/electron/electron/blob/master/docs/api/global-shortcut.md) works with v1.4.0 but doesn't seem to work with v1.4.4 or v1.4.5. Method `globalShortcut.isRegistered ` returns true, but the callback isn't called.
Thanks!
|
https://github.com/electron/electron/issues/7859
|
https://github.com/electron/electron/pull/8568
|
62a400b7d6d4090fbcbaa23ef43d0a384bac3b56
|
4abbd65628982053a3cfefb49795e787168878fd
| 2016-11-03T11:40:36Z |
c++
| 2017-02-03T17:31:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,849 |
["docs/api/web-contents.md", "shell/browser/api/atom_api_web_contents.cc"]
|
Printing needs more options
|
* Electron version: 1.4.5
* Operating system: All
1- There are only 2 options when it comes to print: silent and printBackground, there are plenty more options, like margins, copies, etc in the print window (Ctrl+P), that could be sent using _webContents.print()_
2- Access to print queue, to know if the printer is printing
|
https://github.com/electron/electron/issues/7849
|
https://github.com/electron/electron/pull/18984
|
684d1838f9882fe66e2889d857b258ed3ba0598d
|
0348b60a3452521ddc84eab4b41449019bef646e
| 2016-11-02T16:57:31Z |
c++
| 2019-06-30T05:12:00Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,838 |
["atom/browser/ui/message_box_gtk.cc"]
|
Terminate app unexpectedly by BrowserWindow.destroy in dialog callback
|
* Electron version: 1.4.4
* Operating system: Ubuntu 16.04.1 (64bit Lubuntu)
I wrote a code to call `BrowserWindow.destroy()` in `dialog.showMessageBox()`'s callback.
https://github.com/yhatt/electron-playground/blob/terminate-without-quit-events/main.js
It's a simple app to open two windows. When you're about to close, it would expect to close just one window by accepting confirmation. It seems like to work correctly in Windows and macOS.
But in Linux, It will terminate app unexpectedly. In addition, the app events about `quit` will not fire. (includes `before-quit` and `will-quit`)
This issue would be brought only when passing `browserWindow` as first argument of `dialog.showMessageBox()` (Effects by #6160's change?).
Currently It seems that we can avoid by wrapping with `setTimeout(func, 0)` (e.g. https://github.com/yhatt/marp/pull/112). However I think this approach is not a better way.
|
https://github.com/electron/electron/issues/7838
|
https://github.com/electron/electron/pull/8252
|
371b347ee9c36ac5743eae7346d6be1376369356
|
57d682a050898160c8e2a1ddfe0685ebff542b71
| 2016-11-01T18:05:52Z |
c++
| 2016-12-22T17:34:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,801 |
["atom/browser/atom_browser_client.cc", "atom/browser/atom_browser_client.h", "atom/common/chrome_version.h", "script/lib/config.py", "vendor/brightray"]
|
Electron goes in infinite loop opening window as of v1.4.x
|
- Electron version: 1.4.0 and 1.4.4 tested
- Operating system: macOS 10.12.1
This page was working in 1.3.8 but stopped working in 1.4.0 and 1.4.4 (didn't check in between versions)
- When the page works the window will be green and working
- When the page fails the window will be white and take no input (Cmd-Q will not close the window)
Removing almost any CSS makes the page work. The page works in Chrome
run with `./node_modules/.bin/electron main.js`
## Repo
- Download zip
- unzip
- Execute
```
cd to electron-infinite-loop-issue
npm install
./node_modules/.bin/electron main.js
```
## Code
main.js is just
```
"use strict";
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
let window;
app.on('ready', () => {
window = new BrowserWindow({});
window.loadURL(`file://${__dirname}/app/index.html`)
window.webContents.openDevTools();
});
```
index.html is
```
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
background-color: green;
}
.split.split-horizontal {
height: 100%;
float: left;
}
.browser {
width: 100%;
height: 100%;
}
.folders {
width: 100%;
height: 100%;
position: relative;
overflow: scroll;
}
</style>
</head>
<body>
<div class="browser">
<div class="split split-horizontal"><div class="folders"></div></div>
</div>
</body>
</html>
```
[electron-infinite-loop-issue.zip](https://github.com/electron/electron/files/560570/electron-infinite-loop-issue.zip)
|
https://github.com/electron/electron/issues/7801
|
https://github.com/electron/electron/pull/7906
|
de78f3441e008c85caecde19715fd05352f9b80a
|
8a2706d2f4da90f8d902091d8ea3721c6a3481fe
| 2016-10-30T15:28:44Z |
c++
| 2016-11-09T19:49:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,783 |
["atom/browser/api/atom_api_dialog.cc", "atom/browser/ui/file_dialog.h", "atom/browser/ui/file_dialog_mac.mm", "docs/api/dialog.md", "lib/browser/api/dialog.js", "spec/api-dialog-spec.js"]
|
Support setMessage for macOS dialog
|
NSSavePanel (and NSOpenPanel, as a subclass) supports a `message` (via `setMessage:message` in Obj-C), which allows a message to be displayed even when the panel is attached to a parent. Right now, `title` is useless for attached dialogs.
|
https://github.com/electron/electron/issues/7783
|
https://github.com/electron/electron/pull/8556
|
c3f3a6f133c7f3599b0c7bf0ceb7449b322196a6
|
5bf60ad8e8dd2d5720ca4674c77c7aed76c94bc4
| 2016-10-28T05:50:51Z |
c++
| 2017-02-09T19:34:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,779 |
["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 never fires
|
- Electron version: 1.3.7
- Operating system: macOS & Windows
I'm having some trouble creating a minimal repro for this but it seems that the `ready-to-show` event is not firing for us, since ~1.3.7, despite us having `show: false` in the window options. Filing this in case others are seeing the same behavior.
We had to switch to using `browserWindow.webContents.on('dom-ready', ...`).
|
https://github.com/electron/electron/issues/7779
|
https://github.com/electron/electron/pull/25448
|
2091fd7dd9bed0f889a14321a479c965ab45eeae
|
e5933c691097a272776330fc05133068316ca43d
| 2016-10-27T22:09:51Z |
c++
| 2020-09-15T18:48:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,724 |
["docs/api/accelerator.md"]
|
Document the fact that an Accelerator is a String and link to globalShortcut for usage
|
- Electron version: 1.4.2
- Operating system: OSX El Capitan
http://electron.atom.io/docs/api/accelerator/
This doc article suggests implicitly that Accelerator is some kind of object (Uppercase notation suggest object/class/module). I tried in main process:
`electron.Accelerator`
`require('Accelerator')`
`require('electron/Accelerator')`
it didn't work. I googled:
https://www.google.pl/search?q=site%3Aelectron.atom.io%2F+accelerator
and I've found this article:
http://electron.atom.io/docs/api/global-shortcut/
It looks that Accelerator is not object but abstract concept in form of string??
But it still doesn't work, I've tried:
```
electron.globalShortcut.register('CommandOrControl+O', () => {
console.log("KLSSLSLSS");
})
```
It gave me:
```
[17169:1025/102426:FATAL:global_shortcut_listener_mac.mm(64)] Check failed: BrowserThread::CurrentlyOn(BrowserThread::UI).
0 Electron Framework 0x000000010d853cc3 _ZN4base8internal14NarrowingRangeIilE3minEv + 434723
1 Electron Framework 0x000000010d86b577 _ZN4base8internal14NarrowingRangeIilE3minEv + 531159
2 Electron Framework 0x000000010d781b62 _ZN10extensions22GlobalShortcutListener11GetInstanceEv + 98
3 Electron Framework 0x000000010d693508 _ZN4atom3api14GlobalShortcut8RegisterERKN2ui11AcceleratorERKN4base8CallbackIFvvELNS6_8internal8CopyModeE1EEE + 24
4 Electron Framework 0x000000010d694a78 _ZNK4base8internal15RunnableAdapterIMN4atom3api14GlobalShortcutEFbRKN2ui11AcceleratorERKNS_8CallbackIFvvELNS0_8CopyModeE1EEEEE3RunIPS4_JS8_SE_EEEbOT_DpOT0_ + 40
5 Electron Framework 0x000000010d694a49 _ZN4base8internal12InvokeHelperILb0EbE8MakeItSoIRKNS0_15RunnableAdapterIMN4atom3api14GlobalShortcutEFbRKN2ui11AcceleratorERKNS_8CallbackIFvvELNS0_8CopyModeE1EEEEEEJPS7_SB_SH_EEEbOT_DpOT0_ + 9
6 Electron Framework 0x000000010d694a32 _ZN4base8internal7InvokerINS0_9BindStateINS0_15RunnableAdapterIMN4atom3api14GlobalShortcutEFbRKN2ui11AcceleratorERKNS_8CallbackIFvvELNS0_8CopyModeE1EEEEEEJEEEFbPS6_SA_SG_EE7RunImplIRKSJ_RKNSt3__15tupleIJEEEJEEEbOT_OT0_NS_13IndexSequenceIJXspT1_EEEEOSL_SA_SG_ + 18
7 Electron Framework 0x000000010d69495d _ZN4base8internal7InvokerINS0_9BindStateINS0_15RunnableAdapterIMN4atom3api14GlobalShortcutEFbRKN2ui11AcceleratorERKNS_8CallbackIFvvELNS0_8CopyModeE1EEEEEEJEEEFbPS6_SA_SG_EE3RunEPNS0_13BindStateBaseEOSL_SA_SG_ + 29
8 Electron Framework 0x000000010d6948ac _ZNK4base8CallbackIFbPN4atom3api14GlobalShortcutERKN2ui11AcceleratorERKNS0_IFvvELNS_8internal8CopyModeE1EEEELSB_1EE3RunES4_S8_SE_ + 44
9 Electron Framework 0x000000010d6944e6 _ZN4mate8internal7InvokerINS0_13IndicesHolderIJLm0ELm1ELm2EEEEJPN4atom3api14GlobalShortcutERKN2ui11AcceleratorERKN4base8CallbackIFvvELNSC_8internal8CopyModeE1EEEEE18DispatchToCallbackIbEEvNSD_IFT_S7_SB_SJ_ELSG_1EEE + 70
10 Electron Framework 0x000000010d694375 _ZN4mate8internal10DispatcherIFbPN4atom3api14GlobalShortcutERKN2ui11AcceleratorERKN4base8CallbackIFvvELNSA_8internal8CopyModeE1EEEEE18DispatchToCallbackERKN2v820FunctionCallbackInfoINSK_5ValueEEE + 133
11 libnode.dylib 0x000000011176d61a _ZN2v88internal25FunctionCallbackArguments4CallEPFvRKNS_20FunctionCallbackInfoINS_5ValueEEEE + 298
12 libnode.dylib 0x00000001117a78be _ZN2v88internal8Builtins17InvokeApiFunctionEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEENS4_INS0_6ObjectEEEiPS8_ + 1822
13 libnode.dylib 0x00000001117d214f _ZN2v88internal17PrototypeIterator43AdvanceFollowingProxiesIgnoringAccessChecksEv + 22495
14 ??? 0x00003c25dc306147 0x0 + 661333056
```
not sure if it is a bug or I just not used this properly.
|
https://github.com/electron/electron/issues/7724
|
https://github.com/electron/electron/pull/7750
|
56f7aceec7606c849534267f728715b861601471
|
bb6d15ee10718d3d9bb137817cf5db6a457ea2b6
| 2016-10-25T08:34:52Z |
c++
| 2016-10-27T17:39:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,720 |
["atom/browser/api/atom_api_download_item.cc", "atom/browser/api/atom_api_download_item.h", "atom/browser/api/atom_api_session.cc", "atom/browser/api/atom_api_session.h", "docs/api/download-item.md", "docs/api/session.md", "spec/api-session-spec.js", "spec/package.json", "spec/static/main.js"]
|
new download api required to save download progress before closing electron app
|
- Electron version: 1.4.3
- Operating system: @win7
- description:
working on a download app with electron and angular.
By using webContents.downloadUrl, webContents.session.on('will-download', handler) I can make download function work well, however, I could not find a api to save download progress before closing electron app so that I can restore download when this app is started next time.
Excepted Result:
1. user click 'download' button to download a 1G file.
2. after 500M is downloaded, user quit the app
3. one hour later, user open this app again, and downloading can automatically be restored
|
https://github.com/electron/electron/issues/7720
|
https://github.com/electron/electron/pull/8061
|
54d27a390baf55b6a60b3cc89ae2a8129b7eee2b
|
952e3bac2cc08bc2e2a878d883c65123720b32bc
| 2016-10-25T05:59:45Z |
c++
| 2016-12-09T17:39:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,714 |
["docs/api/app.md", "lib/browser/api/app.js", "spec/api-app-spec.js"]
|
Distinguishing "development" from "production"
|
## The Problem
When developing an Electron app, it is sometimes necessary to change the app's behavior depending on whether the app is being run in development or is packaged and running on an end-user's machine. Examples include:
- Enabling DevTools in "development", disabling in "production"
- Changing logging/debugging behavior
- Using different endpoints for talking to webservices
- Enabling/disabling caching
## Proposal
Electron should provide an intuitive way for users to detect (from any process) whether or not their app is running in a packaged state.
## The Current Options
#### `process.defaultApp`
Electron has a property called `process.defaultApp` which is set to `true` when running Electron with a target directory, e.g. `electron .`. There are at least two problems with this:
1. Only works in the main process. Rendered processes can't access this property by default.
2. The name `defaultApp` is not intuitive, and the [docs give no indication](http://electron.atom.io/docs/all/#processdefaultapp) of this property's practical use.
#### `electron-is-dev`
[electron-is-dev](https://github.com/sindresorhus/electron-is-dev/) is a userland module that solves this problem. This modules is great, but the issue here is discoverability: Users have to know about it before they can use it.
#### `ELECTRON_ENV`
See https://github.com/electron-userland/electron-prebuilt/pull/118, an open PR that aims to set `process.env.ELECTRON_ENV` to `development` in development.
One might argue that this technique could be used by simply prefixing the environment variable to a start script:
``` json
{
"scripts": {
"start": "ELECTRON_ENV=development electron ."
}
}
```
Unfortunately this is not a cross-platform solution: it won't work on Windows without bringing in an external dependency like [cross-env](https://github.com/kentcdodds/cross-env).
## What to do?
I'm in favor of the `process.env.ELECTRON_ENV` approach, setting it to `development` when run with `electron some/app/dir`, and leaving it `undefined` for packaged apps.
I like this solution because it resembles the `NODE_ENV` convention from Node.js, and gives users a familiar way to override the value easily, if needed. I would also like to solve this problem in Electron itself, rather than `electron-prebuilt`, so all developers will experience the same behavior, regardless of how they're running Electron.
Before jumping into implementation, I would love feedback from users. Does this approach sound good?
cc @parro-it @sindresorhus @ungoldman @kevinsawicki
|
https://github.com/electron/electron/issues/7714
|
https://github.com/electron/electron/pull/12656
|
4d078fdb033b95de14abb4471054a73fe8b90fd4
|
daf75dd3755c994fdfba3f70686e75f4e4c4a2a2
| 2016-10-24T18:44:13Z |
c++
| 2018-05-08T06:15:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,696 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "docs/api/browser-window.md", "docs/api/frameless-window.md", "docs/api/touch-bar.md"]
|
frameless window does not play well with mouse events
|
- Electron version: 1.4.1
- Operating system: Mac with retina display
Step to reproduce:
1. create a frameless window on a retina device
2. put an element at the very top, say a div, and set the cursor type to pointer
3. observe that the cursor does not always change to a 'pointer' type
I have a video here for demo purpose: https://youtu.be/yFZayteopgg
The video demonstrated the issue on Mac, but it's also reproducible on Windows, and on Windows it's worse because not only the cursor type does not change, the click event won't register either. Thus it's impossible to correctly implement close/maximize/minimize buttons with CSS.
Notice it's only reproducible on hi dpi devices, everything seems to work correctly on regular displays.
the demo in the video is made by adapting the frameless window example in the electron api demo app.
|
https://github.com/electron/electron/issues/7696
|
https://github.com/electron/electron/pull/8958
|
9a362eed5321c9f81178f2e5a74b8e470b3bb73a
|
dfa4af221086dcb3b2a33f278bc13ae8ff415ec4
| 2016-10-21T21:51:27Z |
c++
| 2017-06-05T21:30:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,686 |
["docs-translations/ko-KR/api/browser-window.md", "docs-translations/pt-BR/api/browser-window.md", "docs-translations/zh-CN/api/browser-window.md", "docs/api/browser-window.md"]
|
setMenuBarVisibility is not work, always return true
|
- Electron version: 1.3.2
- Operating system: mac
I found that win.setMenuBarVisibility() function is not work for me. Whether I set true or false, it always return true (use isMenuBarVisible to test). Is anybody has the same problem?
Pls help me! Thank you very much!
|
https://github.com/electron/electron/issues/7686
|
https://github.com/electron/electron/pull/7718
|
1c7d5df2fe20c74297b369f1116f80134bff0d4c
|
f7bf8c4fdc5b0b90c105a565e0108fc3fcc57265
| 2016-10-21T03:14:44Z |
c++
| 2016-10-25T04:08:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,672 |
["atom/browser/native_window_views.cc"]
|
Window hidden behind taskbar after maximize
|
- Electron version:
V.1.2.8
- Operating system:
Windows 10.1
STAGE 1: I create a browserwindow using:
```
browserWindow = new BrowserWindow({
show: false,
width: 1000,
height: 600,
minWidth: 500,
minHeight: 500,
frame: process.platform == 'darwin' ? true : false
});
```
STAGE 2: From within the renderer I call:
```
import electron from 'electron';
const window = electron.remote.getCurrentWindow();
window.setSize(1000, 600, true);
window.setMinimumSize(500, 500);
window.setResizable(false);
```
STAGE 3: Then, at a later stage I call:
```
import electron from 'electron';
const window = electron.remote.getCurrentWindow();
window.setMinimumSize(500, 500);
window.setResizable(true);
window.maximize();
```
This final step seems to break the browser window in several ways. Windows snap stops working (dragging the window to the top/sides does nothing). And the maximise() command ignores the taskbar (window is behind the taskbar - see below).

When I refresh (only STAGE 3 will run) the window is fixed. Snap works again and maximise() will not ignore the taskbar.
|
https://github.com/electron/electron/issues/7672
|
https://github.com/electron/electron/pull/7765
|
75a05c28145eaa77891c553f4a4076ecdc875320
|
e5aad9857d5c8ea9f5b3bc84a773a437ff5bc925
| 2016-10-19T23:32:15Z |
c++
| 2017-01-09T17:47:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,663 |
["atom/browser/native_window_views.cc", "atom/browser/ui/views/menu_bar.cc", "atom/browser/ui/views/menu_bar.h", "atom/browser/ui/views/submenu_button.cc"]
|
Cut/Copy/Paste/etc. do not work from Application Menu
|
- Electron version: 1.4.3
- Operating system: Windows 7 Professional x64
The following steps are based on my application which has an "Edit" application menu with the following buttons (and associated default roles and accelerators) Undo, Redo, Cut, Copy, Paste, Select All.
Steps to Reproduce:
1. Enter text into a field
2. Select the text using your mouse.
3. Open Application Menu (Edit in my case) and select "Cut".
Expected Result:
Text is cut from field (text disappears) and can be pasted in another field
Actual Result:
Text remains in the field and cannot be pasted elsewhere.
Notes:
- This bug is present for all of the menu items that have a default role associated. Custom click events execute properly.
- I am able to cut and paste using keyboard shortcuts (Ctrl+X, Ctrl+V).
- Seems to be working in Electron v1.4.2
|
https://github.com/electron/electron/issues/7663
|
https://github.com/electron/electron/pull/7707
|
31b4f61815cc25bef7804be304136a0074ea9b0c
|
775328d5d51cb3d16c6e01fc6340284e8efb9452
| 2016-10-18T12:32:31Z |
c++
| 2016-10-25T00:09:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,656 |
["atom/common/api/atom_api_clipboard.cc", "atom/common/api/atom_api_clipboard.h", "atom/common/api/atom_api_clipboard_mac.mm", "docs/api/clipboard.md", "filenames.gypi", "lib/common/api/clipboard.js", "spec/api-clipboard-spec.js"]
|
Add support for macOS NSFindPboard API in JS
|
Both Atom and VSCode are not supporting `cmd-e` correctly on macOS. There is a macOS API called NSFindPboard that gives you the content of a special paste shared across all apps. There is a way to shell out to get it but it would be nicer (and likely faster) if electron exposed it as an API in JS.
Issues:
- Atom: https://github.com/atom/atom/issues/4650
- VSCode: https://github.com/Microsoft/vscode/issues/11233
@orta wrote a little specification of what the API could look like which would solve both editor use cases: https://github.com/orta/electron/blob/orta-pasteboard/docs/api/pasteboard.md
Thanks!
|
https://github.com/electron/electron/issues/7656
|
https://github.com/electron/electron/pull/7719
|
9e266642f9815c33604c3e68d0670de4da111d2e
|
e97d3c21a38d2feeb29cbcd17b5f092a39cea0c4
| 2016-10-17T21:56:02Z |
c++
| 2016-10-26T02:23:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,645 |
["spec/fixtures/pages/permissions/notification.html", "spec/webview-spec.js", "vendor/brightray"]
|
Crash when a notification is fired and is given permission after a delay
|
- Electron version: 1.4.3
- Operating system: MacOS 10.11.6
App which reproduces the issue: https://github.com/pfrazee/electron-bug-notifications
Here's the code that causes the crash:
``` js
app.on('ready', () => {
session.defaultSession.setPermissionRequestHandler(onPermissionRequestHandler)
})
function onPermissionRequestHandler (webContents, permission, cb) {
console.log('waiting 5 seconds', permission)
setTimeout(() => { console.log('allowing', permission); cb(true) }, 5e3)
}
```
It appears that, when you create notifications with an async permission handler, the app crashes.
It may be relevant that:
1. A webview is involved
2. More than one notification is created at once
|
https://github.com/electron/electron/issues/7645
|
https://github.com/electron/electron/pull/7788
|
ed3a2dae1bcb5be9e7cbc757bcc0ed9d99e4cd4d
|
aa3bc13ca3bbe76c0eff14100ed7a423ae34bb53
| 2016-10-16T17:05:29Z |
c++
| 2016-10-31T16:39:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,635 |
["atom/browser/atom_browser_context.cc", "atom/browser/atom_browser_context.h", "atom/browser/net/atom_cert_verifier.cc", "atom/browser/net/atom_cert_verifier.h", "atom/browser/net/atom_ct_delegate.cc", "atom/browser/net/atom_ct_delegate.h", "filenames.gypi", "spec/api-session-spec.js", "vendor/brightray"]
|
Crash when using setCertificateVerifyProc
|
- Electron version: 1.4.3
- Operating system: MacOS 10.11.6
When setCertificateVerifyProc is used, Electron will crash as soon as the callback method is called. Crash log is attached and I've created a very simple project to demonstrate how this can be reproduced: https://github.com/gregnolle/electron-cert-verify-demo
[Electron_2016-10-15-120129_Gregs-iMac.crash.txt](https://github.com/electron/electron/files/531093/Electron_2016-10-15-120129_Gregs-iMac.crash.txt)
|
https://github.com/electron/electron/issues/7635
|
https://github.com/electron/electron/pull/7651
|
076e033236dbffe64d6c2495081f6827963373d7
|
31b4f61815cc25bef7804be304136a0074ea9b0c
| 2016-10-15T11:03:50Z |
c++
| 2016-10-24T07:53:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,630 |
["atom/browser/native_window_views.cc", "atom/browser/native_window_views.h", "atom/browser/native_window_views_win.cc"]
|
Incorrect position when restored from maximize-on-top-drag under Windows
|
- Electron version: 1.4.1
- Operating system: Windows 7 and 10
If you drag the window to the top edge to maximize it, and then call `restore()` or `unmaximize()` the window will move to the top, where the maximization happened, usually slightly out of view.
With the regular Windows restore button it moves back to place before the drag started.
I'd really like to use a frameless window with my own window controls, but this problem comes out pretty often.
|
https://github.com/electron/electron/issues/7630
|
https://github.com/electron/electron/pull/7766
|
dfefa00a50213fc6d453293547cf58ecb3f0a0b8
|
92f8c105d93f8bf24f0862d64331df69af5abb22
| 2016-10-14T21:25:45Z |
c++
| 2016-10-31T02:04:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,616 |
["atom/browser/api/atom_api_tray.cc", "atom/browser/api/atom_api_tray.h", "atom/browser/ui/tray_icon.cc", "atom/browser/ui/tray_icon.h", "atom/browser/ui/tray_icon_cocoa.mm", "atom/browser/ui/tray_icon_observer.h", "docs/api/tray.md"]
|
Add Tray hover event
|
- Electron version:1.3.3
- Operating system:win10/mac
the Tray instance events shold provide the tray hover event.
`tray.setToolTip` has limitations when do more operation.
|
https://github.com/electron/electron/issues/7616
|
https://github.com/electron/electron/pull/9760
|
4958771b8a914a0a3a8dce66d6cf31729e5f0cad
|
e44f6555036c9e45d0c40e4aa425888fe04be311
| 2016-10-14T03:04:45Z |
c++
| 2017-06-28T19:15:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,607 |
["atom/browser/atom_access_token_store.cc", "atom/browser/atom_access_token_store.h"]
|
Location with session persist crash
|
Electron version: 1.4.3
Operating system: macOS 10.11.1
Electron crashes when a website wants to get location with session persist. For example go to google.com, search any query and click "use precise location" at the bottom and crashes...
**Code**
`const {app, BrowserWindow, session} = require('electron');
app.on('ready', function(){
var ses = session.fromPartition('persist:debug');
ses.setUserAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36', 'en-US');
var win = new BrowserWindow({
'width' : 1366,
'height' : 768,
'webPreferences' : {
'session' : ses,
}
});
win.loadURL('http://www.google.com');
});`
**Stack dump**
`
Received signal 11 SEGV_MAPERR ffffffff00000038
[0x00010a1433b6]
[0x7fff86cfe52a]
[0x700005a438f0]
[0x00010a870baf]
[0x00010ab89420]
[0x00010a1439cb]
[0x00010a16479c]
[0x00010a164aac]
[0x00010a164e0b]
[0x00010a1387b5]
[0x00010a17aae1]
[0x00010a19a02d]
[0x00010a8a5398]
[0x00010a8a557b]
[0x00010a19a11f]
[0x00010a196537]
[0x7fff8846a9b1]
[0x7fff8846a92e]
[0x7fff88468385]
`
|
https://github.com/electron/electron/issues/7607
|
https://github.com/electron/electron/pull/7628
|
b2559d7d288d58c7975ded5f96648ffb47d4f747
|
88ac3763827d10b1adb3745d04093036ad973a78
| 2016-10-13T14:05:01Z |
c++
| 2016-10-24T05:57:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 7,586 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "atom/common/native_mate_converters/blink_converter.cc", "atom/common/native_mate_converters/blink_converter.h", "docs/api/web-contents.md", "spec/api-web-contents-spec.js", "spec/static/main.js", "vendor/brightray"]
|
Allow certain keyboard events to be always handled in the main process
|
Embedding arbitrary web content is problematic when it comes to keyboard shortcuts because:
- Web content can steal app shortcuts (see e.g. brave/browser-laptop#4407)
- Blocked web content (e.g. a focused `<webview>` performing expensive computation) will also prevent app shortcuts from firing immediately
To fix this, we need a way to _always_ handle certain shortcuts in the main process. I think the most flexible solution would be something like this:
``` js
app.addProtectedShortcut('CmdOrCtrl+Tab', (event) => {
event.preventDefault();
});
```
We could then implement:
``` cpp
bool CommonWebContentsDelegate::PreHandleKeyboardEvent(
content::WebContents* source,
const content::NativeWebKeyboardEvent& event,
bool* is_keyboard_shortcut) {
return /* event is protected shortcut and the handler called preventDefault */;
}
```
@zcbenz Thoughts? I'm happy to work on this if we come up with a reasonable approach.
|
https://github.com/electron/electron/issues/7586
|
https://github.com/electron/electron/pull/8143
|
3290c6b335a4a98a6a6c17319eb0f065d50e9e8a
|
25feb9232d1f86de8167bce2affeec3afc6058c4
| 2016-10-13T01:34:55Z |
c++
| 2016-12-14T18:05:32Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.