vibemon 1.6.2 → 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.
@@ -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()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibemon",
3
- "version": "1.6.2",
3
+ "version": "1.7.0",
4
4
  "description": "AI assistant status monitor",
5
5
  "main": "main.js",
6
6
  "bin": {