vibemon 1.9.0 → 1.9.1
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/modules/tray-manager.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* System tray management for Vibe Monitor
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
const { Tray, Menu, nativeImage, BrowserWindow, ipcMain } = require('electron');
|
|
5
|
+
const { Tray, Menu, nativeImage, BrowserWindow, ipcMain, shell } = require('electron');
|
|
6
6
|
const { createCanvas } = require('canvas');
|
|
7
7
|
const fs = require('fs');
|
|
8
8
|
const path = require('path');
|
|
@@ -619,6 +619,10 @@ class TrayManager {
|
|
|
619
619
|
label: `Version: ${this.app.getVersion()}`,
|
|
620
620
|
enabled: false
|
|
621
621
|
},
|
|
622
|
+
{
|
|
623
|
+
label: 'Docs',
|
|
624
|
+
click: () => shell.openExternal('https://vibemon.io/docs')
|
|
625
|
+
},
|
|
622
626
|
{ type: 'separator' },
|
|
623
627
|
{
|
|
624
628
|
label: 'Quit',
|
package/package.json
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
|
|
62
62
|
"ACTIVE_STATES": ["thinking", "planning", "working", "notification", "packing", "alert"],
|
|
63
63
|
|
|
64
|
-
"VALID_STATES": ["start", "idle", "thinking", "planning", "working", "packing", "notification", "
|
|
64
|
+
"VALID_STATES": ["start", "idle", "thinking", "planning", "working", "packing", "notification", "done", "sleep", "alert"],
|
|
65
65
|
|
|
66
66
|
"CHARACTER_NAMES": ["apto", "clawd", "kiro", "claw"],
|
|
67
67
|
|