@wrongstack/desktop 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/main.js +6 -1
- package/package.json +5 -5
package/dist/main/main.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
// src/main/main.ts
|
|
2
2
|
import * as path6 from "node:path";
|
|
3
3
|
import { watchProviderConfig } from "@wrongstack/core/storage";
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
hardenWin32ExecutableSearch,
|
|
6
|
+
installCrashShield,
|
|
7
|
+
resolveWstackPaths as resolveWstackPaths3
|
|
8
|
+
} from "@wrongstack/core/utils";
|
|
5
9
|
import {
|
|
6
10
|
app as app2,
|
|
7
11
|
BaseWindow,
|
|
@@ -3601,6 +3605,7 @@ async function boot() {
|
|
|
3601
3605
|
shellView.webContents.focus();
|
|
3602
3606
|
}
|
|
3603
3607
|
installCrashShield();
|
|
3608
|
+
hardenWin32ExecutableSearch();
|
|
3604
3609
|
app2.whenReady().then(boot, (error) => {
|
|
3605
3610
|
const detail = error instanceof Error ? error.stack ?? error.message : String(error);
|
|
3606
3611
|
dialog.showErrorBox("WrongStack failed to start", detail);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/desktop",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack Desktop - Electron shell for managing multiple local WrongStack runtimes.",
|
|
6
6
|
"author": "WrongStack contributors",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"!dist/**/*.map"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@wrongstack/core": "1.0.
|
|
37
|
-
"@wrongstack/webui": "1.0.
|
|
38
|
-
"@wrongstack/webui-protocol": "1.0.
|
|
39
|
-
"@wrongstack/webui-server": "1.0.
|
|
36
|
+
"@wrongstack/core": "1.0.14",
|
|
37
|
+
"@wrongstack/webui": "1.0.14",
|
|
38
|
+
"@wrongstack/webui-protocol": "1.0.14",
|
|
39
|
+
"@wrongstack/webui-server": "1.0.14",
|
|
40
40
|
"react": "^19.3.0",
|
|
41
41
|
"react-dom": "^19.3.0",
|
|
42
42
|
"ws": "^8.21.3",
|