@mmmbuto/nexuscrew 0.8.35 → 0.8.37
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 +51 -0
- package/README.md +90 -501
- package/frontend/dist/assets/index-BU0QZe1s.js +93 -0
- package/frontend/dist/index.html +1 -1
- package/frontend/dist/version.json +1 -1
- package/lib/cli/fleet-service.js +22 -7
- package/lib/cli/service.js +107 -7
- package/lib/settings/routes.js +5 -7
- package/package.json +1 -1
- package/frontend/dist/assets/index-BeTp29rp.js +0 -93
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,57 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to NexusCrew are tracked here.
|
|
4
4
|
|
|
5
|
+
## 0.8.37 — 2026-07-25 — "Wheel History"
|
|
6
|
+
|
|
7
|
+
- Restores desktop mouse-wheel browsing of tmux history inside writable
|
|
8
|
+
alternate-screen TUIs such as Codex, Claude, vim, less and htop. A normal
|
|
9
|
+
wheel gesture now enters or advances tmux copy-mode instead of accumulating
|
|
10
|
+
against a page-sized threshold and appearing inert.
|
|
11
|
+
- Keeps an explicit escape hatch for applications that own their viewport:
|
|
12
|
+
`Shift` + wheel continues to send raw PageUp/PageDown input. Normal-screen
|
|
13
|
+
and readonly terminals remain server-side, mode changes discard incompatible
|
|
14
|
+
remainders, and action bursts stay bounded.
|
|
15
|
+
- Leaves the mobile touch path unchanged. Finger drag continues to browse tmux
|
|
16
|
+
history with the existing touch-specific scroll override.
|
|
17
|
+
- Replaces the mismatched animated mobile showcase in the public README with
|
|
18
|
+
one consistently scaled static terminal view and removes the obsolete GIF.
|
|
19
|
+
- Gate: **1,059 isolated Node tests** (1,058 pass / 1 platform skip),
|
|
20
|
+
**295/295 frontend tests**, production PWA build (168 modules) and zero
|
|
21
|
+
production dependency vulnerabilities in both dependency trees.
|
|
22
|
+
|
|
23
|
+
## 0.8.36 — 2026-07-24 — "Clean Relaunch"
|
|
24
|
+
|
|
25
|
+
- Makes macOS service and Fleet LaunchAgent reinstalls wait until `launchd`
|
|
26
|
+
has actually removed the previous job before bootstrapping the replacement,
|
|
27
|
+
preventing intermittent unload/bootstrap races during upgrades.
|
|
28
|
+
- Bounds the unload check to five seconds and fails closed instead of leaving a
|
|
29
|
+
partially applied activation when a successfully stopped job never
|
|
30
|
+
disappears.
|
|
31
|
+
- Keeps Settings service regeneration non-activating on every platform: the
|
|
32
|
+
unit is rewritten atomically, but applying it still requires the explicit
|
|
33
|
+
service restart already shown by the UI.
|
|
34
|
+
- Adds opt-in, browser-local spoken alerts for new live PWA notifications.
|
|
35
|
+
Enabling the setting runs an honest native delivery test and speech remains
|
|
36
|
+
gated on a successful test for the current page session; unsupported, silent
|
|
37
|
+
or failing engines degrade without affecting the visual toast or SSE channel.
|
|
38
|
+
- Speaks only from the visible, focused NexusCrew window and cancels on blur,
|
|
39
|
+
background, opt-out or unmount. Duplicate reconnect frames are suppressed
|
|
40
|
+
for 60 seconds, the normal queue keeps at most the two newest pending alerts,
|
|
41
|
+
high urgency preempts it, and a 30-second watchdog advances past a stuck
|
|
42
|
+
browser utterance.
|
|
43
|
+
- Leaves Web Push unchanged as the best-effort hidden/closed-app path. Speech
|
|
44
|
+
uses the device voice and current UI language without a server audio route;
|
|
45
|
+
credential-shaped values and private home paths are redacted first. The
|
|
46
|
+
preference is off by default, works under server READONLY and is synchronized
|
|
47
|
+
across windows for the same browser origin.
|
|
48
|
+
- Documents the one-speaker boundary: focus prevents duplicate speech across
|
|
49
|
+
windows on one device, while separately opted-in devices can each speak by
|
|
50
|
+
design. Persisted questions are never replayed; only new live notification
|
|
51
|
+
frames enter the speech manager.
|
|
52
|
+
- Gate: **1,059 isolated Node tests** (1,058 pass / 1 platform skip),
|
|
53
|
+
**293/293 frontend tests**, production PWA build (168 modules) and zero
|
|
54
|
+
production dependency vulnerabilities in both dependency trees.
|
|
55
|
+
|
|
5
56
|
## 0.8.35 — 2026-07-23 — "Contained Fleet"
|
|
6
57
|
|
|
7
58
|
- Keeps Fleet rows inside the Settings panel on phones and narrow windows.
|