@mmmbuto/nexuscrew 0.8.11 → 0.8.12
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/README.md +15 -9
- package/frontend/dist/assets/index-DrroT7uq.js +91 -0
- package/frontend/dist/assets/{index-DrrRAIg6.css → index-PkKeNfT7.css} +1 -1
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/version.json +1 -1
- package/lib/cli/doctor.js +26 -2
- package/lib/cli/service.js +1 -0
- package/lib/nodes/tunnel-supervisor.js +26 -4
- package/lib/nodes/tunnel.js +22 -6
- package/package.json +2 -2
- package/frontend/dist/assets/index-DoUIJ4GM.js +0 -91
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
## What it is (v0.8.
|
|
19
|
+
## What it is (v0.8.12 "Mobile Roster")
|
|
20
20
|
|
|
21
21
|
- Runs a small server on the host where your tmux sessions live.
|
|
22
22
|
- Each attach spawns a real PTY running `tmux attach` and bridges its bytes over a WebSocket
|
|
@@ -24,10 +24,12 @@ panes, windows. tmux does the work; the browser is just a faithful client.
|
|
|
24
24
|
- **Desktop grid** (≥1024px): drag sessions from the sidebar into a tiling column layout —
|
|
25
25
|
live terminals side by side, draggable dividers, per-tile composer, layout remembered.
|
|
26
26
|
Tiles attach with `ignore-size` so they never resize your real terminals.
|
|
27
|
-
- **Ordered Fleet roster**:
|
|
28
|
-
filterable by all, pinned, active, or
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
- **Ordered Fleet roster**: desktop and mobile share the same per-location model. Local and
|
|
28
|
+
every Hydra route are independently collapsible and filterable by all, pinned, active, or
|
|
29
|
+
off; route-qualified pins and the deterministic pinned → live → fresh output → activity →
|
|
30
|
+
name order survive reloads. Search covers every visible node once the combined roster grows
|
|
31
|
+
beyond eight entries. Desktop chrome and the mobile header stay fixed while their lists
|
|
32
|
+
scroll, and the compact version/endpoint/language footer remains readable on narrow screens.
|
|
31
33
|
- **Attached decks by default**: named workspaces switch as tabs inside the same PWA without
|
|
32
34
|
reloading terminals or losing a pending layout save. Use `↗` only when you want to detach a
|
|
33
35
|
deck into another browser window or monitor.
|
|
@@ -240,8 +242,10 @@ nexuscrew
|
|
|
240
242
|
```
|
|
241
243
|
|
|
242
244
|
The first run creates a loopback-only configuration and starts a detached process. Run
|
|
243
|
-
`nexuscrew boot` only if you want a persistent `systemd --user` service.
|
|
244
|
-
|
|
245
|
+
`nexuscrew boot` only if you want a persistent `systemd --user` service. The generated unit
|
|
246
|
+
waits for `network-online.target`; `nexuscrew doctor` also warns when user lingering is disabled,
|
|
247
|
+
because boot without an interactive login then depends on the host's systemd policy. Linux x64
|
|
248
|
+
and ARM64 use platform PTY prebuilds only, so global installs do not compile native code or
|
|
245
249
|
require install-script approval.
|
|
246
250
|
|
|
247
251
|
### macOS (Apple Silicon or Intel)
|
|
@@ -267,7 +271,9 @@ nexuscrew
|
|
|
267
271
|
```
|
|
268
272
|
|
|
269
273
|
Termux uses the Android ARM64 PTY provider. The normal command starts NexusCrew in the
|
|
270
|
-
background and exits. `nexuscrew boot` installs the Termux:Boot script explicitly
|
|
274
|
+
background and exits. `nexuscrew boot` installs the Termux:Boot script explicitly; install the
|
|
275
|
+
Termux:Boot app and launch it once, because Android app activation cannot be verified by the
|
|
276
|
+
CLI. `nexuscrew doctor` reports that limitation even when the script itself is valid.
|
|
271
277
|
|
|
272
278
|
On every platform the first run starts the server in the background and opens the PWA wizard.
|
|
273
279
|
After onboarding, the same command starts or reuses it, prints a compact status and guide, and
|
|
@@ -398,7 +404,7 @@ node bin/nexuscrew.js serve
|
|
|
398
404
|
|
|
399
405
|
## Status
|
|
400
406
|
|
|
401
|
-
The current release candidate is **v0.8.
|
|
407
|
+
The current release candidate is **v0.8.12**. npm **`latest`**, the GitHub tag and the release
|
|
402
408
|
assets are promoted from the same verified artifact.
|
|
403
409
|
|
|
404
410
|
## License
|