Compare commits

...

4 Commits

Author SHA1 Message Date
c24bef2a35 fix lxmf propagation node app data 2025-11-21 11:44:29 -06:00
liamcottle
011876bec5 2.3.0 2025-11-11 23:09:01 +13:00
liamcottle
e3dae8aea9 update rns to v1.0.2 2025-11-11 22:57:46 +13:00
liamcottle
c2ee9be39a update lxmf to v0.9.2 2025-11-11 22:56:57 +13:00
4 changed files with 7 additions and 7 deletions

View File

@@ -3248,9 +3248,9 @@ class ReticulumMeshChat:
app_data_bytes = base64.b64decode(app_data_base64)
data = msgpack.unpackb(app_data_bytes)
return {
"enabled": bool(data[0]),
"enabled": bool(data[2]),
"timebase": int(data[1]),
"per_transfer_limit": int(data[2]),
"per_transfer_limit": int(data[3]),
}
except:
return None

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "reticulum-meshchat",
"version": "2.2.1",
"version": "2.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "reticulum-meshchat",
"version": "2.2.1",
"version": "2.3.0",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",

View File

@@ -1,6 +1,6 @@
{
"name": "reticulum-meshchat",
"version": "2.2.1",
"version": "2.3.0",
"description": "",
"main": "electron/main.js",
"scripts": {

View File

@@ -1,6 +1,6 @@
aiohttp>=3.12.14
cx_freeze>=7.0.0
lxmf>=0.8.0
lxmf>=0.9.2
peewee>=3.18.1
rns>=1.0.0
rns>=1.0.2
websockets>=14.2