ai-notify 0.2.0 → 0.2.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.
@@ -142,6 +142,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate {
142
142
  let slider = NSSlider(value: value, minValue: 0, maxValue: 2, target: self, action: action)
143
143
  slider.frame = NSRect(x: 36, y: 3, width: 170, height: 20)
144
144
  slider.isContinuous = (identifier == nil)
145
+ slider.trackFillColor = .controlAccentColor // stay blue even when not focused
145
146
  if let id = identifier { slider.identifier = NSUserInterfaceItemIdentifier(id) }
146
147
  row.addSubview(icon); row.addSubview(slider)
147
148
  let item = NSMenuItem(); item.view = row
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-notify",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Desktop, sound, and spoken notifications for terminal AI coding agents (Claude Code, Codex, Gemini, ...) — with one mute switch that covers all of them, across every terminal.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.mjs CHANGED
@@ -27,7 +27,7 @@ import {
27
27
  updatePaneSetting,
28
28
  } from './state.mjs';
29
29
 
30
- const VERSION = '0.2.0';
30
+ const VERSION = '0.2.1';
31
31
 
32
32
  const args = process.argv.slice(2);
33
33
  const cmd = args[0];