Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
```

Expand All @@ -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 }]]
}
```

Expand All @@ -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"]
}
```

Expand Down Expand Up @@ -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 }]]
}
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading