claude-notification-plugin 1.1.89 → 1.1.90
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/.claude-plugin/plugin.json +1 -1
- package/commit-sha +1 -1
- package/listener/listener.js +4 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.90",
|
|
4
4
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Viacheslav Makarov",
|
package/commit-sha
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3ff3888c80833878b3240fd6344ed8f5d3d06c17
|
package/listener/listener.js
CHANGED
|
@@ -218,8 +218,10 @@ async function runWatchdog () {
|
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
// 1. Initial watchdog sweep on startup
|
|
222
|
-
|
|
221
|
+
// 1. Initial watchdog sweep on startup. Must finish before orphan recovery,
|
|
222
|
+
// otherwise orphan recovery sees the stale active (still set) and re-spawns
|
|
223
|
+
// the killed task while watchdog is still awaiting its Telegram notify.
|
|
224
|
+
await runWatchdog();
|
|
223
225
|
|
|
224
226
|
// 2. Re-start orphaned active tasks (PTY sessions lost on restart)
|
|
225
227
|
for (const [workDir, entry] of Object.entries(queue.queues)) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
3
|
"productName": "claude-notification-plugin",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.90",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|