Implements full MeshDD-Bot with TCP connection to Meshtastic devices, SQLite storage for nodes/messages, aiohttp web dashboard with WebSocket live updates, and Leaflet.js map view with color-coded node markers. Includes bot commands (!ping, !nodes, !info, !help, !weather, !stats, !uptime) and automatic version bumping via pre-commit hook. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
68 B
Python
6 lines
68 B
Python
MAJOR = 0
|
|
MINOR = 1
|
|
PATCH = 0
|
|
|
|
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
|