update electron to v43

This commit is contained in:
olcxja 2026-07-09 22:38:33 +02:00
commit fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions

View file

@ -3,6 +3,8 @@ const semver = require("semver");
// These are sourced from here:
// https://nodejs.org/api/n-api.html#n_api_node_api_version_matrix
const nodeApiVersionRanges = [
[">=24 || ^22.14 || ^23.6", 10],
[">=21 || ^18.17 || ^20.3", 9],
[">=16 || ^15.12 || ^12.22", 8],
[">=15 || ^14.12 || ^12.19 || ^10.23", 7],
[">=14 || ^12.17 || ^10.20", 6],
@ -27,18 +29,13 @@ exports.fromNodeVersion = fromNodeVersion;
const electronNapiVersions =
// replace-start
[
["15.0.0-nightly.20210617", 8],
["12.0.0-nightly.20201013", 7],
["12.0.0-nightly.20200827", 6],
["35.0.0-beta.8", 10],
["35.0.0-alpha.1", 8],
["27.0.0-alpha.1", 9],
["15.0.0-alpha.1", 8],
["12.0.0-beta.1", 7],
["11.0.0-nightly.20200618", 6],
["11.0.0-nightly.20200525", 5],
["11.0.0-beta.1", 6],
["8.0.0-nightly.20191019", 5],
["8.0.0-nightly.20190801", 4],
["8.0.0-beta.1", 5],
["5.0.0-nightly.20190121", 4],
["5.0.0-nightly.20190107", 3],
["5.0.0-beta.1", 4],
["3.0.0-beta.1", 3],
];