meshcore-cli 1.3.13__tar.gz → 1.3.14__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.
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/PKG-INFO +1 -1
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/pyproject.toml +1 -1
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/src/meshcore_cli/meshcore_cli.py +2 -2
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/.gitignore +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/LICENSE +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/README.md +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/flake.lock +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/flake.nix +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/src/meshcore_cli/__init__.py +0 -0
- {meshcore_cli-1.3.13 → meshcore_cli-1.3.14}/src/meshcore_cli/__main__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshcore-cli
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.14
|
|
4
4
|
Summary: Command line interface to meshcore companion radios
|
|
5
5
|
Project-URL: Homepage, https://github.com/fdlamotte/meshcore-cli
|
|
6
6
|
Project-URL: Issues, https://github.com/fdlamotte/meshcore-cli/issues
|
|
@@ -32,7 +32,7 @@ import re
|
|
|
32
32
|
from meshcore import MeshCore, EventType, logger
|
|
33
33
|
|
|
34
34
|
# Version
|
|
35
|
-
VERSION = "v1.3.
|
|
35
|
+
VERSION = "v1.3.14"
|
|
36
36
|
|
|
37
37
|
# default ble address is stored in a config file
|
|
38
38
|
MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"
|
|
@@ -1083,7 +1083,7 @@ Some cmds have an help accessible with ?<cmd>. Do ?[Tab] to get a list.
|
|
|
1083
1083
|
dest_scope = dest.split("%")[-1]
|
|
1084
1084
|
dest = dest[:-len(dest_scope)-1]
|
|
1085
1085
|
await set_scope (mc, dest_scope)
|
|
1086
|
-
tct = get_contact_from_arg(mc, dest)
|
|
1086
|
+
tct = await get_contact_from_arg(mc, dest)
|
|
1087
1087
|
if len(args)>1 and not tct is None: # a contact, send a message
|
|
1088
1088
|
if tct["type"] == 1 or tct["type"] == 3: # client or room
|
|
1089
1089
|
last_ack = await msg_ack(mc, tct, line.split(" ", 1)[1])
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|