From ead29f1dbb7e7117634f49250a079cbfa9d9e177 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Tue, 12 Aug 2025 15:25:32 -0700 Subject: [PATCH] New updates to documentation --- README.md | 6 ++++++ meshview/web.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a8002a4..17eccd8 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ The project serves as a real-time monitoring and diagnostic tool for the Meshtastic mesh network. It provides detailed insights into the network's activity, including message traffic, node positions, and telemetry data. +### Version 2.0.4 update - August 2025 +* New statistic page with more data. +* New api /api/stats (See api documentation). +* Inprovement on "See Everything" and "Conversation" pages. +* Tracking of replies with links to original message. + ### Version 2.0.3 update - June 2025 * Moved more graphs to eCharts. * Addedd smooth updating for "Conversations" and "See everything" sections. diff --git a/meshview/web.py b/meshview/web.py index 5a39baf..8bb4c7c 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -23,7 +23,7 @@ import re import traceback SEQ_REGEX = re.compile(r"seq \d+") -SOFTWARE_RELEASE= "2.0.3.08-12-25" +SOFTWARE_RELEASE= "2.0.4.08-12-25" CONFIG = config.CONFIG env = Environment(loader=PackageLoader("meshview"), autoescape=select_autoescape())