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 22, 2022
-
-
Sudowoodo Release Bot authored
-
- Jun 21, 2022
-
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
trop[bot] authored
Co-authored-by:
Milan Burda <milan.burda@gmail.com>
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
Sudowoodo Release Bot authored
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
Shelley Vohr authored
-
- Jun 20, 2022
-
-
trop[bot] authored
* fix: performance problem in crashReporter.start() on macOS This change reduces the duration of crashReporter.start() on Intel macOS from 622 milliseconds to 257 milliseconds! Backports https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3641386 posix: Replace DoubleForkAndExec() with ForkAndSpawn() The DoubleForkAndExec() function was taking over 622 milliseconds to run on macOS 11 (BigSur) on Intel i5-1038NG7. I did some debugging by adding some custom traces and found that the fork() syscall is the bottleneck here, i.e., the first fork() takes around 359 milliseconds and the nested fork() takes around 263 milliseconds. Replacing the nested fork() and exec() with posix_spawn() reduces the time consumption to 257 milliseconds! See https://github.com/libuv/libuv/pull/3064 to know why fork() is so slow on macOS and why posix_spawn() is a better replacement. Another point to note is that even base::LaunchProcess() from Chromium calls posix_spawnp() on macOS - https://source.chromium.org/chromium/chromium/src/+/8f8d82dea0fa8f11f57c74dbb65126f8daba58f7:base/process/launch_mac.cc;l=295-296 Change-Id: I25c6ee9629a1ae5d0c32b361b56a1ce0b4b0fd26 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3641386 Reviewed-by:
Mark Mentovai <mark@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Fixes: https://github.com/electron/electron/issues/34321 Signed-off-by:
Darshan Sen <raisinten@gmail.com> * Update .patches Co-authored-by:
Darshan Sen <raisinten@gmail.com> Co-authored-by:
Cheng Zhao <zcbenz@gmail.com>
-
trop[bot] authored
chore: fix View painting when origin updated Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
Raymond Zhao authored
-
- Jun 18, 2022
-
-
Keeley Hammond authored
Revert "Bump v19.0.6" & "Bump v19.0.5"
-
- Jun 17, 2022
-
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 16, 2022
-
-
Sudowoodo Release Bot authored
-
Sudowoodo Release Bot authored
-
trop[bot] authored
Co-authored-by:
VerteDinde <vertedinde@electronjs.org>
-
Sudowoodo Release Bot authored
This reverts commit 0764bb15.
-
- Jun 15, 2022
-
-
Sudowoodo Release Bot authored
-
trop[bot] authored
Co-authored-by:
Milan Burda <milan.burda@gmail.com>
-
trop[bot] authored
* fix: crash when setWindowOpenHandler throws * refactor: throw as process uncaughtException event Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 14, 2022
-
-
electron-roller[bot] authored
* chore: bump chromium in DEPS to 102.0.5005.115 * Trigger Build * chore: update patches Co-authored-by:
electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by:
John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by:
PatchUp <73610968+patchup[bot]@users.noreply.github.com>
-
- Jun 13, 2022
-
-
trop[bot] authored
Co-authored-by:
Milan Burda <milan.burda@gmail.com>
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 11, 2022
-
-
trop[bot] authored
* build: use sid sysroot for linux arm64 * try this Co-authored-by:
John Kleinschmidt <jkleinsc@electronjs.org>
-
- Jun 10, 2022
-
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 09, 2022
-
-
trop[bot] authored
* build: fix clang-format script * chore: remove python2 cases Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 08, 2022
-
-
Sudowoodo Release Bot authored
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- Jun 07, 2022
-
-
trop[bot] authored
Co-authored-by:
samuelmaddock <samuel.maddock@gmail.com>
-
trop[bot] authored
Co-authored-by:
John Kleinschmidt <jkleinsc@electronjs.org>
-
- Jun 06, 2022
-
-
trop[bot] authored
docs: fix did-frame-navigate example in webFrameMain docs Co-authored-by:
Will Anderson <will@itsananderson.com>
-
David Sanders authored
fix: on macOS show BrowserWindow on maximize if not currently shown (#32949)
-
- Jun 03, 2022
-
-
Sudowoodo Release Bot authored
-
trop[bot] authored
* fix: crash when renderer process is reused Could occur when a renderer crashes and the same-origin URL is loaded again which leads to reusing the renderer process. * test: renderer process crash recovery * fix: handle case which leads to render frame DCHECK * fix: lint Co-authored-by:
samuelmaddock <samuel.maddock@gmail.com>
-
trop[bot] authored
* ci: cache python install to better deal with download errors. * chore: use our CDN to download python2 * build: DRY up the python install steps * fixup backport for 19-x-y * trigger ci * fixup the fixup Co-authored-by:
John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by:
Samuel Attard <sattard@salesforce.com> Co-authored-by:
Cheng Zhao <zcbenz@gmail.com>
-
- Jun 02, 2022
-
-
trop[bot] authored
* fix: crash when RenderFrameHost is nullptr * chore: lint fix Co-authored-by:
samuelmaddock <samuel.maddock@gmail.com>
-
- Jun 01, 2022
-
-
Sudowoodo Release Bot authored
-
- May 31, 2022
-
-
trop[bot] authored
Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-
- May 30, 2022
-
-
Shelley Vohr authored
* fix: esc not working on Windows during fullscreen * chore: fix lint
-
Shelley Vohr authored
* fix: missing resource printing DCHECK * chore: update patches Co-authored-by:
PatchUp <73610968+patchup[bot]@users.noreply.github.com>
-
- May 26, 2022
-
-
trop[bot] authored
spec: add setTitlebarOverlay spec Co-authored-by:
Shelley Vohr <shelley.vohr@gmail.com>
-