Update to

This commit is contained in:
pablorevilla-meshtastic
2026-01-15 11:39:24 -08:00
parent 36dd91be63
commit e30b59851f
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -4,6 +4,10 @@
The project serves as a real-time monitoring and diagnostic tool for the Meshtastic mesh network. It provides detailed insights into network activity, including message traffic, node positions, and telemetry data.
### Version 3.0.3 — February 2026
- Added database support for MySQL and PostgreSQL (alongside SQLite) for larger or shared deployments.
- Configuration updated to allow selecting the database backend via connection string.
### Version 3.0.2 — January 2026
- Changes to the Database to will make it so that there is a need for space when updating to the latest. SQlite requires to rebuild the database when droping a column. ( we are droping some of the old columns) so make sure you have 1.2x the size of the db of space in your environment. Depending on how big your db is it would take a long time.
+2 -2
View File
@@ -3,8 +3,8 @@
import subprocess
from pathlib import Path
__version__ = "3.0.2"
__release_date__ = "2026-1-9"
__version__ = "3.0.3"
__release_date__ = "2026-1-15"
def get_git_revision():