Merge pull request #10392 from vector-im/jryans/electron-5

Upgrade to Electron 5
This commit is contained in:
J. Ryan Stinnett 2019-07-23 10:02:05 +01:00 committed by GitHub
commit 55e2f18d1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 14 deletions

View File

@ -1,7 +1,7 @@
/* /*
Copyright 2016 Aviral Dasgupta Copyright 2016 Aviral Dasgupta
Copyright 2016 OpenMarket Ltd Copyright 2016 OpenMarket Ltd
Copyright 2018 New Vector Ltd Copyright 2018, 2019 New Vector Ltd
Copyright 2017, 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2017, 2019 Michael Telatynski <7t3chguy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
@ -211,7 +211,14 @@ const launcher = new AutoLaunch({
// work. // work.
// Also mark it as secure (ie. accessing resources from this // Also mark it as secure (ie. accessing resources from this
// protocol and HTTPS won't trigger mixed content warnings). // protocol and HTTPS won't trigger mixed content warnings).
protocol.registerStandardSchemes(['vector'], {secure: true}); protocol.registerSchemesAsPrivileged([{
scheme: 'vector',
privileges: {
standard: true,
secure: true,
supportFetchAPI: true,
},
}]);
app.on('ready', () => { app.on('ready', () => {
if (argv['devtools']) { if (argv['devtools']) {

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2018 New Vector Ltd Copyright 2018, 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -14,16 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
const { ipcRenderer, webFrame } = require('electron'); const { ipcRenderer } = require('electron');
// expose ipcRenderer to the renderer process // expose ipcRenderer to the renderer process
window.ipcRenderer = ipcRenderer; window.ipcRenderer = ipcRenderer;
// Allow the fetch API to load resources from this
// protocol: this is necessary to load olm.wasm.
// (Also mark it a secure although we've already
// done this in the main process).
webFrame.registerURLSchemeAsPrivileged('vector', {
secure: true,
supportFetchAPI: true,
});

View File

@ -154,7 +154,7 @@
}, },
"build": { "build": {
"appId": "im.riot.app", "appId": "im.riot.app",
"electronVersion": "4.2.6", "electronVersion": "5.0.7",
"files": [ "files": [
"node_modules/**", "node_modules/**",
"src/**" "src/**"