From 96efe27abc4f7f7cf1bfaaa0006a0b77a25d47b6 Mon Sep 17 00:00:00 2001 From: pablorevilla-meshtastic Date: Fri, 3 Apr 2026 11:40:56 -0700 Subject: [PATCH] add channel to firehouse --- README.md | 11 ----------- meshview/lang/en.json | 1 + meshview/lang/es.json | 1 + meshview/templates/firehose.html | 4 +++- 4 files changed, 5 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index d334dc2..bc79e27 100644 --- a/README.md +++ b/README.md @@ -662,17 +662,6 @@ Check the log file to see it the script run at the specific time. --- -## Testing - -MeshView includes a test suite using pytest. For detailed testing documentation, see [README-testing.md](README-testing.md). - -Quick start: -```bash -./env/bin/pytest tests/test_api_simple.py -v -``` - ---- - ## Technical Documentation For more detailed technical documentation including database migrations, architecture details, and advanced topics, see the [docs/](docs/) directory. diff --git a/meshview/lang/en.json b/meshview/lang/en.json index a17b5df..9a3a7e8 100644 --- a/meshview/lang/en.json +++ b/meshview/lang/en.json @@ -180,6 +180,7 @@ "packet_id": "Packet ID", "from": "From", "to": "To", + "channel": "Channel", "port": "Port", "links": "Links", "unknown_app": "UNKNOWN APP", diff --git a/meshview/lang/es.json b/meshview/lang/es.json index 9795aad..fd27d02 100644 --- a/meshview/lang/es.json +++ b/meshview/lang/es.json @@ -179,6 +179,7 @@ "packet_id": "ID de paquete", "from": "De", "to": "A", + "channel": "Canal", "port": "Puerto", "direct_to_mqtt": "Directo a MQTT", "all_broadcast": "Todos" diff --git a/meshview/templates/firehose.html b/meshview/templates/firehose.html index 790b4d6..d775bc9 100644 --- a/meshview/templates/firehose.html +++ b/meshview/templates/firehose.html @@ -107,6 +107,7 @@ Packet ID From To + Channel Port @@ -343,12 +344,13 @@ async function fetchUpdates() { ${from} ${to} + ${pkt.channel || "—"} ${portLabel(pkt.portnum, pkt.payload, inlineLinks)} - ${safePayload} + ${safePayload} `;