@gymmymac/bob-widget 3.2.4 → 3.2.5
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 +9 -0
- package/dist/__tests__/v325BugFixes.test.d.ts +9 -0
- package/dist/index.js +23 -23
- package/dist/index.mjs +2342 -2341
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to the `@gymmymac/bob-widget` package will be documented in
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v3.2.5] - 2026-03-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- 🔇 **Bug #1 — Quick-Reply Speech Stop**: Quick-reply/suggestion buttons now call `onInterrupt()` to stop all active speech before triggering `onNavigate`, preventing jarring audio overlap during navigation
|
|
12
|
+
- 🎛️ **Bug #2 — Imperative Stop Handle**: `BobStandaloneHandle.stopSpeech()` / `.interrupt()` now calls `stopAllAudio` (TTS + canned clips + searching audio) instead of only cancelling TTS — host apps can now fully silence Bob via ref
|
|
13
|
+
- 🎤 **Bug #3 — PTT Interrupt During Canned Audio**: Composite `isSpeaking` state now tracks both TTS and audio controller playback, so the PTT button correctly detects the `speaking` state during pre-recorded clips and interrupts immediately on tap
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
8
17
|
## [v3.2.4] - 2026-03-09
|
|
9
18
|
|
|
10
19
|
### Fixed
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* v3.2.5 Bug Fix Regression Tests
|
|
3
|
+
*
|
|
4
|
+
* Covers three critical CARFIX production bugs:
|
|
5
|
+
* Bug #1 — Quick-reply buttons must call onInterrupt before onQuickReply (stop speech before navigating)
|
|
6
|
+
* Bug #2 — Imperative handle must call stopAllAudio (TTS + canned + searching), not just stopSpeech
|
|
7
|
+
* Bug #3 — Composite isSpeaking must be true when EITHER TTS or audio controller is playing
|
|
8
|
+
*/
|
|
9
|
+
export {};
|