diff --git a/README.md b/README.md index 5a6f103..ca9cd9c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,11 @@ ![Start Page](screenshots/animated.gif) 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.6 update - August 2025 +* New Live Map (Shows packet feed live) +* New API /api/config (See API documentation) +* New API /api/edges (See API documentation) +* Adds edges to the map (click to see traceroute and neighbours) ### Version 2.0.4 update - August 2025 * New statistic page with more data. diff --git a/meshview/web.py b/meshview/web.py index c19dc24..1b80453 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -24,7 +24,7 @@ import traceback import pathlib SEQ_REGEX = re.compile(r"seq \d+") -SOFTWARE_RELEASE= "2.0.5.08-30-25" +SOFTWARE_RELEASE= "2.0.6.08-27-25" CONFIG = config.CONFIG env = Environment(loader=PackageLoader("meshview"), autoescape=select_autoescape())