From 7dafbd146288aabbfacada10a982832c153f8ace Mon Sep 17 00:00:00 2001 From: liamcottle Date: Wed, 11 Sep 2024 20:28:11 +1200 Subject: [PATCH] add lxmf and rns versions to app info api response --- meshchat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshchat.py b/meshchat.py index 61b5958..e45e6a1 100644 --- a/meshchat.py +++ b/meshchat.py @@ -543,6 +543,8 @@ class ReticulumMeshChat: return web.json_response({ "app_info": { "version": self.get_app_version(), + "lxmf_version": LXMF.__version__, + "rns_version": RNS.__version__, "storage_path": self.storage_path, "database_path": self.database_path, "database_file_size": os.path.getsize(self.database_path),