diff --git a/docs/meshtastic/index.html b/docs/meshtastic/index.html index a62ad46..6a948e1 100644 --- a/docs/meshtastic/index.html +++ b/docs/meshtastic/index.html @@ -539,7 +539,7 @@ class MeshInterface: # Warn users if firmware doesn't use new portnum based data encodings # But do not crash, because the lib will still basically work and ignore those packet types if meshPacket.decoded.HasField("user") or meshPacket.decoded.HasField("position"): - logging.error("The device firmware is too old to work with this version of the python library. Please update firmware to 1.20 or later") + logging.warn("Ignoring old position/user message. Recommend you update firmware to 1.1.20 or later") if meshPacket.decoded.HasField("data"): @@ -1383,7 +1383,7 @@ noProto – If True, don't try to run our protocol on the link - just be a d # Warn users if firmware doesn't use new portnum based data encodings # But do not crash, because the lib will still basically work and ignore those packet types if meshPacket.decoded.HasField("user") or meshPacket.decoded.HasField("position"): - logging.error("The device firmware is too old to work with this version of the python library. Please update firmware to 1.20 or later") + logging.warn("Ignoring old position/user message. Recommend you update firmware to 1.1.20 or later") if meshPacket.decoded.HasField("data"): diff --git a/meshtastic/__init__.py b/meshtastic/__init__.py index 16da562..3c1578e 100644 --- a/meshtastic/__init__.py +++ b/meshtastic/__init__.py @@ -453,7 +453,7 @@ class MeshInterface: # Warn users if firmware doesn't use new portnum based data encodings # But do not crash, because the lib will still basically work and ignore those packet types if meshPacket.decoded.HasField("user") or meshPacket.decoded.HasField("position"): - logging.warn("The device firmware is using the old position/user format. Recommend you update firmware to 1.1.20 or later") + logging.warn("Ignoring old position/user message. Recommend you update firmware to 1.1.20 or later") if meshPacket.decoded.HasField("data"): diff --git a/setup.py b/setup.py index 60c7518..2804b80 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ with open("README.md", "r") as fh: # This call to setup() does all the work setup( name="meshtastic", - version="1.1.21", + version="1.1.22", description="Python API & client shell for talking to Meshtastic devices", long_description=long_description, long_description_content_type="text/markdown",