diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f1eff..d994e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.3.1 + - Click focuses Zed only when its CLI socket is live; otherwise focus a running OpenCode TUI - Do not launch Zed when only the TUI is running - Learn child sessions from Task metadata, `parent_id`, subagent titles, durable event types, and the session list on start so child idle stays silent diff --git a/README.md b/README.md index 914c313..3dd001f 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.3.0"] + "plugin": ["opencode-smart-notify@0.3.1"] } ``` @@ -44,7 +44,7 @@ With options: ```jsonc { - "plugin": [["opencode-smart-notify@0.3.0", { "notifyErrors": false }]] + "plugin": [["opencode-smart-notify@0.3.1", { "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.3.0"] + "plugin": ["github:gabparrot/opencode-smart-notify#v0.3.1"] } ``` @@ -99,7 +99,7 @@ Optional `~/.config/opencode/opencode-smart-notify.json`. Plugin tuple options i ```jsonc { - "plugin": [["opencode-smart-notify@0.3.0", { "notifyErrors": false }]] + "plugin": [["opencode-smart-notify@0.3.1", { "notifyErrors": false }]] } ``` diff --git a/package.json b/package.json index 2cf278f..aa88472 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencode-smart-notify", - "version": "0.3.0", + "version": "0.3.1", "description": "Desktop notifications for OpenCode that stay quiet when auto-approve handles the request", "type": "module", "license": "MIT",