mmrelay 1.0.2__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mmrelay might be problematic. Click here for more details.
- {mmrelay-1.0.2/src/mmrelay.egg-info → mmrelay-1.0.3}/PKG-INFO +1 -1
- {mmrelay-1.0.2 → mmrelay-1.0.3}/setup.cfg +1 -1
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/__init__.py +1 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/main.py +1 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/meshtastic_utils.py +7 -2
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/setup_utils.py +1 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3/src/mmrelay.egg-info}/PKG-INFO +1 -1
- {mmrelay-1.0.2 → mmrelay-1.0.3}/LICENSE +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/MANIFEST.in +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/README.md +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/pyproject.toml +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/requirements.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/sample_config.yaml +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/cli.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/config.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/config_checker.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/db_utils.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/log_utils.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/matrix_utils.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugin_loader.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/__init__.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/base_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/debug_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/drop_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/health_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/help_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/map_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/mesh_relay_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/nodes_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/ping_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/telemetry_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay/plugins/weather_plugin.py +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay.egg-info/SOURCES.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay.egg-info/dependency_links.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay.egg-info/entry_points.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay.egg-info/requires.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/src/mmrelay.egg-info/top_level.txt +0 -0
- {mmrelay-1.0.2 → mmrelay-1.0.3}/tools/mmrelay.service +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mmrelay
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Bridge between Meshtastic mesh networks and Matrix chat rooms
|
|
5
5
|
Home-page: https://github.com/geoffwhittington/meshtastic-matrix-relay
|
|
6
6
|
Author: Geoff Whittington, Jeremiah K., and contributors
|
|
@@ -2,7 +2,6 @@ import asyncio
|
|
|
2
2
|
import contextlib
|
|
3
3
|
import io
|
|
4
4
|
import os
|
|
5
|
-
import sys
|
|
6
5
|
import threading
|
|
7
6
|
import time
|
|
8
7
|
from typing import List
|
|
@@ -279,7 +278,13 @@ async def reconnect():
|
|
|
279
278
|
|
|
280
279
|
# Show reconnection countdown with Rich (if not in a service)
|
|
281
280
|
if not is_running_as_service():
|
|
282
|
-
from rich.progress import
|
|
281
|
+
from rich.progress import (
|
|
282
|
+
BarColumn,
|
|
283
|
+
Progress,
|
|
284
|
+
TextColumn,
|
|
285
|
+
TimeRemainingColumn,
|
|
286
|
+
)
|
|
287
|
+
|
|
283
288
|
with Progress(
|
|
284
289
|
TextColumn("[cyan]Meshtastic: Reconnecting in"),
|
|
285
290
|
BarColumn(),
|
|
@@ -52,6 +52,7 @@ def print_service_commands():
|
|
|
52
52
|
def wait_for_service_start():
|
|
53
53
|
"""Wait for the service to start with a Rich progress indicator."""
|
|
54
54
|
import time
|
|
55
|
+
|
|
55
56
|
from rich.progress import Progress, SpinnerColumn, TextColumn, TimeElapsedColumn
|
|
56
57
|
|
|
57
58
|
# Create a Rich progress display with spinner and elapsed time
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mmrelay
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Bridge between Meshtastic mesh networks and Matrix chat rooms
|
|
5
5
|
Home-page: https://github.com/geoffwhittington/meshtastic-matrix-relay
|
|
6
6
|
Author: Geoff Whittington, Jeremiah K., and contributors
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|