Will Anderson
Will Anderson
When you upload a release with a space in the name, the route that serves draft releases truncates the file name.  This happens because the file name isn't being...
#### Description of Change This PR adds a `will-frame-navigate` event to `webContents`. Unlike `will-navigate` which only fires for the mainFrame, this event fires for any frames within the `webContents`. Similarly,...
When you work on multiple projects with different Xcode versions, having `e build` invoke `sudo xcode-select -s` all the time get's annoying. By setting `DEVELOPER_DIR` in `e-build.js` before calling `e-load-xcode.js`,...
The [man pages](https://keith.github.io/xcode-man-pages/xcode-select.1.html#s) for `xcode-select` say that you can switch your active Xcode directory by setting `DEVELOPER_DIR`. I haven't tried patching `build-tools` to set `DEVELOPER_DIR` yet, but I think that...
It looks like for some reason the "Configurable" and "Description" headings were somehow swapped in the table describing `global.GLOBAL_AGENT` object's properties. This PR swaps them to the correct order.
There's an old closed issue #148 where someone reported problems installing dugite behind a proxy. The recommended solution was to set `HTTP_PROXY`/`HTTPS_PROXY` which is also documented in the [environment variable...
When this project switched away from `requests`, support for configuring a proxy via the `HTTP_PROXY`/`HTTPS_PROXY` environment variables was lost. This change restores proxy support by adding the `global-agent` package as...
This PR illustrates the problem: https://github.com/electron/electron/pull/40301 When an API WG member has reviewed a PR and added feedback, I think we're supposed to add the `api-review/reviewed` label and remove the...
I just noticed this on the [Extending](http://wp-api.org/guides/extending.html) page. The code samples near the end of the page with the `MyPlugin_API_MyType` class are indented incorrectly. Playing around with the styles briefly,...
This should address an edge-case like the one seen in this PR: https://github.com/electron/electron/pull/42561 The scenario is: * Someone requests changes on a PR * That person then approves the PR...