Robo
f6f0843536
chore: cherry-pick 9fcb46c from v8 ( #48984 )
2025-11-17 09:44:53 +01:00
trop[bot]
4cc7821d01
build: limit workflow gh token permissions ( #48968 )
...
* build: limit workflow gh token permissions
Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com >
* feedback
Co-authored-by: Samuel Attard <sattard@anthropic.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com >
Co-authored-by: Samuel Attard <sattard@anthropic.com >
2025-11-15 11:32:26 +01:00
Samuel Attard
17c909924c
chore: cherry-pick 4cf9311810b0 from v8 ( #48950 )
...
* chore: cherry-pick 4cf9311810b0 from v8
* chore: update patches
---------
Co-authored-by: Keeley Hammond <khammond@slack-corp.com >
v38.7.0
2025-11-13 14:57:06 -08:00
Fedor Indutny
40d65d5a9f
fix: crash on windows when UTF-8 is in path ( #48947 )
...
In 6399527761 we changed the path strings
that `node_modules.cc` operates on from single-byte to wide strings.
Unfortunately this means that `generic_path()` that the
"fix: ensure TraverseParent bails on resource path exit" patch was
calling was no longer a safe method to call on Windows if the underlying
string has unicode characters in it.
Here we fix it by using `ConvertGenericPathToUTF8` from the Node.js
internal utilities.
2025-11-13 14:49:48 -08:00
Nikita Skovoroda
b32853b8aa
fix: devtools crashing on Linux in detach mode ( #48926 )
...
Backport of https://github.com/electron/electron/pull/48600
(8756e82b5f24dcda13225968c3655d37f73d195e)
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-11-13 15:28:25 -05:00
trop[bot]
5e9c442b2a
fix: restore window's canHide property on macOS ( #48900 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: bill.shen <15865969+cucbin@users.noreply.github.com >
2025-11-13 15:24:27 -05:00
trop[bot]
c550d938c4
feat: add bypassCustomProtocolHandlers option to net.request ( #48881 )
...
* feat: add bypassCustomProtocolHandlers option to net.request
Co-authored-by: Kai <udbmnm@163.com >
* style: fix lint errors in api-protocol-spec
Co-authored-by: Kai <udbmnm@163.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Kai <udbmnm@163.com >
2025-11-13 10:34:11 -05:00
trop[bot]
9f19d58510
feat: add app.isHardwareAccelerationEnabled() ( #48681 )
...
* feat: add app.isHardwareAccelerationEnabled()
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
* chore: address review feedback
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-11-13 10:33:11 -05:00
trop[bot]
41bcdd71fe
fix: the parent window remained interactive after the modal window was opened ( #48866 )
...
fix: fix the issue where the parent window remained interactive after the modal window was opened in somecases.
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Bill Shen <15865969+cucbin@users.noreply.github.com >
2025-11-13 16:08:29 +01:00
trop[bot]
ca1b9e1c2e
ci: exclude top-level docs files from full CI ( #48897 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-11-11 21:06:44 +01:00
trop[bot]
a9ce0cdf52
fix: ESM-from-CJS import when CJK is in path ( #48876 )
...
* fix: ESM-from-CJS import when CJK is in path
Upstream fix: https://github.com/nodejs/node/pull/60575
Co-authored-by: Fedor Indutny <indutny@signal.org >
* chore: update patches
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Fedor Indutny <indutny@signal.org >
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
2025-11-11 12:21:58 +01:00
Shelley Vohr
3e77a1a359
feat: enable resetting accent color ( #48853 )
2025-11-10 16:45:40 -05:00
trop[bot]
074cedd561
feat: Focus DevTools when breakpoint is triggered ( #48701 )
...
`bringToFront` DevTools message is sent when breakpoint is triggered
or inspect is called and Chromium upon this message activates DevTools
via `DevToolsUIBindings::Delegate::ActivateWindow`:
```
void DevToolsWindow::ActivateWindow() {
if (life_stage_ != kLoadCompleted)
return;
\#if BUILDFLAG(IS_ANDROID)
NOTIMPLEMENTED();
\#else
if (is_docked_ && GetInspectedBrowserWindow())
main_web_contents_->Focus();
else if (!is_docked_ && browser_ && !browser_->window()->IsActive())
browser_->window()->Activate();
\#endif
}
```
which implements: `DevToolsUIBindings::Delegate::ActivateWindow`.
Electron also implements this interface in:
`electron::InspectableWebContents`. However it was only setting
a zoom level, therefore this commit extends it with activation
of the DevTools.
Only supported for DevTools manged by `electron::InspectableWebContents`.
Closes : #37388
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Michał Pichliński <michal.pichlinski@here.io >
2025-11-10 16:41:46 -05:00
trop[bot]
6140359cd3
fix: oom crash in v8 when optimizing wasm ( #48817 )
...
* fix: oom crash in v8 when optimizing wasm
Co-authored-by: deepak1556 <hop2deep@gmail.com >
* chore: update patches
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: deepak1556 <hop2deep@gmail.com >
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
2025-11-08 10:52:10 +01:00
trop[bot]
a924f1a629
fix: CSD window frame tiles properly on Wayland ( #48836 )
...
fix: CSD window frame tiles properly on Linux
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Mitchell Cohen <mitch.cohen@me.com >
2025-11-07 18:41:47 +01:00
trop[bot]
3d5f13a44a
fix(reland): allow disabling all NSMenuItems ( #48829 )
...
* fix: allow disabling all `NSMenuItems` (#48598 )
fix: allow disabling all NSMenuItems
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
* fix: add guard for type
Co-authored-by: George Xu <george.xu@slack-corp.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
Co-authored-by: George Xu <george.xu@slack-corp.com >
2025-11-07 10:37:00 +01:00
trop[bot]
88a4d1c593
fix: revert allow disabling all NSMenuItems, fix menu crash ( #48801 )
...
Revert "fix: allow disabling all `NSMenuItems` (#48598 )"
This reverts commit 0cb4fdd0f2 .
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Keeley Hammond <khammond@slack-corp.com >
v38.6.0
2025-11-06 10:56:16 -08:00
trop[bot]
fea4fadeda
build: use --keep-non-patch flag with git am ( #48806 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
2025-11-06 12:00:11 +01:00
trop[bot]
60ff1a18ac
fix: draw smoothing round rect corner ( #48780 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Bill Shen <15865969+cucbin@users.noreply.github.com >
2025-11-05 18:26:38 -05:00
trop[bot]
4b13582af0
fix: release mouse buttons on focus loss on Wayland ( #48757 )
...
* fix: release mouse buttons on focus loss on Wayland
Co-authored-by: Mitchell Cohen <mitch.cohen@me.com >
* chore: update patches after trop
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Mitchell Cohen <mitch.cohen@me.com >
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
2025-11-04 12:18:56 +01:00
electron-roller[bot]
3083fab4e4
chore: bump node to v22.21.1 (38-x-y) ( #48615 )
...
* chore: bump node in DEPS to v22.21.0
* chore: bump node in DEPS to v22.21.1
* chore: update patches
* lib,src: refactor assert to load error source from memory
nodejs/node#59751
* src: add percentage support to --max-old-space-size
nodejs/node#59082
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
2025-10-30 17:05:42 +01:00
trop[bot]
112489328c
fix: allow disabling all NSMenuItems ( #48710 )
...
fix: allow disabling all NSMenuItems
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-30 12:07:50 +01:00
trop[bot]
8f23e5a426
fix: use correct signal variable in nan-spec-runner install check ( #48708 )
...
The install process spawn was not capturing its own signal variable,
causing the error check to incorrectly reference the build signal
instead. This could lead to:
- Install termination by signal going undetected
- False positive errors when build was killed but install succeeded
This commit ensures the install signal is properly captured and
checked, matching the pattern used for the build process.
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: KinshukSS2 <kinshuk380@gmail.com >
2025-10-29 14:11:29 +01:00
trop[bot]
e308928159
ci: use <sup> in release notes generator ( #48698 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Erick Zhao <erick@hotmail.ca >
v38.5.0
2025-10-28 10:56:59 -04:00
trop[bot]
c1eb83c659
docs: add net.isOnline() to online/offline detection tutorial ( #48684 )
...
* docs: add net.isOnline() to online/offline detection tutorial
Co-authored-by: CuzImSlymi <fridolinojustin@gmail.com >
* chore: make linter happy
docs/tutorial/online-offline-events.md:12:1 MD004/ul-style Unordered list style [Expected: dash; Actual: asterisk]
docs/tutorial/online-offline-events.md:13:1 MD004/ul-style Unordered list style [Expected: dash; Actual: asterisk]
Co-authored-by: Charles Kerr <charles@charleskerr.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: CuzImSlymi <fridolinojustin@gmail.com >
Co-authored-by: Charles Kerr <charles@charleskerr.com >
2025-10-28 08:54:08 +01:00
trop[bot]
16099b6cf5
ci: add more fields to Slack payload for backport requested message ( #48687 )
...
* ci: add more fields to Slack payload for backport requested message
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
* chore: wrap values with toJSON
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
2025-10-27 19:33:04 -07:00
trop[bot]
74952bd7b4
fix: crash when inspector evaluates on provisional frames ( #48513 )
...
* fix: crash when inspector evaluates on provisional frames
Co-authored-by: deepak1556 <hop2deep@gmail.com >
* chore: update .patches
* chore: update patches
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: deepak1556 <hop2deep@gmail.com >
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
2025-10-27 14:14:26 -05:00
trop[bot]
3d59235245
fix: logical bug in install.js env var handling ( #48672 )
...
If either `npm_config_electron_use_remote_checksums` or
`electron_use_remote_checksums` are set as environment variables, then
force Electron to verify with remote checksums instead of embedded ones.
Fixes #48594 .
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com >
2025-10-27 14:47:54 -04:00
trop[bot]
370a737ced
docs: modify the thickFrame doc ( #48678 )
...
* doc: modify the thickFrame doc
Co-authored-by: zoy <zoy-l@outlook.com >
* chore: update description
Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com >
Co-authored-by: zoy <zoy-l@outlook.com >
* update format
Co-authored-by: zoy <zoy-l@outlook.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: zoy <zoy-l@outlook.com >
2025-10-27 12:51:45 -05:00
trop[bot]
6b98259971
docs: fix Ubuntu version used to build Electron ( #48644 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Niklas Wenzel <dev@nikwen.de >
2025-10-27 11:24:55 +01:00
trop[bot]
c1097edd15
feat: enable more granular a11y feature management ( #48626 )
...
* feat: enable more granular a11y feature management
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
* Update docs/api/app.md
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org >
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-27 11:24:23 +01:00
trop[bot]
a0be2f521d
fix: crash on empty dialog extensions array on Windows ( #48660 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-27 09:17:27 +01:00
trop[bot]
d14320748d
docs: security.md mark 'Enable process sandboxing' as active by defau… ( #48649 )
...
* docs: security.md mark 'Enable process sandboxing' as active by default since electron 20
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* Adjusted according to feedback
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* Updated according to feedback - adjusted sandbox.md
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* formatting
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* Fixed broken markup
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* Implemented docs linting suggestions
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
* docs: docs/tutorial/sandbox.md - fixed typo
Co-authored-by: Erick Zhao <erick@hotmail.ca >
Co-authored-by: Teaveloper <49181620+LeUser111@users.noreply.github.com >
* docs: web-preferences.md - sandbox: mention default value and relation to nodeIntegration
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: LeUser111 <florian.wiedenmann@grob.de >
Co-authored-by: Teaveloper <49181620+LeUser111@users.noreply.github.com >
2025-10-24 11:16:38 +02:00
electron-roller[bot]
e840a3f13f
chore: bump chromium to 140.0.7339.249 (38-x-y) ( #48569 )
...
chore: bump chromium in DEPS to 140.0.7339.249
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
2025-10-23 11:57:21 -04:00
trop[bot]
9008cf70f5
fix: background hover contrast for WCO buttons ( #48595 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-23 16:09:53 +02:00
trop[bot]
c9c048196a
fix: icon in Windows toast notification ( #48630 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-22 13:55:41 +02:00
trop[bot]
955afdd92b
fix: trafficLightPosition incorrect with customButtonsOnHover ( #48620 )
...
fix: trafficLightPosition incorrect with customButtonsOnHover
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-21 19:30:59 +02:00
trop[bot]
5e29e21a60
fix: position window titlebar buttons correctly in Ubuntu on Wayland ( #48602 )
...
fix: position window titlebar buttons correctly in Ubuntu on Wayland (#48490 )
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Mitchell Cohen <mitch.cohen@me.com >
v38.4.0
2025-10-21 15:26:57 +02:00
trop[bot]
d0db2ec333
feat: dynamic ESM import in preload without context isolation ( #48489 )
...
Dynamic ESM import in non-context-isolated preload
Extend `HostImportModuleWithPhaseDynamically`'s routing to support
Node.js import resolution in non-context-isolated preloads through
`v8_host_defined_options` length check. The length of host defined
options is distinct between Blink and Node.js and we can use it to
determine which resolver to use.
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Fedor Indutny <indutny@signal.org >
2025-10-21 07:28:25 +02:00
John Kleinschmidt
4a2f733d0a
build: use one build target ( #48527 ) ( #48605 )
...
Optimizes our builds for use with siso/avoids file contention on Windows
2025-10-21 07:26:22 +02:00
trop[bot]
be4805afdd
fix: fixed white flash on call to BrowserWindow.show ( #48560 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Cezary Kulakowski <cezary@openfin.co >
2025-10-16 14:49:17 +02:00
trop[bot]
41721fc82e
fix: enable shader-f16 on windows ( #48555 )
...
* fix: Enable shader-f16 on Windows
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
* fix: include dxil.dll and dxcompiler.dll for windows x64 and arm64
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
* fix: modified to follow the chromium dawn build configuration
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
* fix: include dxil.dll and dxcompiler.dll for windows x86
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
* fix: Modified to avoid explicitly specifying dawn_use_built_dxc
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: creeper-0910 <56744841+creeper-0910@users.noreply.github.com >
2025-10-14 23:46:01 -07:00
trop[bot]
5bc759e08d
fix: auth required websocket crash ( #48539 )
...
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
v38.3.0
2025-10-13 21:39:39 -07:00
electron-roller[bot]
91899aa9af
chore: bump node to v22.20.0 (38-x-y) ( #48381 )
...
* chore: bump node in DEPS to v22.20.0
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-13 18:10:54 +02:00
trop[bot]
4f0b4c7fa8
build: fail publish when upload fatal errors ( #48547 )
...
We logged a fatal error but didn't exit with code 1 so the publish kept going. This was caught by a sanity check later down the release process but would have been quicker to fail out here.
Also adds some code to maybe workaround the underlying auth error
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Samuel Attard <sam@electronjs.org >
2025-10-13 16:53:15 +02:00
trop[bot]
5b32b7b4f3
fix: unexpected openExternal dialog on macOS Tahoe ( #48517 )
...
fix: unexpected openExternal dialog on macOS Tahoe
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-13 10:13:53 +02:00
trop[bot]
e03891eec7
ci: upload build effective cache hit rate stats to Datadog ( #48529 )
...
* ci: upload build effective cache hit rate stats to Datadog
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
* ci: fix release branch name in build stats script
Update branch tag logic to handle release branches.
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com >
2025-10-11 15:54:50 -07:00
trop[bot]
af55e45ce8
fix: dialog.showMessageBox defaultid on Windows ( #48519 )
...
* fix: dialog.showMessageBox defaultid on Windows
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
* Update shell/browser/ui/message_box_win.cc
Co-authored-by: Robo <hop2deep@gmail.com >
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com >
2025-10-11 10:02:29 +02:00
trop[bot]
d1c2d06bae
docs: update Azure Trusted Signing availability ( #48523 )
...
* docs: update Azure Trusted Signing availability
Source: https://github.com/Azure/trusted-signing-action/issues/93#issuecomment-3383517386
Co-authored-by: Niklas Wenzel <dev@nikwen.de >
* docs: remove unused link
Co-authored-by: Niklas Wenzel <dev@nikwen.de >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Niklas Wenzel <dev@nikwen.de >
2025-10-10 12:44:37 -04:00
trop[bot]
2af34b7353
fix: broken transparent window styles on resizable change ( #48499 )
...
* fix: wrong api call
Co-authored-by: zoy <zoy-l@outlook.com >
* fix: consistency of the resize state
Co-authored-by: zoy <zoy-l@outlook.com >
* fix: edge cases
Co-authored-by: zoy <zoy-l@outlook.com >
* chore: add detailed comments
Co-authored-by: zoy <zoy-l@outlook.com >
* fix: lint
Co-authored-by: zoy <zoy-l@outlook.com >
* chore: only windows
Co-authored-by: zoy <zoy-l@outlook.com >
* chore: use transparent
Co-authored-by: zoy <zoy-l@outlook.com >
---------
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: zoy <zoy-l@outlook.com >
2025-10-10 11:35:48 +02:00