vibemon 1.8.1 → 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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibemon",
3
- "version": "1.8.1",
3
+ "version": "1.9.1",
4
4
  "description": "AI assistant status monitor",
5
5
  "main": "main.js",
6
6
  "bin": {
@@ -42,12 +42,12 @@
42
42
  "dependencies": {
43
43
  "canvas": "^3.2.1",
44
44
  "dotenv": "^17.2.3",
45
- "electron": "^33.0.0",
45
+ "electron": "^35.7.5",
46
46
  "electron-store": "^8.2.0",
47
47
  "ws": "^8.19.0"
48
48
  },
49
49
  "devDependencies": {
50
- "electron-builder": "^25.0.0",
50
+ "electron-builder": "^26.8.1",
51
51
  "eslint": "^9.0.0",
52
52
  "jest": "^29.7.0"
53
53
  },
@@ -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", "sleep", "done", "alert"],
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