diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f4d260..c48bb20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.3.0 + - Skip child / subagent session notifications by default; `notifySubagents: true` restores them - Notify when an agent finishes (`session.status` idle / `session.idle` → `opencode idle`) - Stay silent on idle after ESC / `MessageAbortedError`, a real error, or an idle with no prior busy turn diff --git a/README.md b/README.md index fa06389..97a8294 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Add the plugin to `~/.config/opencode/opencode.json` or `opencode.jsonc`: ```jsonc { - "plugin": ["opencode-smart-notify@0.2.0"] + "plugin": ["opencode-smart-notify@0.3.0"] } ``` @@ -44,7 +44,7 @@ With options: ```jsonc { - "plugin": [["opencode-smart-notify@0.2.0", { "notifyErrors": false }]] + "plugin": [["opencode-smart-notify@0.3.0", { "notifyErrors": false }]] } ``` @@ -56,7 +56,7 @@ Do not run this alongside `opencode-notify` or you will get duplicate popups. ```jsonc { - "plugin": ["github:gabparrot/opencode-smart-notify#v0.2.0"] + "plugin": ["github:gabparrot/opencode-smart-notify#v0.3.0"] } ``` @@ -99,7 +99,7 @@ Optional `~/.config/opencode/opencode-smart-notify.json`. Plugin tuple options i ```jsonc { - "plugin": [["opencode-smart-notify@0.2.0", { "notifyErrors": false }]] + "plugin": [["opencode-smart-notify@0.3.0", { "notifyErrors": false }]] } ``` diff --git a/package.json b/package.json index 49b84ab..2cf278f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencode-smart-notify", - "version": "0.2.0", + "version": "0.3.0", "description": "Desktop notifications for OpenCode that stay quiet when auto-approve handles the request", "type": "module", "license": "MIT",