This project is mirrored from https://github.com/electron/electron.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Jun 30, 2021
-
-
Electron Bot authored
-
Electron Bot authored
This reverts commit 97c4b597.
-
Electron Bot authored
-
Robo authored
-
Samuel Attard authored
* feat: add MenuItem.userAccelerator property This allows folks to read the user-assigned accelerator that macOS users can provide in system preferences. Useful for showing in-app shortcut help dialogs, you need to know if the accelerator you provided is not being used in favor of a user assigned one. * chore: update syntax * chore: add safety check for command index being -1
-
Rituka Patwal authored
The new installs of the python module, python-dbusmock, is broken for python2. The tests still run fine on linux machine in Electron's pipeline setup on CircleCI, because the docker image used has the non-broken version of python-dbusmock for python2 installed. But running electron tests on any other linux machine would fail if they don't have this non-broken version of python-dbusmock for python2 installed, already, which is the case for most of the machines. Moreover, Python2 is deprecated now. So it would be better if we change the python interpreter in script/spec-runner.js file to python3, for which all the python modules are updated and working. Co-authored-by:
Rituka Patwal <rituka.patwal@postman.com>
-
electron-roller[bot] authored
* chore: bump chromium in DEPS to 93.0.4553.0 * chore: update patches * chore: bump chromium in DEPS to 93.0.4555.0 * chore: update patches * chore: bump chromium in DEPS to 93.0.4556.0 * chore: update patches * chore: bump chromium in DEPS to 93.0.4557.0 * chore: update patches * Fix warnings for -Wc++11-narrowing. Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2942212 * fixup! Fix warnings for -Wc++11-narrowing. * chore: run gen-libc++-filenames.js * Reland "Roll src/buildtools/third_party/libc++/trunk/ 8fa879467..79a2e924d (426 commits)" https://chromium-review.googlesource.com/c/chromium/src/+/2988699 * chore: bump chromium in DEPS to 93.0.4558.0 * chore: update patches Co-authored-by:
electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by:
PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by:
Charles Kerr <charles@charleskerr.com> Co-authored-by:
deepak1556 <hop2deep@gmail.com>
-
- Jun 29, 2021
-
-
Electron Bot authored
-
Omar Kilani authored
-
David Sanders authored
-
electron-roller[bot] authored
-
- Jun 28, 2021
-
-
Electron Bot authored
-
David Sanders authored
-
- Jun 25, 2021
-
-
Electron Bot authored
-
electron-roller[bot] authored
Co-authored-by:
electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by:
PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by:
Charles Kerr <charles@charleskerr.com>
-
Shelley Vohr authored
-
Shelley Vohr authored
-
- Jun 24, 2021
-
-
Jeremy Rose authored
-
Electron Bot authored
-
dependabot[bot] authored
* build(deps): bump lodash from 4.17.20 to 4.17.21 in /spec Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21 ) Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by:
Jeremy Rose <jeremya@chromium.org>
-
Jeremy Rose authored
-
- Jun 23, 2021
-
-
Electron Bot authored
-
David Sanders authored
-
Shelley Vohr authored
* fix: child window alwaysOnTop level * chore: add undocumented getAlwaysOnTopLevel * test: add test for level persistence * Address feedback from review
-
Robo authored
-
electron-roller[bot] authored
-
Jeremy Rose authored
-
- Jun 22, 2021
-
-
Electron Bot authored
-
David Sanders authored
-
Keeley Hammond authored
* wip: debug resource bundle failure * fix: include ppapi subprocesses for windows resource bundle * fix: allow ppapi plugin processes access to resource bundle on all platforms. Aligns with chrome_main_delegate here: https://chromium-review.googlesource.com/c/chromium/src/+/2619003
-
David Sanders authored
-
- Jun 21, 2021
-
-
Electron Bot authored
-
marekharanczyk authored
* fix: do not cancel CORS preflight request on proxy auth. If connecting via proxy, preflight request can receive 407 header response from proxy. This does not mean request was finished even though it received headers (from proxy, not the destination server), so prevent "completing" and most importantly deleting it, which causes request to be canceled in network layer. Just continue to monitor it and await proper response from server. Also add circut breaker to cancel request if proxy auth failed 3 times (for example user keeps cancelling auth). This behavior happens only when app registered WebRequest api listeners. * Port chromium webrequest changes to electron code. Move relevant parts of chromium WebRequestProxyingURLLoaderFactory from https://chromium-review.googlesource.com/c/chromium/src/+/2011781 into electron ProxyingURLLoaderFactory. * Update code to upstreamed version and remove retyr count failsafe. Co-authored-by:
Milan Burda <milan.burda@gmail.com>
-
Fedor Indutny authored
* fix: microtasks policy in CreateEnvironment Microtasks policy should not be updated for the renderer because `NodeBindings::CreateEnvironment` might be entered with or without `UvRunOnce()` on stack. One of the examples of such calls is `window.open()` which is possible to invoke while `uv_run()` is still running (e.g. with `setImmediate()`). All in all, it doesn't matter that much which policy we use since `v8::MicrotasksScope` has a check for the policy in its destructor and no commits will be made if the policy is `kExplicit`. It is important, however, to not change the policy in the middle of `UvRunOnce()` so we should respect whatever we currently have and move on. Fix: #29463 * Move test to a better place * Update spec-main/fixtures/crash-cases/setimmediate-window-open-crash/index.html Co-authored-by:
Jeremy Rose <nornagon@nornagon.net> * Update spec-main/fixtures/crash-cases/setimmediate-window-open-crash/index.html Co-authored-by:
Jeremy Rose <nornagon@nornagon.net> * simplify crash-case * comment * fix comment Co-authored-by:
Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Co-authored-by:
Jeremy Rose <nornagon@nornagon.net> Co-authored-by:
Fedor Indutny <indutny@signal.org>
-
Darshan Sen authored
If the app is run with LC_ALL=C on Linux, the test would fail as app.getLocaleCountryCode() would return "". Signed-off-by:
Darshan Sen <raisinten@gmail.com>
-
Samuel Attard authored
* fix: update Squirel.Mac to fix CPU spin during update Refs: https://github.com/Squirrel/Squirrel.Mac/pull/259 Closes: #29119 * chore: update patches Co-authored-by:
PatchUp <73610968+patchup[bot]@users.noreply.github.com>
-
David Sanders authored
-
Erick Zhao authored
-
Samuel Maddock authored
-
sssooonnnggg authored
-