From f542bda6d2eaa91e28bcc8b3364ac7ecd940a748 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 19 Mar 2022 15:22:26 -0700 Subject: [PATCH] Electron 17 --- README.md | 3 ++ chat/preview/ImagePreview.vue | 6 +-- learn/dictionary/WordDefinition.vue | 5 +- package.json | 6 +-- yarn.lock | 79 +++++++++++++++++++---------- 5 files changed, 62 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index e35aa87..d1b11a7 100644 --- a/README.md +++ b/README.md @@ -181,3 +181,6 @@ Note: Adding *and upgrading* dependencies should only be done with prior conside That's why `yarn.lock` exists and is version controlled. To upgrade NPM dependencies, run `yarn upgrade` locally. Run `yarn outdated` to see pending upgrades. + +If you encounter error 'Could not detect abi for version X.X.X and runtime electron', try running +`npx uuaw node-abi` diff --git a/chat/preview/ImagePreview.vue b/chat/preview/ImagePreview.vue index bc76f8f..642d373 100644 --- a/chat/preview/ImagePreview.vue +++ b/chat/preview/ImagePreview.vue @@ -57,7 +57,7 @@ CharacterPreviewHelper, RenderStyle } from './helper'; - import {Point, WebviewTag} from 'electron'; + import {Point} from 'electron'; import * as remote from '@electron/remote'; import Timer = NodeJS.Timer; @@ -614,8 +614,8 @@ } - getWebview(): WebviewTag { - return this.$refs.imagePreviewExt as WebviewTag; + getWebview(): Electron.WebviewTag { + return this.$refs.imagePreviewExt as Electron.WebviewTag; } diff --git a/learn/dictionary/WordDefinition.vue b/learn/dictionary/WordDefinition.vue index 637c55a..0c99d9e 100644 --- a/learn/dictionary/WordDefinition.vue +++ b/learn/dictionary/WordDefinition.vue @@ -16,7 +16,6 @@