@mmmbuto/nexuscrew 0.8.37 → 0.8.38
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 +25 -0
- package/frontend/dist/assets/{index-BU0QZe1s.js → index-0uO9YgxK.js} +33 -33
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/sw.js +2 -1
- package/frontend/dist/version.json +1 -1
- package/lib/files/routes.js +1 -0
- package/lib/mcp/tools.js +16 -1
- package/lib/notify/language.js +31 -0
- package/lib/notify/notifier.js +3 -1
- package/lib/notify/routes.js +9 -3
- package/package.json +1 -1
- package/skills/nexuscrew-agent/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to NexusCrew are tracked here.
|
|
4
4
|
|
|
5
|
+
## 0.8.38 — 2026-07-25 — "Right Voice"
|
|
6
|
+
|
|
7
|
+
- Adds an optional, validated `lang` field to `nc_notify` and carries it through
|
|
8
|
+
the HTTP API, live event frame and Web Push metadata. Supported Italian,
|
|
9
|
+
English and Spanish locales accept both base and BCP-47 forms such as
|
|
10
|
+
`it-IT`; malformed or unsupported values fail closed.
|
|
11
|
+
- Makes spoken alerts prefer the notification's declared content language
|
|
12
|
+
instead of the interface language. Existing MCP clients that do not yet send
|
|
13
|
+
`lang` retain a conservative compatibility path: only a sufficiently strong
|
|
14
|
+
body-language signal can override the UI fallback, while short and mixed
|
|
15
|
+
technical titles never decide the voice.
|
|
16
|
+
- Normalizes full locale tags, case and whitespace. Unknown language now leaves
|
|
17
|
+
`SpeechSynthesisUtterance.lang` as the empty browser default instead of
|
|
18
|
+
silently forcing `en-US` or assigning a stringified `undefined` sentinel.
|
|
19
|
+
- Selects an installed voice that matches the resolved language when available.
|
|
20
|
+
The cache is populated synchronously, refreshed by `voiceschanged`, never
|
|
21
|
+
delays or reorders the speech queue, and leaves `utterance.voice` untouched
|
|
22
|
+
while the browser reports no matching voices.
|
|
23
|
+
- Labels fixed Italian service notifications for questions and delivered files
|
|
24
|
+
explicitly, preserves the localized preview/priming gate, and keeps all
|
|
25
|
+
existing queue, focus, privacy, redaction and visual-delivery boundaries.
|
|
26
|
+
- Gate: **1,063 isolated Node tests** (1,062 pass / 1 platform skip),
|
|
27
|
+
**300/300 frontend tests**, production PWA build and zero production
|
|
28
|
+
dependency vulnerabilities in both dependency trees.
|
|
29
|
+
|
|
5
30
|
## 0.8.37 — 2026-07-25 — "Wheel History"
|
|
6
31
|
|
|
7
32
|
- Restores desktop mouse-wheel browsing of tmux history inside writable
|