v1.0.1 - Windows tray fix
Patch release fixing the Windows tray silently starting headless (no icon).
What was wrong
start-daemon.bat could launch the daemon under a Python that lacked pystray/Pillow — the py/pyw launcher does not always resolve the same interpreter the deps were installed into (the Microsoft Store Python installs to a sandboxed location another launch can't import). The daemon then fell back to headless with no tray icon. The log showed pystray/Pillow not installed - running headless.
Fix
The Windows launchers now pin a self-contained .venv (same as install.sh on macOS/Linux):
install.batcreates.venv, installs deps into it, and registers autostart to use itstart-daemon.batlaunches the.venvinterpreter (CLAWDMETER_PYTHONWstill overrides)uninstall.batremoves the autostart entry directly, without needing Python
Upgrading
Re-run install.bat to create the .venv and re-register autostart, then start-daemon.bat. If the icon still seems missing, check the Windows 11 ⌃ overflow area and drag it onto the taskbar.
Full details in CHANGELOG.md.