pi-smart-voice-notify 0.3.3 → 0.3.4
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/CHANGELOG.md +8 -9
- package/README.md +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [0.3.4] - 2026-04-25
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### Added
|
|
6
|
+
- Added shutdown-aware notification lifecycle handling so pending reminders and queued playback stop cleanly during session shutdown
|
|
7
|
+
- Added `session_start.reason` handling for startup, reload, new, resume, and fork session transitions
|
|
6
8
|
|
|
7
9
|
### Changed
|
|
8
|
-
- Updated
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
### Fixed
|
|
13
|
-
- Prevented reminders, notification playback, and webhook queue flushing/retry waits from continuing after session shutdown
|
|
10
|
+
- Updated global extension path documentation to account for `PI_CODING_AGENT_DIR`-aware configuration and debug paths
|
|
11
|
+
- Synchronized package metadata and lockfile for the 0.3.4 patch release while preserving `@mariozechner/pi-*` peer dependency range `^0.70.2`
|
|
12
|
+
- Release note context: `v0.3.2` is not on `main`; no tag or history repair is included in this release prep
|
|
14
13
|
|
|
15
14
|
## [0.3.2] - 2026-04-01
|
|
16
15
|
|
|
@@ -91,7 +90,7 @@
|
|
|
91
90
|
- Rewrote README.md with professional documentation standards
|
|
92
91
|
- Added comprehensive feature documentation, configuration reference, and usage examples
|
|
93
92
|
|
|
94
|
-
##
|
|
93
|
+
## 0.1.0
|
|
95
94
|
|
|
96
95
|
- Standardized repository structure to `index.ts` shim + `src/` implementation.
|
|
97
96
|
- Added config template and package metadata/scripts aligned with Pi extension conventions.
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# 🔔 pi-smart-voice-notify
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/pi-smart-voice-notify) [](LICENSE)
|
|
4
|
+
|
|
3
5
|
Windows-optimized smart notification extension for the Pi coding agent.
|
|
4
6
|
|
|
5
7
|
**pi-smart-voice-notify** monitors Pi session and tool events to alert you via **multi-engine TTS**, **sound playback**, **desktop toast notifications**, and optional **webhook/AI-assisted messaging** when the agent requires your attention.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-smart-voice-notify",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Windows-optimized smart voice, sound, and desktop notifications for Pi coding agent.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
65
|
-
"@mariozechner/pi-tui": "^0.
|
|
64
|
+
"@mariozechner/pi-coding-agent": "^0.70.2",
|
|
65
|
+
"@mariozechner/pi-tui": "^0.70.2"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"node-notifier": "^10.0.1"
|