Skip to content

Commit 25fd683

Browse files
committed
Bump electron version to 13.1.1
1 parent af7ff1e commit 25fd683

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

installers/nix/electron.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
libdrm, libxkbcommon, mesa }:
33

44
let
5-
version = "13.1.0";
5+
version = "13.1.1";
66
name = "electron-${version}";
77

88
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
@@ -21,19 +21,19 @@ let
2121
src = {
2222
i686-linux = fetchurl {
2323
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-ia32.zip";
24-
sha256 = "e4d8cc19689b1f9c00894bb776083f8543abeba9203d3297268c1644f1300355";
24+
sha256 = "fed00edaaba0c4a615fe835baf7d0d0ff893dff902800006bf63cc994c24d3dd";
2525
};
2626
x86_64-linux = fetchurl {
2727
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip";
28-
sha256 = "6681078971d2e99e9f8b3c598de65869d3596356af901bbbabcc4860c0496bb4";
28+
sha256 = "eb6ae81d71a4d390ec5140d907b191a84c37621176eec9369bb6fc3bf8570e3b";
2929
};
3030
armv7l-linux = fetchurl {
3131
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-armv7l.zip";
32-
sha256 = "ac5a19e31fd83db5775a2af57f742c7b3e5fc4528958329ec3c81f82e7bd611a";
32+
sha256 = "7e745a38c6761fa9826b3b9b8d0bd060126a3949da6f3f09f11b842e5e22cee4";
3333
};
3434
aarch64-linux = fetchurl {
3535
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-arm64.zip";
36-
sha256 = "0ed0cc3afae5cc7e1e6c6204866a1cecdf97e0ab658789e8951842bd0d28e1bb";
36+
sha256 = "445c88e9c9b33abbdb263103736fb5203938b0643bc5377fbdf12b444d26f211";
3737
};
3838
}.${stdenv.hostPlatform.system} or throwSystem;
3939

@@ -66,11 +66,11 @@ let
6666
src = {
6767
x86_64-darwin = fetchurl {
6868
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-x64.zip";
69-
sha256 = "d62a561e80fcbcb0f249e74c487313192451046f288478add65be997793831de";
69+
sha256 = "1594ba9aa2e2aa059a03e6b70e16b8116de1998b38f8360801e113fa8d72938c";
7070
};
7171
aarch64-darwin = fetchurl {
7272
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-arm64.zip";
73-
sha256 = "6da46d2861011263af2953a3e0186735e54708c01c50967ff5f8ed71b73f7fea";
73+
sha256 = "7045538917c36214127b7f11a3223396c7199ac19e989e5648a0963773962e6c";
7474
};
7575
}.${stdenv.hostPlatform.system} or throwSystem;
7676

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
"classnames": "2.2.6",
188188
"csv-stringify": "5.5.1",
189189
"cucumber-html-reporter": "5.2.0",
190-
"electron": "13.1.0",
190+
"electron": "13.1.1",
191191
"electron-log-daedalus": "2.2.21",
192192
"electron-store": "8.0.0",
193193
"es6-error": "4.1.1",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5994,9 +5994,9 @@ electron-to-chromium@^1.3.723:
59945994
version "1.3.768"
59955995
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.768.tgz#bbe47394f0073c947168589b7d19388518a7a9a9"
59965996

5997-
5998-
version "13.1.0"
5999-
resolved "https://registry.yarnpkg.com/electron/-/electron-13.1.0.tgz#6d960bcc0dfb8663dd511b59a697e2fad35b2b6a"
5997+
5998+
version "13.1.1"
5999+
resolved "https://registry.yarnpkg.com/electron/-/electron-13.1.1.tgz#de1ea908bcac2197d7a5a373fb68c0c66043e10e"
60006000
dependencies:
60016001
"@electron/get" "^1.0.1"
60026002
"@types/node" "^14.6.2"

yarn2nix.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ let
3333
main = "main/index.js";
3434
};
3535
newPackagePath = builtins.toFile "package.json" (builtins.toJSON newPackage);
36-
windowsElectronVersion = "13.1.0";
36+
windowsElectronVersion = "13.1.1";
3737
electronPath = "https://github.com/electron/electron/releases/download/v${windowsElectronVersion}";
3838
windowsElectron = fetchurl {
3939
url = "${electronPath}/electron-v${windowsElectronVersion}-win32-x64.zip";
40-
sha256 = "dea5e784471828dedb294801f0d35a11459b2a940b6b60ed80c2c19eccd4d8f2";
40+
sha256 = "2f8932aec40882381e839eee34998f9b1d48292f425735d8dc9a45cc3d75cb41";
4141
};
4242
electronPathHash = builtins.hashString "sha256" electronPath;
4343
electron-cache = runCommand "electron-cache" {} ''

0 commit comments

Comments
 (0)