vibemon 1.6.1 → 1.7.0
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 +1 -1
- package/modules/tray-manager.cjs +15 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
See at a glance what your AI assistant is doing — thinking, working, or waiting for input. A cute pixel art character visually represents the current state.
|
|
10
10
|
|
|
11
|
-

|
|
12
12
|
|
|
13
13
|
## Supported Tools
|
|
14
14
|
|
package/modules/tray-manager.cjs
CHANGED
|
@@ -567,11 +567,6 @@ class TrayManager {
|
|
|
567
567
|
label: 'Windows',
|
|
568
568
|
submenu: this.buildWindowsSubmenu()
|
|
569
569
|
},
|
|
570
|
-
{ type: 'separator' },
|
|
571
|
-
{
|
|
572
|
-
label: 'Always on Top',
|
|
573
|
-
submenu: this.buildAlwaysOnTopSubmenu()
|
|
574
|
-
},
|
|
575
570
|
{
|
|
576
571
|
label: 'Rearrange',
|
|
577
572
|
enabled: windowCount > 1 && this.windowManager.isMultiMode(),
|
|
@@ -579,6 +574,11 @@ class TrayManager {
|
|
|
579
574
|
this.windowManager.arrangeWindowsByName();
|
|
580
575
|
}
|
|
581
576
|
},
|
|
577
|
+
{ type: 'separator' },
|
|
578
|
+
{
|
|
579
|
+
label: 'Always on Top',
|
|
580
|
+
submenu: this.buildAlwaysOnTopSubmenu()
|
|
581
|
+
},
|
|
582
582
|
{
|
|
583
583
|
label: 'Multi-Window Mode',
|
|
584
584
|
type: 'checkbox',
|
|
@@ -589,6 +589,16 @@ class TrayManager {
|
|
|
589
589
|
this.updateMenu();
|
|
590
590
|
}
|
|
591
591
|
},
|
|
592
|
+
{
|
|
593
|
+
label: 'Open at Login',
|
|
594
|
+
type: 'checkbox',
|
|
595
|
+
checked: this.app.getLoginItemSettings().openAtLogin,
|
|
596
|
+
click: () => {
|
|
597
|
+
const current = this.app.getLoginItemSettings().openAtLogin;
|
|
598
|
+
this.app.setLoginItemSettings({ openAtLogin: !current });
|
|
599
|
+
this.updateMenu();
|
|
600
|
+
}
|
|
601
|
+
},
|
|
592
602
|
...(this.windowManager.isMultiMode() ? [] : [{
|
|
593
603
|
label: 'Project Lock',
|
|
594
604
|
submenu: this.buildProjectLockSubmenu()
|