devel/electron34: update to 34.5.3

Changelog:
- https://github.com/electron/electron/releases/tag/v34.5.2
- https://github.com/electron/electron/releases/tag/v34.5.3

Reported by:	GitHub (watch releases)
This commit is contained in:
Hiroki Tagato 2025-04-27 21:15:41 +09:00
parent b818a3ad89
commit 587a72c339
5 changed files with 15 additions and 15 deletions

View file

@ -1,2 +1,2 @@
ELECTRON_VER= 34.5.1 ELECTRON_VER= 34.5.3
ELECTRON_VER_MAJOR= ${ELECTRON_VER:C/\..*//} ELECTRON_VER_MAJOR= ${ELECTRON_VER:C/\..*//}

View file

@ -1,4 +1,4 @@
TIMESTAMP = 1744883818 TIMESTAMP = 1745668879
SHA256 (electron/chromium-132.0.6834.210.tar.xz.0) = ede58a1501f175aaa6c92e47793b773ed10b31a43d600375cb40727c4ae677d5 SHA256 (electron/chromium-132.0.6834.210.tar.xz.0) = ede58a1501f175aaa6c92e47793b773ed10b31a43d600375cb40727c4ae677d5
SIZE (electron/chromium-132.0.6834.210.tar.xz.0) = 2000000000 SIZE (electron/chromium-132.0.6834.210.tar.xz.0) = 2000000000
SHA256 (electron/chromium-132.0.6834.210.tar.xz.1) = 6d080b3948ef1d63d08b8cc1390662a439e635b881561434787b8b67ea99b08d SHA256 (electron/chromium-132.0.6834.210.tar.xz.1) = 6d080b3948ef1d63d08b8cc1390662a439e635b881561434787b8b67ea99b08d
@ -7,10 +7,10 @@ SHA256 (electron/chromium-132.0.6834.210.tar.xz.2) = 989e234492cf50454303ec6f490
SIZE (electron/chromium-132.0.6834.210.tar.xz.2) = 484148560 SIZE (electron/chromium-132.0.6834.210.tar.xz.2) = 484148560
SHA256 (electron/pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92 SHA256 (electron/pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92
SIZE (electron/pulseaudio-16.1.tar.gz) = 2763111 SIZE (electron/pulseaudio-16.1.tar.gz) = 2763111
SHA256 (electron/electron-yarn-cache-34.5.1.tar.xz) = f0fa33e22a0b00e5440fbc57517f7b303d43ca07c25e43f35e28f97c2ce12c83 SHA256 (electron/electron-yarn-cache-34.5.3.tar.xz) = f0fa33e22a0b00e5440fbc57517f7b303d43ca07c25e43f35e28f97c2ce12c83
SIZE (electron/electron-yarn-cache-34.5.1.tar.xz) = 29062184 SIZE (electron/electron-yarn-cache-34.5.3.tar.xz) = 29062184
SHA256 (electron/electron-electron-v34.5.1_GH0.tar.gz) = 996a48c05b9686fd6d22e7fb0d24ade4db068e293545055aed7816abc9e24af4 SHA256 (electron/electron-electron-v34.5.3_GH0.tar.gz) = 4b3cebec13d72c7ce07b41d60da424bb28534f7978b618c0ec44f466c09ddf9c
SIZE (electron/electron-electron-v34.5.1_GH0.tar.gz) = 14847394 SIZE (electron/electron-electron-v34.5.3_GH0.tar.gz) = 14850706
SHA256 (electron/nodejs-node-v20.19.0_GH0.tar.gz) = 110955872bb826e0e59eb88018219dd0828d2276b77598c64f50140e97a9d704 SHA256 (electron/nodejs-node-v20.19.0_GH0.tar.gz) = 110955872bb826e0e59eb88018219dd0828d2276b77598c64f50140e97a9d704
SIZE (electron/nodejs-node-v20.19.0_GH0.tar.gz) = 116087668 SIZE (electron/nodejs-node-v20.19.0_GH0.tar.gz) = 116087668
SHA256 (electron/nodejs-nan-e14bdcd1f72d62bca1d541b66da43130384ec213_GH0.tar.gz) = 02edf8d5b3fef9af94d8a1355da60564a57e7f2c99cb422bce042400607ed2eb SHA256 (electron/nodejs-nan-e14bdcd1f72d62bca1d541b66da43130384ec213_GH0.tar.gz) = 02edf8d5b3fef9af94d8a1355da60564a57e7f2c99cb422bce042400607ed2eb

View file

@ -1,4 +1,4 @@
--- electron/shell/browser/api/electron_api_web_contents.cc.orig 2025-04-08 22:12:25 UTC --- electron/shell/browser/api/electron_api_web_contents.cc.orig 2025-04-23 00:27:29 UTC
+++ electron/shell/browser/api/electron_api_web_contents.cc +++ electron/shell/browser/api/electron_api_web_contents.cc
@@ -157,11 +157,11 @@ @@ -157,11 +157,11 @@
#include "ui/base/cocoa/defaults_utils.h" #include "ui/base/cocoa/defaults_utils.h"
@ -57,7 +57,7 @@
CrashDumpHungChildProcess(rph->GetProcess().Handle()); CrashDumpHungChildProcess(rph->GetProcess().Handle());
#endif #endif
rph->Shutdown(content::RESULT_CODE_HUNG); rph->Shutdown(content::RESULT_CODE_HUNG);
@@ -3466,7 +3466,7 @@ void WebContents::Focus() { @@ -3476,7 +3476,7 @@ void WebContents::Focus() {
void WebContents::Focus() { void WebContents::Focus() {
// Focusing on WebContents does not automatically focus the window on macOS // Focusing on WebContents does not automatically focus the window on macOS
// and Linux, do it manually to match the behavior on Windows. // and Linux, do it manually to match the behavior on Windows.
@ -66,7 +66,7 @@
if (owner_window()) if (owner_window())
owner_window()->Focus(true); owner_window()->Focus(true);
#endif #endif
@@ -4335,7 +4335,7 @@ ui::ImageModel WebContents::GetDevToolsWindowIcon() { @@ -4345,7 +4345,7 @@ ui::ImageModel WebContents::GetDevToolsWindowIcon() {
} }
#endif #endif

View file

@ -1,6 +1,6 @@
--- electron/shell/browser/native_window.cc.orig 2024-10-22 02:29:46 UTC --- electron/shell/browser/native_window.cc.orig 2025-04-23 00:27:29 UTC
+++ electron/shell/browser/native_window.cc +++ electron/shell/browser/native_window.cc
@@ -202,7 +202,7 @@ void NativeWindow::InitFromOptions(const gin_helper::D @@ -200,7 +200,7 @@ void NativeWindow::InitFromOptions(const gin_helper::D
} else { } else {
SetSizeConstraints(size_constraints); SetSizeConstraints(size_constraints);
} }

View file

@ -1,4 +1,4 @@
--- electron/spec/api-browser-window-spec.ts.orig 2025-03-10 00:01:50 UTC --- electron/spec/api-browser-window-spec.ts.orig 2025-04-23 00:27:29 UTC
+++ electron/spec/api-browser-window-spec.ts +++ electron/spec/api-browser-window-spec.ts
@@ -69,7 +69,7 @@ describe('BrowserWindow module', () => { @@ -69,7 +69,7 @@ describe('BrowserWindow module', () => {
}).not.to.throw(); }).not.to.throw();
@ -153,7 +153,7 @@
const w = new BrowserWindow(); const w = new BrowserWindow();
const minimize = once(w, 'minimize'); const minimize = once(w, 'minimize');
w.minimize(); w.minimize();
@@ -5257,7 +5257,7 @@ describe('BrowserWindow module', () => { @@ -5269,7 +5269,7 @@ describe('BrowserWindow module', () => {
}); });
// On Linux there is no "resizable" property of a window. // On Linux there is no "resizable" property of a window.
@ -162,7 +162,7 @@
const w = new BrowserWindow({ show: false }); const w = new BrowserWindow({ show: false });
expect(w.resizable).to.be.true('resizable'); expect(w.resizable).to.be.true('resizable');
@@ -5396,7 +5396,7 @@ describe('BrowserWindow module', () => { @@ -5408,7 +5408,7 @@ describe('BrowserWindow module', () => {
}); });
}); });
@ -171,7 +171,7 @@
// Not implemented on Linux. // Not implemented on Linux.
afterEach(closeAllWindows); afterEach(closeAllWindows);
@@ -6641,7 +6641,7 @@ describe('BrowserWindow module', () => { @@ -6653,7 +6653,7 @@ describe('BrowserWindow module', () => {
describe('"transparent" option', () => { describe('"transparent" option', () => {
afterEach(closeAllWindows); afterEach(closeAllWindows);