pi-smart-voice-notify 0.2.0 → 0.2.2
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 +41 -35
- package/README.md +288 -288
- package/config/config.example.json +170 -170
- package/index.ts +3 -3
- package/package.json +61 -53
- package/src/abortable-command.test.ts +45 -45
- package/src/abortable-command.ts +151 -151
- package/src/ai-messages.ts +473 -479
- package/src/config-store.ts +1048 -1041
- package/src/desktop-notify.ts +2 -8
- package/src/focus-detect.ts +389 -395
- package/src/index.test.ts +429 -429
- package/src/index.ts +1392 -1398
- package/src/linux.ts +344 -344
- package/src/notify-audio.ts +431 -431
- package/src/per-project-sound.ts +338 -338
- package/src/permission-forwarding-watcher.ts +377 -383
- package/src/reminder-playback.test.ts +62 -62
- package/src/reminder-playback.ts +148 -148
- package/src/sound-theme.ts +533 -582
- package/src/tts.ts +703 -709
- package/src/types/linux.ts +30 -30
- package/src/types/msedge-tts.d.ts +14 -14
- package/src/types/tts.ts +95 -95
- package/src/types.ts +189 -189
- package/src/webhook.ts +668 -668
- package/src/zellij-modal.ts +999 -999
package/CHANGELOG.md
CHANGED
|
@@ -1,35 +1,41 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [0.2.
|
|
4
|
-
|
|
5
|
-
###
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
### Fixed
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
## 0.1.
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.2.2] - 2026-03-12
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Refactored to use shared `toRecord` utility, removing duplicate implementation
|
|
7
|
+
- Consolidated exports and simplified `index.ts`
|
|
8
|
+
|
|
9
|
+
## [0.2.0] - 2026-03-07
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Added multi-engine TTS support with auto selection plus Edge, espeak-ng, ElevenLabs, OpenAI-compatible, and SAPI backends.
|
|
13
|
+
- Added forwarded permission request watching, reminder playback control, Linux wake/focus helpers, per-project sound discovery, webhook delivery, and AI-generated notification message support.
|
|
14
|
+
- Added targeted tests for abortable commands, reminder playback, and forwarded-permission notification flows.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Expanded configuration normalization and example config to cover nested reminder, webhook, AI-message, focus-detection, and sound-theme settings while keeping legacy keys compatible.
|
|
18
|
+
- Improved notification orchestration so reminder scheduling, focused-terminal suppression, and desktop/audio delivery can share richer runtime context.
|
|
19
|
+
- Switched the test runner to Node's built-in TypeScript stripping support and raised the documented runtime baseline to Node.js 24.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- Restored the package test workflow so the published repo can run its checked-in TypeScript tests without a missing loader file.
|
|
23
|
+
- Updated README documentation to cover the new engines, watchers, webhook/AI integrations, and sound-theme behavior.
|
|
24
|
+
|
|
25
|
+
## [0.1.2] - 2026-03-04
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- Use absolute GitHub raw URL for README image to fix npm display
|
|
29
|
+
|
|
30
|
+
## [0.1.1] - 2026-03-04
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
- Rewrote README.md with professional documentation standards
|
|
34
|
+
- Added comprehensive feature documentation, configuration reference, and usage examples
|
|
35
|
+
|
|
36
|
+
## 0.1.0
|
|
37
|
+
|
|
38
|
+
- Standardized repository structure to `index.ts` shim + `src/` implementation.
|
|
39
|
+
- Added config template and package metadata/scripts aligned with Pi extension conventions.
|
|
40
|
+
- Vendored `zellij-modal` into this repository to remove cross-extension imports.
|
|
41
|
+
- Modularized implementation into config store, logging, and audio notification modules while preserving runtime behavior.
|