Compare commits

...

5 Commits

Author SHA1 Message Date
Kevin Hester
e84fd77346 1.2.40 2021-05-30 10:13:14 +08:00
Kevin Hester
3d6de0c9d1 1.2.39 2021-05-30 10:11:39 +08:00
Kevin Hester
1fa5277a0c update protos 2021-05-30 10:11:39 +08:00
Kevin Hester
8c8dff97e4 Merge pull request #97 from jfirwin/patch-1
remove S from genPSKS256 on line 329
2021-05-30 10:10:16 +08:00
Foster Irwin
1242b090b9 remove S from genPSKS256 on line 329
Found [here](https://meshtastic.discourse.group/t/ch-add-admin-not-working-on-1-2-36/3432) on the forum.
2021-05-29 14:55:09 -06:00
5 changed files with 9 additions and 9 deletions

View File

File diff suppressed because one or more lines are too long

View File

@@ -326,7 +326,7 @@ def onConnected(interface):
if not ch:
raise Exception("No free channels were found")
chs = channel_pb2.ChannelSettings()
chs.psk = genPSKS256()
chs.psk = genPSK256()
chs.name = args.ch_add
ch.settings.CopyFrom(chs)
ch.role = channel_pb2.Channel.Role.SECONDARY

View File

File diff suppressed because one or more lines are too long

2
proto

Submodule proto updated: f604be5bb2...f5b3d0643b

View File

@@ -12,7 +12,7 @@ with open("README.md", "r") as fh:
# This call to setup() does all the work
setup(
name="meshtastic",
version="1.2.36",
version="1.2.40",
description="Python API & client shell for talking to Meshtastic devices",
long_description=long_description,
long_description_content_type="text/markdown",