mirror of
https://github.com/meshtastic/web.git
synced 2026-08-01 07:26:34 -04:00
* feat(protobufs): sync to firmware-current and consume workspace package Sync the vendored .proto sources to firmware-current (v2.7.25+48), regenerate the v2 TS bindings, and consume the workspace @meshtastic/protobufs (workspace:*) in place of the stale JSR 2.7.20 — finishing the monorepo migration (core was already workspace:*). Includes the one required breaking-change fix: admin nodedb_reset changed int32 to bool, so resetNodes() now sends value: true. * build(protobufs): vendor generated bindings for workspace consumers The package is consumed via workspace:* — its exports point at the TS source, which imports ./dist/meshtastic/*_pb.ts — so the generated output must exist at build time. CI builds web/core with no codegen step and the runners have no buf CLI, so the bindings are vendored here (kept gitignored; lint/format skip them). Regenerate with: pnpm --filter @meshtastic/protobufs gen * fix(protobufs): clean script removes the actual generated output dir buf writes bindings to packages/ts/dist, but clean was removing a non-existent root dist — so it never cleaned stale output. Addresses Copilot review feedback. * refactor: move web app packages/web -> apps/web Aligns the web app with the apps/web layout (matching the Vercel web-test Root Directory and the SDK-migration direction). Pure directory move plus root config: pnpm-workspace (adds apps/*), vitest projects, root tsconfig reference, and the pr/release-web/nightly workflows. vercel.json moved with the app. Build + 36 validation tests green. * feat: config fields, module pages, key verification, telemetry capture Incorporates the firmware-current feature work onto the protobuf foundation: new config fields (Display message bubbles; LoRa fem_lna_mode + serial_hal_only; Telemetry air_quality_screen_enabled); 4 new ModuleConfig pages (TrafficManagement, StatusMessage, TAK, RemoteHardware); the manual Key Verification flow (sendKeyVerification + ClientNotificationDialog stages + Verify Key button); live telemetry capture (nodeDB addDeviceMetrics) and admin hardening (toggleMutedNode, graceful PortNum default); plus the sdk-preview ConfigEditor demo and store/config tests. Build + lint + format + 131 tests green. * chore: drop #1062 (unsaved-change-detection) to match upstream revert #1062 was merged to main by accident (per @danditomaso) and is being reverted. Reverse-applied its diff here via 3-way so #1097 stays consistent with where main is headed, while keeping the feature changes layered on the same files (deviceStore/changeRegistry). Build + 131 tests + lint + format green. * fix(nodes): clean up SNR display in node table and map popup SNR is a ratio measured in dB, not dBm (which is absolute power); the node table and map popup both mislabeled it and crammed three values together: '0dBm/50%/50raw'. The trailing '%/raw' pair was the same heuristic ((snr+10)*5) shown twice — once clamped, once not. Render SNR in dB rounded to one decimal, color-coded by a 0-100% signal-quality heuristic (green/yellow/red), with the quality percentage as a muted secondary. Drop the redundant raw value. Adds unit.db; this matches the existing SNRTooltip, which already renders dB.
51 lines
1.6 KiB
Protocol Buffer
51 lines
1.6 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package meshtastic;
|
|
|
|
/* trunk-ignore(buf-lint/COMPILE) */
|
|
import "meshtastic/deviceonly.proto";
|
|
import "meshtastic/telemetry.proto";
|
|
import "nanopb.proto";
|
|
|
|
option csharp_namespace = "Meshtastic.Protobufs";
|
|
option go_package = "github.com/meshtastic/go/generated";
|
|
option java_outer_classname = "DeviceOnlyLegacy";
|
|
option java_package = "org.meshtastic.proto";
|
|
option swift_prefix = "";
|
|
option (nanopb_fileopt).include = "<vector>";
|
|
|
|
/*
|
|
* Legacy NodeInfoLite descriptor used only to decode pre-split
|
|
* /prefs/nodes.proto saves during the v24 -> v25 migration boot.
|
|
* This preserves the original NodeInfoLite-compatible field numbers needed
|
|
* to parse old wire bytes cleanly, including user (2), position (3),
|
|
* device_metrics (6), and the legacy-only compatibility fields via_mqtt (8),
|
|
* is_favorite (10), and is_ignored (11). Steady-state code does not use
|
|
* this struct; it is dropped after migration completes. This file should be
|
|
* removed once DEVICESTATE_MIN_VER advances past 24.
|
|
*/
|
|
message NodeInfoLite_Legacy {
|
|
uint32 num = 1;
|
|
UserLite user = 2;
|
|
PositionLite position = 3;
|
|
float snr = 4;
|
|
fixed32 last_heard = 5;
|
|
DeviceMetrics device_metrics = 6;
|
|
uint32 channel = 7;
|
|
bool via_mqtt = 8;
|
|
optional uint32 hops_away = 9;
|
|
bool is_favorite = 10;
|
|
bool is_ignored = 11;
|
|
uint32 next_hop = 12;
|
|
uint32 bitfield = 13;
|
|
}
|
|
|
|
/*
|
|
* Legacy NodeDatabase shape: one repeated array of fat NodeInfoLite_Legacy
|
|
* with no satellite position/telemetry arrays.
|
|
*/
|
|
message NodeDatabase_Legacy {
|
|
uint32 version = 1;
|
|
repeated NodeInfoLite_Legacy nodes = 2 [(nanopb).callback_datatype = "std::vector<meshtastic_NodeInfoLite_Legacy>"];
|
|
}
|