From 99b5695fec6e557ef34afba734c96b65d063b732 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 11 Jan 2019 17:20:29 -0600 Subject: [PATCH 1/2] Fix SdkConfig import to use transformed module This was originally added in #7755, which pulled in the original source for the module, breaking ancient browsers without support for classes (#8082). --- src/vector/rageshakesetup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/rageshakesetup.js b/src/vector/rageshakesetup.js index 7992df2b47..4c37624959 100644 --- a/src/vector/rageshakesetup.js +++ b/src/vector/rageshakesetup.js @@ -26,7 +26,7 @@ limitations under the License. */ import rageshake from "matrix-react-sdk/lib/rageshake/rageshake"; -import SdkConfig from "matrix-react-sdk/src/SdkConfig"; +import SdkConfig from "matrix-react-sdk/lib/SdkConfig"; function initRageshake() { rageshake.init().then(() => { From 3236f72031bf4d772e8ac88eccc31bf0fe31b76b Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 17 Jan 2019 10:16:15 +0000 Subject: [PATCH 2/2] Electron 4.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6832e9ceb5..537f482962 100644 --- a/package.json +++ b/package.json @@ -150,7 +150,7 @@ }, "build": { "appId": "im.riot.app", - "electronVersion": "3.0.10", + "electronVersion": "4.0.1", "files": [ "node_modules/**", "src/**",