claude-notification-plugin 1.0.50 → 1.0.52
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/uninstall.js +11 -0
- 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.52",
|
|
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/uninstall.js
CHANGED
|
@@ -46,8 +46,19 @@ for (const file of [configPath, statePath]) {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
// Remove plugin cache (old versions left by Claude Code)
|
|
50
|
+
const pluginCacheDir = path.join(claudeDir, 'plugins', 'cache', 'bazilio-plugins', 'claude-notification-plugin');
|
|
51
|
+
let cacheRemoved = false;
|
|
52
|
+
if (fs.existsSync(pluginCacheDir)) {
|
|
53
|
+
fs.rmSync(pluginCacheDir, { recursive: true, force: true });
|
|
54
|
+
cacheRemoved = true;
|
|
55
|
+
}
|
|
56
|
+
|
|
49
57
|
console.log('');
|
|
50
58
|
console.log('Claude Notification Plugin uninstalled.');
|
|
51
59
|
console.log('Hooks removed from settings.json');
|
|
52
60
|
console.log('Config files deleted.');
|
|
61
|
+
if (cacheRemoved) {
|
|
62
|
+
console.log('Plugin cache cleaned.');
|
|
63
|
+
}
|
|
53
64
|
console.log('');
|
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.52",
|
|
5
5
|
"description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|