diff --git a/electron/Window.vue b/electron/Window.vue index 017bffa..0456a86 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -300,7 +300,8 @@ nodeIntegration: true, nodeIntegrationInWorker: true, spellcheck: true, - enableRemoteModule: true + enableRemoteModule: true, + contextIsolation: false } } ); diff --git a/electron/chat.ts b/electron/chat.ts index 04034f2..c9e3aa6 100644 --- a/electron/chat.ts +++ b/electron/chat.ts @@ -30,9 +30,6 @@ * @see {@link https://github.com/f-list/exported|GitHub repo} */ -// tslint:disable-next-line:no-submodule-imports no-import-side-effect -import 'core-js/es7/global'; - // import { DebugLogger } from './debug-logger'; // // @ts-ignore // const dl = new DebugLogger('chat'); diff --git a/electron/common.ts b/electron/common.ts index eaddbb3..6bba667 100644 --- a/electron/common.ts +++ b/electron/common.ts @@ -1,6 +1,3 @@ -// tslint:disable-next-line:no-submodule-imports no-import-side-effect -import 'core-js/es7/global'; - import * as electron from 'electron'; import * as path from 'path'; diff --git a/electron/main.ts b/electron/main.ts index aa0284e..084aaa1 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -178,6 +178,8 @@ function setUpWebContents(webContents: electron.WebContents): void { webContents.on('will-navigate', openLinkExternally); + + // webContents.setWindowOpenHandler(openLinkExternally); webContents.on('new-window', openLinkExternally); } diff --git a/electron/webpack.config.js b/electron/webpack.config.js index 8a0073a..e3d29d6 100644 --- a/electron/webpack.config.js +++ b/electron/webpack.config.js @@ -11,8 +11,7 @@ const mainConfig = { entry: [path.join(__dirname, 'main.ts'), path.join(__dirname, 'package.json')], output: { path: __dirname + '/app', - filename: 'main.js', - globalObject: 'global' + filename: 'main.js' }, context: __dirname, target: 'electron-main', @@ -32,7 +31,6 @@ const mainConfig = { ] }, node: { - global: true, __dirname: false, __filename: false }, @@ -106,7 +104,6 @@ const mainConfig = { ] }, node: { - global: true, __dirname: false, __filename: false }, diff --git a/electron/window.ts b/electron/window.ts index c0fc94b..4f043aa 100644 --- a/electron/window.ts +++ b/electron/window.ts @@ -1,6 +1,3 @@ -// tslint:disable-next-line:no-submodule-imports no-import-side-effect -import 'core-js/es7/global'; - import * as qs from 'querystring'; import log from 'electron-log'; //tslint:disable-line:match-default-export-name diff --git a/package.json b/package.json index 12775a6..5764442 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "copy-webpack-plugin": "^6.2.1", "css-loader": "^5.0.0", "date-fns": "^2.16.1", - "electron": "^11.5.0", + "electron": "^13.3.0", "electron-log": "^4.4.1", "electron-packager": "~15.1.0", "electron-rebuild": "^3.2.3", diff --git a/yarn.lock b/yarn.lock index bf44947..31e7c2f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -355,7 +355,7 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.24.tgz#c37ac69cb2948afb4cef95f424fa0037971a9a5c" integrity sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ== -"@types/node@^14.17.0": +"@types/node@^14.17.0", "@types/node@^14.6.2": version "14.17.15" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.15.tgz#d5ebfb62a69074ebb85cbe0529ad917bb8f2bae8" integrity sha512-D1sdW0EcSCmNdLKBGMYb38YsHUS6JcM7yQ6sLQ9KuZ35ck7LYCKE7kYFHOO59ayFOY3zobWVZxf4KXhYHcHYFA== @@ -2661,13 +2661,13 @@ electron-winstaller@^5.0.0: lodash.template "^4.2.2" temp "^0.9.0" -electron@^11.5.0: - version "11.5.0" - resolved "https://registry.yarnpkg.com/electron/-/electron-11.5.0.tgz#f1650543b9d8f2047d3807755bdb120153ed210f" - integrity sha512-WjNDd6lGpxyiNjE3LhnFCAk/D9GIj1rU3GSDealVShhkkkPR3Vh4q8ErXGDl1OAO/faomVa10KoFPUN/pLbNxg== +electron@^13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/electron/-/electron-13.3.0.tgz#5f4f245723dd50fcd2c3d386a1d66fe748af404f" + integrity sha512-d/BvOLDjI4i7yf9tqCuLL2fFGA2TrM/D9PyRpua+rJolG0qrwp/FohP02L0m+44kmPpofIo4l3NPwLmzyKKimA== dependencies: "@electron/get" "^1.0.1" - "@types/node" "^12.0.12" + "@types/node" "^14.6.2" extract-zip "^1.0.3" electron@^7.0.0: