298 Commits

Author SHA1 Message Date
Adam Shiervani 5427b80248 test(e2e): preserve remote agent diagnostics (#1457)
* test(e2e): lower s3 wake version gate

* test(e2e): preserve device logs across restarts

Capture failing device logs before later restarts can truncate last.log, and keep a rotated copy available during global teardown.
2026-05-19 10:34:32 +02:00
Adam Shiervani 6419d049a2 Fix webrtc session shutdown race (#1468) 2026-05-18 10:22:15 +02:00
Johnathon Selstad 51e7a95f19 feat(video): Add 120hz Support (#1452)
* feat(video): experimental 120 Hz low-latency mode

Add an opt-in setting that swaps the JetKVM default EDID for one
advertising 848x480@120 (preferred) and 1280x720@120. At 120 fps the
per-frame display→encode delay drops from ~16.7 ms to ~8.3 ms, halving
source-side video latency vs the standard 1080p60 path.

The TC358743 capture chip on JetKVM v1 has a hard ~120 Hz vrefresh
ceiling (Toshiba spec is 1080p@60; everything above 60 Hz is
undocumented territory). 144/240 Hz were tested and do not lock — the
chip's internal blocks above the TMDS PHY were never validated past
60 Hz. 120 Hz works reliably across both 480p and 720p; that's what
this EDID advertises.

Wiring:
- internal/native/video.go: new LowLatency120HzEDID constant
  (CVT-RB, EDID 1.4, single base block, no CEA extension)
- config.go: VideoLowLatencyMode bool, with reconciliation on load —
  toggling only swaps EdidString when it currently holds one of the
  well-known JetKVM defaults; user-supplied custom EDIDs are preserved
- jsonrpc.go: getVideoLowLatencyMode / setVideoLowLatencyMode RPCs
- UI: experimental Checkbox in Settings → Video and an extra entry
  in the EDID preset dropdown

Source-side note: enabling the toggle does not switch the source PC's
display mode. The user must manually pick 1280x720@120 or 848x480@120
in their OS display settings; the EDID alone just tells the source
what's allowed.

scripts/edid_gen.py is the generator used to produce the EDID hex.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix(video): address PR review on 120 Hz toggle

Single source of truth for the toggle is now `EdidString`. The separate
`VideoLowLatencyMode` config bool is gone, along with the load-time
reconciliation logic that could silently revert the EDID dropdown's
choice on reboot.

Addresses:

- cursor[bot] HIGH "Config reconciliation reverts explicit EDID
  dropdown choices on reboot" — drop `VideoLowLatencyMode` field;
  `rpcGetVideoLowLatencyMode` now derives state from `EdidString`,
  `rpcSetVideoLowLatencyMode` only writes `EdidString`. UI toggle is
  derived from `edid` state. Dropdown ↔ toggle can no longer drift.
- Copilot ui/src/routes/.../video.tsx:30 — same root cause; same fix.
- Copilot ui/src/routes/.../video.tsx:199 — drop the spurious
  `.toUpperCase()` on the matched-EDID value so SelectMenuBasic strict
  equality matches the option's actual `value`.
- Copilot jsonrpc.go:276 + config.go:311 — case-insensitive EDID
  comparisons via `strings.EqualFold`.
- Copilot scripts/edid_gen.py:13 — drop unused `import struct`.
- Copilot scripts/edid_gen.py:63 — `pclk_khz` was holding Hz; rename
  to `pclk_hz` and use a `raw_pclk_hz` intermediate for the pre-quantized
  value. Generator output is byte-identical.
- cursor[bot] LOW en.json:1041 "wrong advice when disabling" — split
  the single `video_low_latency_set_success` (which always told users
  to switch to 120 Hz) into `video_low_latency_enabled` and
  `video_low_latency_disabled`; the disabled message tells the user to
  switch their source back to its usual resolution.

Also: small UX cleanup — extracted `applyEDID(...)` helper so the
toggle and the dropdown don't double-fire success notifications.

Verified locally: `go vet` clean, `tsc --noEmit` clean, `oxlint` 0
errors, `python3 -c "import py_compile; py_compile.compile(...)"` OK,
and the regenerated EDID hex matches `LowLatency120HzEDID` byte for
byte.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* feat(video): replace 120 Hz toggle with four single-mode EDIDs in the dropdown

Drops the experimental "Low Latency 120 Hz Mode" toggle and the
LowLatency120HzEDID bundle (which packed both 848x480@120 and 1280x720@120
DTDs into a single EDID) in favor of four standalone single-mode EDIDs
added directly to the existing EDID dropdown:

  - JetKVM 1280x720 @ 120 Hz (low latency)
  - JetKVM 1280x720 @ 60 Hz
  - JetKVM 848x480  @ 120 Hz (low latency)
  - JetKVM 848x480  @ 60 Hz

Each EDID advertises exactly one DTD, the monitor range descriptor, and
the model name — no CEA extension. Generated by scripts/edid_gen.py.

Why the redesign

The toggle was special-casing a single EDID bundle and trying to keep
two pieces of state (the toggle and the EDID dropdown) in agreement.
The reviewer flagged that the load-time reconciliation could revert
explicit EDID-dropdown choices on reboot, and even the simpler
derive-toggle-state-from-EdidString version was carrying:

  - a separate i18n string set for toggle-on / toggle-off,
  - a Checkbox plus an extra dropdown row labeling the same EDID,
  - special-cased applyEDID plumbing distinct from setEDID,
  - a config-load reconciliation path.

Treating the 120 Hz modes as ordinary EDID choices removes all of
that. Picking a 120 Hz EDID writes through setEDID like every other
entry; the dropdown is the only source of truth.

Bundling 480p120 and 720p120 into one EDID also forced the source PC
to choose between two preferred modes. With separate EDIDs the source
sees exactly one preferred timing per choice.

Changes

internal/native/video.go: add EDID720p120, EDID720p60, EDID480p120,
  EDID480p60. Drop LowLatency120HzEDID.

jsonrpc.go: drop rpcGetVideoLowLatencyMode / rpcSetVideoLowLatencyMode
  and their handler registrations. Drop the now-unused native and
  strings imports.

ui/src/routes/devices.\$id.settings.video.tsx: drop the Checkbox, the
  derived lowLatencyMode flag, the handleLowLatencyChange handler, the
  applyEDID helper, and the warning paragraph. Add four new entries to
  the EDID dropdown.

ui/localization/messages/en.json: drop the five video_low_latency_*
  keys and the single-bundle video_edid_jetkvm_120hz key. Add four new
  per-mode keys; update video_edid_jetkvm_default to spell out the
  resolution so the dropdown is internally consistent.

Verified locally: go vet clean on all packages, tsc --noEmit clean,
oxlint 0 errors, EDID hex round-trips byte-for-byte through
scripts/edid_gen.py.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Drop unused EDID constants; fix CVT-RB v1 vertical timing in edid_gen.py

internal/native/video.go: the four EDID720p120 / EDID720p60 / EDID480p120 /
  EDID480p60 constants were never read — the dropdown carries the hex
  inline. Remove them; nothing else in the Go side referenced them.

scripts/edid_gen.py: CVT-RB v1 specifies a fixed 3-line vertical front
  porch and an aspect-dependent vsync; the back porch absorbs the
  remainder of v_blank. The previous implementation had it backwards
  (back porch fixed at RB_V_BACK_PORCH, front porch = remainder), which
  produced a multi-hundred-line front porch and a 6-line back porch —
  technically a valid frame, but not CVT-RB v1. If the recomputed back
  porch falls below the spec minimum, bump v_blank so it does, and let
  v_total follow.

ui/src/routes/devices.\$id.settings.video.tsx: regenerate the three
  affected EDID hex strings (720p120, 720p60, 480p120). 480p60 is
  unchanged because its v_blank already left front porch = 3 in the
  old code path. All four still lock end-to-end on TC358743 hardware.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Set sRGB color space + 640x480@60 established-timing in generated EDIDs

scripts/edid_gen.py:
  - Feature-support byte (offset 24): 0x0A -> 0x0E. Adds the sRGB
    color-space bit while keeping the existing flags (digital, RGB 4:4:4,
    YCbCr 4:2:2, preferred timing in DTD0). EDID 1.4 already requires
    DTD0 to be the preferred timing; tagging sRGB lets the source treat
    the chromaticity block as authoritative instead of guessing.
  - Established-timings byte (offset 35): 0x00 -> 0x20. Bit 5 advertises
    640x480@60 as a VGA-fallback mode some sources fall back to during
    early-boot / BIOS. The source still prefers DTD0 for the active
    desktop, so this is harmless for the 120 Hz / 60 Hz advertised modes.

ui/src/routes/devices.\$id.settings.video.tsx: regenerate all four
  dropdown EDIDs with the new flag bytes and recomputed checksums.
  Strings are now uppercase to match the rest of the dropdown.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix(video): plumb source vrefresh into MPP encoder rate control

The MPP H.264/H.265 rate-control structure has Src/Dst FrameRateNum/Den
fields the firmware never set, so MPP defaulted to fps_fix [30/1].
That made the encoder size its bitrate budget for 30 fps and behave
unpredictably when 120 fps arrived from the capture chip.

Now run_detect_format rounds the v4l2 dv-timings vrefresh to an integer
(stored in detected_fps), and run_video_stream passes that value through
venc_start -> populate_venc_attr where it's written into both Src and
Dst FrameRate fields. GOP is sized to fps/2, which keeps the IDR cadence
at ~0.5s for any source refresh — same WebRTC recovery latency at 60 Hz
and 120 Hz.

run_detect_format now also restarts the streaming pipeline when the
rounded fps changes by more than ±1 fps, so an EDID swap that keeps
resolution but changes refresh (e.g. 720p60 -> 720p120) actually
reconfigures the encoder. The ±1 tolerance absorbs CVT-RB rounding
(119.91 fps and 119.87 fps both round to 120).

Verified on device:

  before: fps fix [30/1] -> fix [30/1] gop i [30]
  after:  fps fix [120/1] -> fix [120/1] gop i [60]

WebRTC inbound-rtp framesPerSecond now sustains ~120 with 0 dropped
packets at 720p120, 19 ms jitter buffer, glass-to-glass delay halved
on a 120 Hz panel.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Collapse 4 single-mode EDIDs into one combined 720p entry

Drop the four single-mode 480p/720p × 60/120 EDIDs and replace them
with one multi-mode JetKVM 720p EDID that advertises both 1280x720@120
(DTD0, preferred) and 1280x720@60 (DTD1). Drop 480p entirely — 848x480
is non-standard and the source PC's display panel UI usually doesn't
expose it.

The source picks 60 Hz vs 120 Hz via OS-side display settings
(`xrandr --rate 60/120` on Linux, Display Settings on Windows) without
needing to swap EDIDs. The encoder-fps plumbing from fa36843 already
reconfigures MPP on each v4l2 source-change event, so rate swaps work
end-to-end against this single EDID.

Validated at edidcraft.com: 0 errors / 0 warnings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Fold low-latency 720p modes into the JetKVM default EDID

The JetKVM v1 default EDID had two empty CTA-extension DTD slots after
its existing data blocks (audio, YCbCr 4:2:2, vendor-specific). Use the
first slot to advertise 1280x720@120 alongside the existing 1080p60
(DTD0, preferred) and 1280x720@60 (DTD1) base-block timings.

Source picks rate via OS display settings (`xrandr --rate 120`, Windows
Display Settings, etc.) — no separate "low latency" EDID needed in the
dropdown. The encoder-fps plumbing from fa36843 already reconfigures
MPP on every v4l2 source-change event, so OS-side rate swaps work
end-to-end against this single combined EDID.

Migration: config.LoadConfig now also rewrites EdidString to the new
default when the user is currently on the previous JetKVM v1 EDID
(without the 720p120 DTD), so existing devices auto-pick up the
high-refresh option on next boot.

Validated at edidcraft.com: 0 errors / 0 warnings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Drop scripts/edid_gen.py — exploration tool, not a build dependency

The Python EDID generator was only used during this PR's development
phase to probe the TC358743 chip's max vrefresh and produce candidate
EDIDs. Now that the only EDID change is one DTD added to the JetKVM
default (a fully-validated 18-byte hex string in
internal/native/video.go and ui/src/routes/devices.\$id.settings.video.tsx),
the generator is no longer referenced by any code path. Drop it from
the PR to keep the diff focused on the runtime change. Available in
git history if anyone wants to extend the EDID set later.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Revert "fix(video): plumb source vrefresh into MPP encoder rate control"

This reverts commit fa36843. Empirically the MPP encoder forwards every
input frame whether or not Src/DstFrameRateNum/Den are set in the rate
control struct — those fields appear to only size the bitrate budget,
not gate frame submission. With this code in, dmesg shows
fps fix [120/1] -> fix [120/1] gop i [60]; with it reverted, dmesg
shows fps fix [30/1] -> fix [30/1] gop i [30]; in both cases WebRTC
inbound-rtp framesPerSecond sustains ~120 at the receiver. Drop the
plumbing to keep the PR's surface area minimal — the EDID-side change
alone is what unlocks 120 Hz end-to-end.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Move 720p120 DTD from CTA extension to base block

NVIDIA's display driver enumerates base-block DTDs reliably but ignores
DTDs in the CTA extension that don't carry a CTA-861 VIC. 1280x720@120
isn't a CTA VIC, so the previous layout (720p120 in CTA-extension first
DTD slot) silently dropped the 120 Hz mode on GeForce hosts — `xrandr`
listed 1080p60 / 720p60 / 640p variants only.

Swap base-block DTD1 from 720p60 to 720p120. 720p60 stays advertised
through the Standard Timings block (0x81C0 at offset 40), which every
driver respects. Also drop the now-redundant 720p120 DTD from the CTA
extension and add the prior CTA-only EDID to the migration list so
existing devices auto-upgrade on next boot.

Validated at edidcraft.com: 0 errors / 0 warnings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Reapply "fix(video): plumb source vrefresh into MPP encoder rate control"

This reverts commit 3cb61dfc8f.

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2026-05-15 07:48:44 +02:00
Adam Shiervani b878ba9e20 fix: align S3 wake test version gate (#1458) 2026-05-12 10:27:14 +02:00
Adam Shiervani df5dbea431 fix(keyboard): keep modifiers out of auto-release (#1438)
* fix(keyboard): keep modifiers out of auto-release
Prevent per-key auto-release from dropping held modifiers during jitter while keeping explicit cleanup paths covered by E2E tests.

* fix(keyboard): keep modifiers out of auto-release
Prevent per-key auto-release from dropping held modifiers during jitter while keeping explicit cleanup paths covered by E2E tests.

* chore(keyboard): trim autorelease comments

Keep comments focused on keyboard behavior and remove branch-specific narrative from the tests.

* fix(keyboard): reset keepalive timing on key state changes

Reset session keepalive timing on every keyboard state change so stale gaps do not poison later holds under modifiers.
2026-05-01 14:48:25 +02:00
Adam Shiervani bfa7336bea fix(video): disable H.265 on Linux to avoid undecodable streams (#1435)
Many Linux browsers (Chrome on NVIDIA proprietary, Brave/Chromium on
Wayland, most Firefox builds) advertise H.265 in
RTCRtpReceiver.getCapabilities and in the SDP offer but cannot actually
decode the stream, leaving users stuck on a black "Loading video
stream..." screen (#1413).

On Linux desktop we now hide H.265 from the codec dropdown and strip it
from the video transceiver's setCodecPreferences immediately before
createOffer, so the existing server-side resolveCodec naturally
negotiates H.264. No protocol, backend, or persisted-preference changes.
2026-05-01 11:14:20 +02:00
Adam Shiervani da5793a117 fix(logging): reset troubleshooting log level after reboot (#1404)
* fix(logging): reset troubleshooting log level after reboot

Restore WARN on boot so temporary troubleshooting verbosity cannot silently fill device storage before rolling logs land. Update the settings copy to describe the reboot reset, add an e2e regression test for the INFO-to-WARN behavior, and make the i18n resort helper accept lint-staged file arguments.

* fix(i18n): avoid formatter churn in locale files

Keep localization message JSON on the repo's existing resort_messages.py formatting so translation-only changes do not explode into full-file diffs. Remove JSON from the generic oxfmt lint-staged rule and restage the locale files in their canonical format.
2026-04-09 11:07:04 +02:00
Adam Shiervani 73d78ef984 fix(test): tighten remote-agent wake gating
Retry relative-only horizontal wheel input after USB re-enumeration and require system 0.2.9 for S3 wake tests so hardware-dependent cases only run where the wake path is expected to work.
2026-04-08 12:39:41 +02:00
Adam Shiervani 1c478b1264 fix(test): harden remote agent serial console checks
Improve the remote-agent e2e helpers to escape SSH commands, time out stuck SSH calls, and retry transient failures. Replace fixed ttyACM sleeps with polling so serial console tests wait for the actual remote host state.
2026-04-07 14:09:01 +02:00
Adam Shiervani a53fd6e731 fix(test): use relative mouse wake for S3 suspend (#1402)
Use relative mouse reports for the S3 wake e2e path because absolute mouse movement is not a reliable wake source on some hosts. This keeps the test aligned with a wake path that passes against the current JetKVM and remote host setup.
2026-04-07 13:06:43 +02:00
Adam Shiervani 2614db6b89 feat(ui): add log level selector in Troubleshooting Mode (#1395)
* feat(ui): add log level selector in Troubleshooting Mode

Add a UI dropdown in Advanced > Troubleshooting Mode that lets users
set the system log verbosity (Error, Warning, Info, Debug, Trace).
Changes take effect immediately without restart via new
getDefaultLogLevel/setDefaultLogLevel JSON-RPC endpoints.

Also downgrades the noisy wakeup_on_write permission denied warning
from Warn to Debug level, and removes the INFO→WARN config migration
so users can actually select INFO.

Localized for all 14 languages.

* chore(ui): disable no-floating-promises in oxlint

The rule is not actionable for the current codebase; turn it off explicitly.

* refactor(ui): drop void prefixes on JSON-RPC send in advanced settings

no-floating-promises is disabled in oxlint; match the rest of the codebase.

* fix(ui): localize log level dropdown and fix optimistic update

- Replace hardcoded English dropdown labels with localized m.*() calls
- Replace hardcoded error string with m.advanced_error_set_log_level()
- Optimistically update dropdown on change and revert on RPC failure
- Add 6 new i18n keys across all 14 locales

* chore: add remote-agent to .gitignore and auto-sort i18n in pre-commit

- Ignore the compiled e2e/remote-agent/remote-agent binary
- Add lint-staged rule to run i18n:resort on message JSON changes

* copy(ui): improve log level setting description

Apply outcome-oriented copy: explain what the setting does for the
user and when to change it, rather than restating the control's
mechanics. Updated across all 14 locales.

* fix(logging): scope loggers not rebuilt when config level matches base default

UpdateLogLevel compared the new config level against the base default
(ErrorLevel) instead of the previous config level. When switching from
WARN back to ERROR, the comparison was equal so scope loggers kept
their old WarnLevel filter — WRN messages continued appearing despite
the user selecting Error.

Compare against the previous defaultLogLevelFromConfig instead.

* test(logging): add RPC probe for log level filtering

Add a dedicated emitTestLog JSON-RPC method and a focused e2e spec that
verifies live TRACE/DEBUG/INFO/WARN/ERROR filtering against last.log.

* chore(ui): update .gitignore to exclude screenshot.png file
2026-04-07 12:44:30 +02:00
Kf637 320fc754ac fix(settings): add space before 'root' in SSH default user message (#1398)
* fix(settings): add space before 'root' in SSH default user message

* fix(settings): add space before 'root' in SSH default user message
2026-04-07 10:42:09 +02:00
Adam Shiervani 49f30d9dde test(e2e): add S3 suspend/wake tests via USB remote wakeup (#1392)
Add two e2e tests that verify JetKVM can wake a host from S3 sleep
using HID input (keyboard and mouse). Tests trigger suspend via
`echo mem > /sys/power/state`, wait for the host to become
unreachable, then send HID reports and verify recovery.

Both tests skip gracefully when system firmware is below 0.2.8
(missing wakeup_on_write kernel support) or when the remote host
doesn't support S3 deep sleep.

Also adds a `semverGte` helper for version comparisons.
2026-04-02 15:01:14 +02:00
Adam Shiervani 73a67e88ab fix(mouse): prevent double wheel scroll by sending to only one HID device (#1390)
rpcWheelReport was unconditionally sending wheel events to both the
absolute and relative mouse HID devices. The host OS sees two separate
USB HID devices each producing a scroll event, so it processes both,
doubling the effective scroll distance (e.g. 6 lines instead of 3 on
Windows).

Send wheel events to the absolute mouse device when enabled, falling
back to the relative mouse device otherwise. This mirrors how pointer
reports already work (absMouseReport vs relMouseReport are separate).

Add an E2E test that verifies exactly one wheel event is received per
wheelReport RPC call when both mouse devices are enabled.
2026-04-01 10:58:58 +02:00
Adam Shiervani 87eac39529 fix(keyboard): prevent modifier key auto-release during typing (#1386) (#1387)
Key-repeat events (fired at ~30Hz by the browser for held keys) were
cancelling and restarting the keepalive interval on every keydown. Since
the repeat rate (~33ms) is shorter than the keepalive period (50ms), the
keepalive tick could never fire. When a second key was pressed and the
modifier's repeat stopped, the modifier's 100ms auto-release timer
expired with no keepalive to extend it.

Fix: start the keepalive interval on first key press and leave it
running undisturbed until all keys are released. Track held keys
client-side via a Set to know when to start/stop the interval.

Also adds six e2e tests covering:
- Key-repeat simulation (rapid repeated presses without releases)
- Modifier held across rapid tap burst (20 keys at 50ms spacing)
- Multiple simultaneous modifiers (Ctrl+Shift+key)
- Reversed release order (modifier up before non-modifier)
- AltGr (AltRight) held while tapping
- Modifier held while tapping 10 keys over 10 seconds

Closes #1386
2026-04-01 10:03:26 +02:00
Adam Shiervani 0806c23f6b fix(test): add wakeDisplay and waitForVideoStream to video codec tests (#1385)
Ensure display is active and video stream is flowing before asserting
codec stats, preventing flaky failures on idle/sleeping displays.
2026-03-31 11:04:16 +02:00
Adam Shiervani 41ea6b93ca fix(test): fix e2e flakiness from hook timeouts, EDID drops, and USB recovery (#1382)
OTA beforeAll/afterAll hooks were using the global 60s timeout while
performing multi-reboot sequences that need minutes. Add explicit
test.setTimeout(420000) inside each hook.

setEDID RPC can drop the WebSocket on some devices during HDMI re-link.
Tolerate RPC timeouts, reconnect page + WebRTC afterwards, and retry
agent resolution checks with a 15s polling loop.

EBUSY CDROM test used sysfs traversal that broke across kernel/host
variations. Switch to lsblk and skip gracefully when the host doesn't
enumerate USB mass storage as sr* devices.

USB recovery test left the device bricked (initUsbGadget crash loop)
when auto-recovery failed. Add try/catch that re-binds the UDC and
reboots on failure.

OTA reconnectAfterReboot retries increased from 15 to 30 (65s → 95s)
to handle slower devices.
2026-03-30 19:26:09 +02:00
Adam Shiervani 621ca00df1 fix(ui): reconcile codec preference against available options (#1381)
When a browser doesn't support H.265, the filtered codecOptions won't
contain "h265" but the backend may still return it. Fall back to "auto"
so React state matches what the select actually displays.
2026-03-30 18:58:41 +02:00
Adam Shiervani 9efc903016 fix(ui): hide H.265 codec option when browser doesn't support it (#1380)
Use RTCRtpReceiver.getCapabilities() to detect H.265 support and
filter it from the video codec dropdown on unsupported browsers.
2026-03-30 18:45:46 +02:00
Adam Shiervani 6a87a481d4 feat(ui): replace detach mode with embed mode (#1378)
Remove the detach window feature and replace it with a simpler `?embed`
query parameter that hides the header bar and status bar using the same
settings levers. Embed mode latches into session state so it persists
across in-app navigation.

- Delete useDetachedWindow hook and window tracking logic
- Add `isEmbedMode` to UI store, latched from `?embed` query param
- Embed mode forces hideHeaderBar and hideStatusBar via same code path
  as the existing appearance settings
- Replace detach/close buttons with fullscreen split button containing
  "Compact Window" option that opens embed view in new window
- Hide settings button and show close button in embed mode
- Simplify useAppNavigation by removing query param threading
- Add action_bar_compact_window i18n key to all 14 locales
2026-03-30 17:25:43 +02:00
Adam Shiervani c7344ed673 fix(test): fix e2e flakiness from HDMI signal not detected during beforeAll (#1377)
The remote host display may enter DPMS sleep during the build/deploy
phase, causing the KVM to report "No HDMI signal detected" when the
remote-agent tests start. Wake the display via DPMS before waiting,
increase the timeout from 15s to 30s, and add a page-reload retry
if the WebRTC session connected before the signal was detected.

Authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2026-03-30 00:16:05 +02:00
Adam Shiervani 785c9c1b7c fix(test): fix e2e flakiness from RPC timeouts and stale session dialogs (#1376)
setEDID blocks ~7.5s for HDMI renegotiation, which could exceed the
hardcoded 10s RPC timeout. Add configurable timeout to sendJsonRpc and
use 20s for all setEDID calls. Also handle the "Use Here" session dialog
after page reload in beforeAll, and wait for video stream before LED tests.
2026-03-29 23:25:45 +02:00
Adam Shiervani 451d940a73 fix(ui): fix virtual keyboard crash after Vite 8 upgrade (#1375)
Vite 8's stricter CJS/ESM interop resolves the default import to the
module namespace object instead of the component, crashing KeyboardWrapper
at render time. Switch to the named `KeyboardReact` export.

Also fix pre-existing floating promise lint warnings in the same file.
2026-03-29 22:55:56 +02:00
Adam Shiervani f2fac87b17 feat(video): tune encoder for better quality and faster recovery (#1372)
* feat(video): tune encoder for better quality and faster recovery

- Reduce GOP from 60 to 30 for faster keyframe recovery on screen changes
- Set u32MinBitRate to half the target to prevent static-screen bitrate collapse
- Reduce u32StatTime from 3s to 2s for tighter rate control adaptation
- Raise minimum bitrate floor from 100 to 200 kbps

* feat(ui): show live bitrate in debug info bar

Poll WebRTC inbound-rtp stats every second and display the current
receive bitrate next to the codec indicator when debug mode is enabled.

* feat(ui): add loading spinner to video quality dropdown

Disable the select and show a spinner while fetching or applying the
stream quality factor, matching the existing EDID selector pattern.

* fix(i18n): remove redundant prefixes from video settings titles

Strip "Video"/"Stream" prefixes from settings headings that are already
under the Video settings page: Stream Quality → Quality, Video Codec →
Codec, Video Enhancement → Enhancement.
2026-03-29 22:47:38 +02:00
Adam Shiervani cb7746fb78 feat(video): add H.265 codec support with auto-negotiation (#1371)
* feat(video): add H.265 codec support with auto-negotiation

Add H.265 (HEVC) encoding support to the RV1106 hardware encoder alongside
existing H.264. The codec is negotiated per-WebRTC session based on browser
capabilities.

- Add codec preference setting (Auto/H.265/H.264) to config, RPC, and UI
- Auto mode inspects the browser's SDP offer and prefers H.265 when supported,
  with graceful fallback to H.264 for browsers without H.265 (e.g. Firefox)
- Move WebRTC video track creation from newSession() to ExchangeOffer() so
  the codec can be resolved after seeing the browser's offer
- Set encoder codec type in onFirstSessionConnected() before VideoStart()
- Show active codec in the status bar when troubleshooting mode is enabled
- Remove quality factor >1.0 ceiling from ctrl.c to allow bitrate testing
- Fix Go wrapper to check return value from C quality factor setter
- Add e2e tests: video quality bitrate measurement, codec negotiation,
  codec preference persistence, and a quality factor sweep benchmark
- Add visual noise helpers (remote host terminal) to e2e test infrastructure

* chore(e2e): remove video quality benchmark tests and helpers

Remove video-quality-sweep and video-quality spec files — these are
benchmarking tools, not regression tests. Also removes the visual noise
helpers and hardcoded developer SSH address from helpers.ts.

* feat(video): bump bitrate cap to 4000 kbps and tighten VBR ceiling

- Increase base_bitrate_high from 2000 to 4000 kbps, giving users
  better image quality at every quality factor setting.
- Tighten VBR max_bitrate from 2x to 1.5x target, reducing encoder
  overshoot while still allowing headroom for dynamic content.
- Add frames dropped, decode time, freeze count to WebRTC test hooks
  for pipeline health monitoring.
- Move bitrate sweep benchmark to ui/benchmarks/ with its own
  playwright config, separate from the e2e test suite.

Sweep results (visual noise, H.264, 1080p):
  factor=0.1: 3082 kbps, 60fps, 0 dropped, 2.9ms decode
  factor=0.5: 6357 kbps, 60fps, 0 dropped, 3.6ms decode
  factor=1.0: 9445 kbps, 59fps, 0 dropped, 4.3ms decode
2026-03-29 21:34:38 +02:00
Adam Shiervani a5bb97eb7b test(ota): add e2e test for upgrading to a signed release (#1373)
Validates that the locally-built binary can accept a GPG-signed OTA
update. Deploys the dev build, then serves the latest production binary
and its real signature via a mock update server. Runs in the regular
test_e2e lane — no signing key required.
2026-03-29 20:36:54 +02:00
Adam Shiervani d5b21affd4 fix(ui): sync default EDID with updated backend value (#1374)
The frontend had the old generic default EDID hardcoded, so after the
backend migration to the new JetKVM v1 EDID (with CEA-861 extension,
HDMI vendor block, and audio support), the video settings page couldn't
match it to any preset and incorrectly displayed "Custom".
2026-03-29 20:35:21 +02:00
Adam Shiervani 879a8559e2 test(timesync): add e2e tests for custom NTP configuration (#1370)
Verify that setting a custom NTP server via RPC results in the server
being queried (validated through Prometheus metrics), and that an invalid
hostname gracefully falls back to default NTP servers.

Co-authored-by: Adam Shiervani <adam@jetkvm.com>
2026-03-29 13:07:26 +02:00
Alex Howells 5cd265ae52 feat(network): add custom NTP/HTTP time sync configuration UI (#1289)
* feat(network): add custom NTP/HTTP time sync configuration UI

Closes #516, #645, #59

The backend supports custom NTP servers, HTTP URLs, source ordering,
parallel queries, and fallback control for time synchronization, but the
frontend only exposes three presets (NTP only, NTP and HTTP, HTTP only).
Users who need to specify their own NTP server — the core ask in all
three linked issues — have no way to do so through the UI.

Add a "Custom" option to the time sync dropdown. When selected, a card
appears with input fields for NTP servers and HTTP URLs, following the
same list-with-add/remove pattern used by the static IPv4 DNS fields.

This is a simplified alternative to #1102 which exposed every backend
field (source ordering, parallel queries, disable fallback) as direct
UI controls. That PR stalled for 3 months due to complexity concerns
and UX debate. This PR ships the functionality users actually requested
— custom NTP servers — with a minimal UI surface:

  #1102: 753 additions, 15 files, new Combobox modifications
  This:  ~120 additions, 18 files (13 are localization)

The advanced fields (TimeSyncOrdering, TimeSyncParallel,
TimeSyncDisableFallback) retain their backend defaults and can be
surfaced in a follow-up if there is demand.

Backend changes:

  confparser.go — add hostname_or_ipv4_or_ipv6 validation type so NTP
  server fields accept hostnames like pool.ntp.org, not just raw IPs.

  config.go — change TimeSyncNTPServers validation from ipv4_or_ipv6
  to hostname_or_ipv4_or_ipv6.

Frontend changes:

  CustomTimeSyncCard.tsx — new component with NTP server list and HTTP
  URL list, field validation, add/remove controls.

  stores.ts — add optional time_sync_ordering, time_sync_ntp_servers,
  time_sync_http_urls, time_sync_disable_fallback, time_sync_parallel
  to NetworkSettings interface.

  network settings page — uncomment Custom option, render card when
  time_sync_mode is custom.

Translations added for all 13 supported languages.

* fix(timesync): address review feedback on custom NTP UI

1. filterNTPServers: pass hostnames through instead of dropping
   them. net.ParseIP() returns nil for hostnames like
   pool.ntp.org, causing them to be silently skipped. The NTP
   library handles DNS resolution itself, so hostnames are valid
   entries.

2. getSyncMode: when TimeSyncMode is "custom", default the
   ordering to [ntp_user_provided, http_user_provided, ntp_dhcp,
   ntp, http] so user-provided servers are actually queried. The
   previous hardcoded default never included *_user_provided
   entries, rendering custom servers unreachable.

3. Stale config pointer: add SetNetworkConfig() on TimeSync and
   call it from rpcSetNetworkSettings after config.NetworkConfig
   is replaced. Without this, TimeSync holds a stale pointer and
   ignores runtime config changes until restart.

4. DNS vacuous truth: guard .every() calls on ipv4/ipv6 DNS
   dirty arrays with .length > 0 checks. [].every() returns true
   in JS, causing empty DNS arrays to falsely appear in the
   confirmation dialog.

Signed-off-by: Alex Howells <alex@howells.me>

* fix(timesync): ensure custom mode uses user-provided servers and re-syncs on settings change

Move TimeSyncOrdering override before the mode switch so "custom" mode
always sets the correct ordering with ntp_user_provided first, preventing
stale ordering values from overriding it. Trigger an immediate time sync
when network settings are saved so users don't have to wait for the
hourly cycle or reboot.

---------

Signed-off-by: Alex Howells <alex@howells.me>
Co-authored-by: Adam Shiervani <adam@jetkvm.com>
2026-03-29 12:16:52 +02:00
Adam Shiervani 2167272ef1 fix(keyboard): serialise keyboard state mutations to eliminate race (#1369)
* fix(keyboard): serialise keyboard state mutations to eliminate race

keypressReport performed a read-modify-write on keysDownState across
three separate lock acquisitions, allowing concurrent callers (e.g. two
auto-release timers, or an auto-release racing with a session-disconnect
clear) to interleave and produce lost updates — leaving stale keys in
the device state after disconnect.

Replace the per-operation keyboardWriteHidFileLock with a keyboardMutex
that covers the entire read-compute-write-update sequence in both
keypressReport and KeyboardReport. This makes all keyboard state
mutations serialisable, eliminating the race by construction rather than
patching individual call sites.

Also cancel pending auto-release timers on session close (avoids
unnecessary HID writes) and query device state directly via JSON-RPC
in the E2E test (removes Zustand store timing dependency).

* fix(lint): align goimports formatting in config.go
2026-03-29 01:51:49 +01:00
Adam Shiervani 8612779ab8 fix(e2e): kill remote-agent before scp to avoid ETXTBSY (#1368)
Linux prevents overwriting a running binary. Move the pkill step
before the scp so the binary is stopped before we copy the new one,
then start it without the redundant kill+sleep.
2026-03-29 00:16:38 +01:00
Adam Shiervani a89d405ca2 fix: add hold-to-force-off hint for ATX Power button (#1327)
* fix: add hold-to-force-off hint for ATX Power button (#1040)

* i18n: add atx_power_control_hold_hint translations for all languages

* fix: restore i18n files to proper format, only add atx_power_control_hold_hint key

Previous commits accidentally changed indentation (2-space → 4-space) and
removed 102 keys from all locale files. This restores the original formatting
and content, adding only the new atx_power_control_hold_hint translation.
2026-03-28 23:28:41 +01:00
Adam Shiervani c08f14ff3f fix: send mouse button state changes via reliable WebRTC channel (#695) (#1338)
* fix: send mouse button state changes via reliable WebRTC channel (#695)

When holding one mouse button and pressing another without moving the mouse,
only pointerdown/pointerup events fire (no mousemove to self-correct). These
button-only state changes were sent via the unreliable WebRTC data channel
(maxRetransmits: 0), and lost packets were never recovered.

Changes:
- useHidRpc.ts: Track last button state and send button changes via the
  reliable channel. Movement-only events continue using the unreliable
  channel for low latency, since lost movement packets self-correct via
  subsequent mousemove events.
- e2e/remote-agent/main.go: Fix omitempty on InputEvent.Value so button
  release events (value=0) are included in JSON responses.
- ra-all.spec.ts: Add E2E test that holds left mouse button, presses and
  releases right mouse button, and verifies all 4 button events arrive
  on the remote host (20 iterations).

* fix: rebuild remote agent when source changes to prevent stale deploys

ensureDeployed() skipped rebuild and redeploy when the agent was already
running, causing the omitempty fix on InputEvent.Value to never reach
the remote host. Now compares source mtime against binary mtime and
forces redeploy when a rebuild occurs.
2026-03-28 23:14:02 +01:00
Alex Howells c8c8f83373 fix(video): scale stream to fill available viewport (#1281)
* fix(video): scale stream to fill available viewport

The video element uses max-h-full and max-w-full which cap the rendered
size at the stream's intrinsic resolution but never scale it up. On
monitors larger than the stream resolution (e.g. 5120x2160 viewing a
1920x1080 stream) the video occupies a fraction of the available space
with large margins around it.

Replace max-h-full max-w-full with h-full w-full so the video element
fills its container in both dimensions. object-contain is retained so
aspect ratio is preserved with letterboxing/pillarboxing as needed.

The absolute mouse coordinate math in useMouse.ts already accounts for
object-contain scaling by computing effective display area from
videoClientWidth/Height vs videoWidth/Height, so mouse mapping remains
correct at any scale factor.

Drop the sm:min-h-[384px] sm:min-w-[512px] minimum size constraints
which are no longer needed when the video fills available space.

Fixes #121

* fix(video): scale stream to fill available viewport without letterboxing

---------

Co-authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2026-03-28 23:00:53 +01:00
Adam Shiervani d3c6d9ead7 feat: add hide/show text toggle to paste modal (#694) (#1353)
* fix: add hide text toggle to paste modal (#694)

* fix: move paste modal hide/show text toggle to top-right above input (#694)

* fix: inline hide/show toggle into input labels and fix lint warnings

* i18n: add paste modal hide/show text translations for all locales

* fix: use CSS text-security instead of password input to preserve newlines

* i18n: translate scroll invert strings for all locales

* fix: hide invalid character details when text is hidden in paste modal
2026-03-28 22:46:52 +01:00
Adam Shiervani b3634cf463 test: add keyboard keepalive and auto-release e2e tests (#1346)
Add 8 baseline tests for the keepalive/auto-release code path with
timings matched to the actual Go constants (100ms DefaultAutoReleaseDuration,
50ms keepalive interval, 100ms baseExtension).

Tests cover: held key survival with keepalives, auto-release without
keepalives, window blur release, arrow key hold, modifier+key combos,
simultaneous keys, rapid tap cycles, and long (2s) holds.
2026-03-28 20:56:37 +01:00
Adam Shiervani 203c6ae6fd fix: recover HID chardev after DWC3 rebind race on RV1106 (#1366)
* fix: reset USB gadget when virtual media unmount fails with EBUSY (#834)

When unmountImageLocked() gets EBUSY from the kernel (host OS still
accessing the virtual disk via PREVENT MEDIUM REMOVAL), fall back to
gadget.RebindUsb(true) to force-disconnect the host, then retry the
unmount. Uses RebindUsb directly instead of UpdateGadgetConfig to avoid
hitting the same EBUSY when writing configfs attributes before rebind.

After rebind, properly reopen keyboard HID file (ResetHIDFiles + sleep +
OpenKeyboardHidFile) matching the pattern in setMassStorageMode().

Also propagate unmount errors to RPC callers and only clear
currentVirtualMediaState after the unmount actually succeeds.

Adds E2E test that mounts an ISO on the remote host to trigger PREVENT
MEDIUM REMOVAL, then verifies unmount succeeds and keyboard recovers.

* fix: recover HID chardev after DWC3 rebind race on RV1106

The DWC3 USB controller on the RV1106 has a race condition where rapid
unbind→bind of the UDC can permanently corrupt HID chardev state —
/dev/hidg0 returns ENXIO even though the device node exists and the UDC
shows "configured". This can be triggered by UpdateGadgetConfig's
transaction rebind and by host-initiated USB device resets during mass
storage media changes.

Three-part fix:

1. rebindUsb(): after binding, verify /dev/hidg0 is openable. If not,
   unbind again with a 100ms pause for kernel cleanup, then rebind.

2. setMassStorageMode(): pre-set recovery timer before UpdateGadgetConfig
   to prevent the poller from interfering. After the 1s sleep, if
   OpenKeyboardHidFile fails, do a corrective RebindUsb + retry.

3. checkUSBState() poller: when a state transition occurs and
   OpenKeyboardHidFile fails, trigger a corrective rebind to recover
   from host-initiated USB resets that corrupt the chardev.

* fix: suppress USB recovery poller before rebind in unmount and mode-change paths

The auto-recovery poller could see transient "not attached" UDC state
during RebindUsb and trigger a competing rebind, corrupting HID chardev
state. Add setUSBRecoveryTimer calls before the rebind in
unmountImageLocked and before the corrective rebind in setMassStorageMode.

* test: replace blind sleep with two-phase wait in factory-reset e2e test

Wait for device to become unreachable before polling for it to come back,
preventing false passes from stale pre-reset responses.

* refactor: simplify branch — extract helpers, remove duplication, fix flaky tests

- Extract rebindAndRecoverHID() in Go to deduplicate USB recovery sequences
- Remove redundant setUSBRecoveryTimer() call after UpdateGadgetConfig()
- Extract waitForKeyboardReady() helper replacing 5 duplicate retry loops
- Consolidate 3 duplicate remoteExec definitions into single remoteHostExec()
- Use shared SSH_OPTS from helpers.ts instead of hardcoded SSH options
- Fix remote agent omitempty on mouse X/Y causing undefined in TypeScript
- Poll keys-down state in disconnect test to avoid race condition

* fix: remove dead IsHidgChardevHealthy export, reset HID files before rebind

- Remove unused exported IsHidgChardevHealthy wrapper (only the unexported
  isHidgChardevHealthy is called, inside rebindUsb)
- Move ResetHIDFiles() before RebindUsb in checkUSBState so stale file
  handles are closed even if the rebind fails — prevents silent mouse
  write failures on dead inodes after a successful unbind + failed bind
2026-03-28 20:56:21 +01:00
Adam Shiervani 9bf63aacfb fix: reset USB gadget when virtual media unmount fails with EBUSY (#1331)
When unmountImageLocked() gets EBUSY from the kernel (host OS still
accessing the virtual disk via PREVENT MEDIUM REMOVAL), fall back to
gadget.RebindUsb(true) to force-disconnect the host, then retry the
unmount. Uses RebindUsb directly instead of UpdateGadgetConfig to avoid
hitting the same EBUSY when writing configfs attributes before rebind.

After rebind, properly reopen keyboard HID file (ResetHIDFiles + sleep +
OpenKeyboardHidFile) matching the pattern in setMassStorageMode().

Also propagate unmount errors to RPC callers and only clear
currentVirtualMediaState after the unmount actually succeeds.

Adds E2E test that mounts an ISO on the remote host to trigger PREVENT
MEDIUM REMOVAL, then verifies unmount succeeds and keyboard recovers.
2026-03-28 20:51:05 +01:00
Adam Shiervani ebb26463b5 feat: add scroll direction setting for macOS Natural Scrolling (#640) (#1340)
* feat(ui): add invert scroll direction toggle and fix Vite 8 CJS interop

Add scroll direction invert setting for macOS Natural Scrolling support.
Fix react-use-websocket CJS default export not resolving under Rolldown.

Fixes #640

* fix(ui): invert horizontal scroll when invertScroll is enabled

macOS Natural Scrolling inverts both axes at the OS level. The previous
change only corrected vertical scroll, leaving horizontal broken.
2026-03-28 19:38:53 +01:00
Adam Shiervani d03ecb42d8 Revert "feat(ui): add invert scroll direction toggle and fix Vite 8 CJS interop"
This reverts commit 61564e39f6.
2026-03-28 17:33:20 +01:00
Adam Shiervani 61564e39f6 feat(ui): add invert scroll direction toggle and fix Vite 8 CJS interop
Add scroll direction invert setting for macOS Natural Scrolling support.
Fix react-use-websocket CJS default export not resolving under Rolldown.

Fixes #640
2026-03-28 17:32:28 +01:00
Adam Shiervani 3610f69451 chore(ui): remove vite-tsconfig-paths plugin (#1367)
Vite 8 natively supports tsconfig path resolution via resolve.tsconfigPaths,
making the vite-tsconfig-paths plugin redundant.
2026-03-28 17:11:16 +01:00
Adam Shiervani f393a2f9ed fix(i18n): improve translation quality across all 13 languages (#1365)
Add 63-77 missing keys per language (factory reset, MQTT sections/errors,
serial console settings, appearance hide bars). Remove 5 obsolete keys.

Fix systemic mistranslations: keyboard keys vs crypto keys, DHCP lease
terminology, unit symbols (A/W), Gateway as tech term. Language-specific
fixes include de: Kennwort→Passwort, fr: crypté→chiffré, es/sv/nb/da:
keep Wake on LAN/loopback as English, pt: Brazilian→European Portuguese,
sv: Förlängning→Tillägg, it: contratto di locazione→lease.

Add I18N_BEST_PRACTICES.md with per-language guidelines.
2026-03-28 15:55:28 +01:00
Adam Shiervani 76e748a820 fix: USB HID startup recovery, unreliable channel fallback, and e2e test stability (#1364)
* fix: USB HID startup recovery and e2e test stability

- fix(usb): always rebind UDC on Init() to guarantee clean HID
  function driver state. After factory reset + reboot, the configfs
  entries may exist from the previous boot but the kernel's internal
  HID function attachment is broken (/dev/hidg0 returns ENXIO).
  The changeset resolver skipped the bind because the UDC file
  content matched — but content match != working. Rebinding on
  every startup is cheap (brief USB re-enumeration) and guarantees
  a clean state.

- fix(ui): fall back to reliable HID channel when unreliable WebRTC
  data channel is not yet established. Prevents silent mouse event
  drops during the brief window after page reload.

- fix(e2e): suppress SSH known-hosts warnings with LogLevel=ERROR,
  replace zsh-incompatible glob patterns with find(1), fix nested
  SSH quoting, increase USB rebind timeouts, add keyboard warmup
  after EDID changes, reorder tests for stability.

* test: remove Polish diacritics, WoL broadcast, and factory reset UI tests

* fix(test): assert keyboard recovery after EDID restore instead of silently passing

The retry loop captured no result and had no assertion, so a timeout
would let the test pass without verifying HID actually recovered.
2026-03-28 13:40:04 +01:00
Adam Shiervani 72d27ac85e feat: add custom broadcast IP option to Wake-on-LAN (#1238) (#1345)
* fix: add custom broadcast IP option to Wake-on-LAN (#1238)

Add support for specifying a custom subnet broadcast IP when sending
WOL magic packets, enabling wake across different subnets.

Backend:
- Add broadcastIP optional parameter to rpcSendWOLMagicPacket
- Add OptionalParams support to RPCHandler for params with zero defaults
- Pass broadcastIP query param through HTTP handler

UI:
- Add broadcast address dropdown (Auto/Custom) to WOL dialog
- Show subnet broadcast IP input when Custom is selected
- Pass broadcastIP to RPC call when custom mode is active

* fix: move broadcast address field to add form only, default to Auto (#1238)

* fix(ui): simplify WoL broadcast dropdown and indent custom field

- Rename "Auto (global broadcast)" to "Auto" in the broadcast address
  dropdown
- Wrap the custom subnet IP input in a nested indent with left border,
  matching the settings page pattern (NestedSettingsGroup style)

* fix(i18n): use localization system for WoL broadcast address labels

Replace hardcoded English strings with m.xxx() calls in the broadcast
address UI and add the 4 new keys to all 14 locale files.
2026-03-28 12:54:57 +01:00
Adam Shiervani 48eeb147eb chore(ui): migrate to Vite 8, oxlint, and oxfmt (#1362)
* chore(ui): migrate to Vite 8, oxlint, and oxfmt

Replace esbuild+Rollup with Oxc+Rolldown (Vite 8), ESLint with oxlint
(with type-aware linting), and Prettier with oxfmt. No source code
changes — formatting and lint fixes will roll out incrementally via
lint-staged as files are touched.

* fix(ui): resolve oxlint errors in existing code

Fix errors caught by oxlint: useless rename, redundant undefined on
optional params, duplicate union type constituent, and unsafe toString
on union type.
2026-03-28 12:47:40 +01:00
Adam Shiervani edaa86c0d3 feat: add USB CDC-ACM serial console gadget (#726) (#1352)
* fix: add USB serial console toggle to hardware settings (#726)

* fix: add USB CDC-ACM serial console gadget function (#726)

Add serial_console.go with acm.usb0 gadget config item following the
mass_storage pattern. Add SerialConsole bool to Devices struct and wire
it through config.go enable check and jsonrpc.go setUsbDeviceState.

The existing UI toggle in UsbDeviceSetting.tsx (with localization
messages) now calls through to the backend correctly.

When enabled, the KVM device creates /dev/ttyGS0 and the target host
sees a CDC-ACM serial device (/dev/ttyACM*). When disabled, the
symlink is removed from the USB gadget config and the host no longer
enumerates the ACM interface.

* fix: add CDC-ACM Console terminal UI for USB serial gadget (#726)

* fix: merge terminal buttons into split button and rename CDC-ACM to USB Serial Console (#726)

Combine KVM Terminal and USB Serial Console into a split button when both
are present, make USB serial console state reactive via zustand store so
the action bar updates without a page refresh, and fix the split button
chevron not respecting the disabled state.
2026-03-27 23:09:39 +01:00
Adam Shiervani 711158ab18 fix: modifier key auto-release and keyboard reset on disconnect (#641) (#1339)
* fix: modifier key auto-release and keyboard reset on disconnect (#641)

- Fix performAutoRelease() to check state.Modifier bitmask for modifier
  keys (0xE0-0xE7) instead of only checking state.Keys array, which never
  contained modifiers
- Release all keys (send all-keys-up HID report) when WebRTC session
  disconnects to prevent stuck keys
- Add keyboard state reset in onLastSessionDisconnected() as safety net

* test(e2e): add modifier auto-release and disconnect key-release tests

- Add test verifying modifier keys (Ctrl, Shift, Alt) auto-release after
  timeout using direct JSON-RPC to bypass browser keepalive
- Add test verifying all held keys are released when WebRTC session
  disconnects, checking both host-side events and device-side state
- Add getKeysDownState helper to e2e helpers
2026-03-27 22:38:12 +01:00
Adam Shiervani f05ef925f8 feat: add Polish (Polski) keyboard layout for paste support (#566) (#1348) 2026-03-27 22:18:51 +01:00
Adam Shiervani e735f7d228 fix(video): align VENC virtual width/height to 16 bytes for non-standard resolutions (#699) (#1347)
The RV1106 hardware H.264 encoder (VENC) requires virtual width and height
to be aligned to 16-pixel boundaries. Resolutions like 1366x768 (where 1366
is not divisible by 16) caused the encoder to fail silently, producing no
video output and triggering an infinite retry loop.

Changed RK_ALIGN_2 to RK_ALIGN_16 for u32VirWidth and u32VirHeight in both
the VENC attribute initialization and frame submission paths.
2026-03-27 16:51:29 +01:00