Skip to content

Commit 49403c6

Browse files
committed
fixing typo's
1 parent 9189f43 commit 49403c6

3 files changed

Lines changed: 2 additions & 11 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openconvert",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "All in one file converter",
55
"main": "./out/main/index.js",
66
"author": "utmp",

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ onlyBuiltDependencies:
22
- electron
33
- esbuild
44
- sharp
5+
- sqlite3

src/main/initPlugin.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,16 +99,6 @@ export async function checkPluginInstalled() {
9999
if (!exists) {
100100
return false;
101101
}
102-
await new Promise((resolve, reject) => {
103-
execFile(pluginPath, ['--version'], (error, stdout, stderr) => {
104-
if (error) {
105-
reject(error);
106-
} else {
107-
resolve(stdout);
108-
}
109-
});
110-
});
111-
112102
return true;
113103
} catch (error) {
114104
console.error('Plugin check failed:', error);

0 commit comments

Comments
 (0)