claude-notification-plugin 1.0.106 → 1.0.107
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/bin/listener-cli.js +4 -4
- package/commit-sha +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-notification-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.107",
|
|
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/bin/listener-cli.js
CHANGED
|
@@ -297,8 +297,8 @@ async function setupListener () {
|
|
|
297
297
|
taskTimeoutMinutes: L.taskTimeoutMinutes ?? 30,
|
|
298
298
|
maxQueuePerWorkDir: L.maxQueuePerWorkDir ?? 10,
|
|
299
299
|
maxTotalTasks: L.maxTotalTasks ?? 50,
|
|
300
|
-
logDir: L.logDir || '',
|
|
301
|
-
taskLogDir: L.taskLogDir || '',
|
|
300
|
+
logDir: L.logDir || path.join(home, '.claude'),
|
|
301
|
+
taskLogDir: L.taskLogDir || path.join(home, '.claude'),
|
|
302
302
|
projectPath: L.projects?.default?.path || '',
|
|
303
303
|
};
|
|
304
304
|
|
|
@@ -317,8 +317,8 @@ Press Enter to keep current value shown in [brackets].
|
|
|
317
317
|
const taskTimeoutStr = await ask(rl, `Task timeout, minutes [${defaults.taskTimeoutMinutes}]: `) || String(defaults.taskTimeoutMinutes);
|
|
318
318
|
const maxQueueStr = await ask(rl, `Max queue per work dir [${defaults.maxQueuePerWorkDir}]: `) || String(defaults.maxQueuePerWorkDir);
|
|
319
319
|
const maxTotalStr = await ask(rl, `Max total tasks [${defaults.maxTotalTasks}]: `) || String(defaults.maxTotalTasks);
|
|
320
|
-
const logDir = await ask(rl, `Log dir [${defaults.logDir
|
|
321
|
-
const taskLogDir = await ask(rl, `Task log dir [${defaults.taskLogDir
|
|
320
|
+
const logDir = await ask(rl, `Log dir [${defaults.logDir}]: `) || defaults.logDir;
|
|
321
|
+
const taskLogDir = await ask(rl, `Task log dir [${defaults.taskLogDir}]: `) || defaults.taskLogDir;
|
|
322
322
|
const projectPath = await ask(rl, `Default project path [${defaults.projectPath || '(none)'}]: `) || defaults.projectPath;
|
|
323
323
|
|
|
324
324
|
rl.close();
|
package/commit-sha
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
c5e25e27c544bccfb19bcac820c751c4279d3a2e
|
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.0.
|
|
4
|
+
"version": "1.0.107",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|