@quanta-intellect/vessel-browser 0.1.74 → 0.1.78
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/README.md +6 -0
- package/out/main/index.js +3 -0
- package/out/renderer/assets/{index-veJlL6xh.js → index-CN6FK63X.js} +2118 -1506
- package/out/renderer/index.html +1 -1
- package/package.json +19 -14
package/README.md
CHANGED
|
@@ -61,7 +61,10 @@ curl -fsSL https://raw.githubusercontent.com/unmodeled-tyler/quanta-vessel-brows
|
|
|
61
61
|
|
|
62
62
|
### Development From Source
|
|
63
63
|
|
|
64
|
+
Vessel development uses Node.js 22. If you use `fnm`, run `fnm use` from the repo root to pick up `.node-version`.
|
|
65
|
+
|
|
64
66
|
```bash
|
|
67
|
+
fnm use
|
|
65
68
|
npm install
|
|
66
69
|
npm run dev
|
|
67
70
|
```
|
|
@@ -189,6 +192,9 @@ vessel-browser
|
|
|
189
192
|
```
|
|
190
193
|
|
|
191
194
|
```bash
|
|
195
|
+
# Use the pinned Node.js 22 runtime
|
|
196
|
+
fnm use
|
|
197
|
+
|
|
192
198
|
# Install dependencies
|
|
193
199
|
npm install
|
|
194
200
|
|
package/out/main/index.js
CHANGED
|
@@ -25490,6 +25490,9 @@ function registerIpcHandlers(windowState, runtime2) {
|
|
|
25490
25490
|
});
|
|
25491
25491
|
electron.ipcMain.handle(Channels.SETTINGS_VISIBILITY, (_, open) => {
|
|
25492
25492
|
windowState.uiState.settingsOpen = open;
|
|
25493
|
+
if (open) {
|
|
25494
|
+
windowState.uiState.sidebarOpen = false;
|
|
25495
|
+
}
|
|
25493
25496
|
layoutViews(windowState);
|
|
25494
25497
|
return windowState.uiState.settingsOpen;
|
|
25495
25498
|
});
|