2313 Commits

Author SHA1 Message Date
Mark Qvist
5aaa743ef8 Updated rnid output 2025-11-01 14:11:35 +01:00
markqvist
9721c0bf85 Merge pull request #901 from jacobeva/cmd_interfaces_fix
Change CMD_INTERFACES value to be 0x71, fix #900
2025-11-01 14:10:34 +01:00
Mark Qvist
56848cdb63 Ensure default destination app data can be generated and sent even on first system-internal discovery announce 2025-10-31 21:25:28 +01:00
Mark Qvist
41ad089ff7 Added path response status signalling to announce handlers 2025-10-30 15:00:39 +01:00
Mark Qvist
2df355d7b4 Updated version 2025-10-30 14:11:06 +01:00
Mark Qvist
39a63b0643 WeaveInterface compatibility on Android 2025-10-29 15:44:47 +01:00
Mark Qvist
ddf14e5636 Updated WeaveInterface. Added support for Weave devices to rnstatus. 2025-10-29 12:43:20 +01:00
Mark Qvist
7138749307 Fixed RNodeInterface BLE reconnection hang on Android 2025-10-28 12:31:52 +01:00
Mark Qvist
af7697f223 Fixed string formatting for Android 2025-10-28 12:31:30 +01:00
Mark Qvist
0bcb4b8573 Cleanup 2025-10-28 10:59:58 +01:00
Mark Qvist
6d47b59b1e Added WeaveInterface 2025-10-28 02:31:33 +01:00
Mark Qvist
3d8eaffe9a Added WeaveInterface 2025-10-28 02:20:22 +01:00
Mark Qvist
d8039aca17 Changed CMD_INTERFACES to 0x71. Fixes #900. 2025-10-28 02:10:02 +01:00
Mark Qvist
4e4d379486 Fixed Android BLE MTU for RNodeInterface 2025-10-28 02:05:59 +01:00
SCWhite
87faffa785 minor error in hardware.html
manual/hareware.html: correct T114 device platform "ESP32" → "nRF52"
2025-09-04 02:59:53 +08:00
jacob.eva
adef3f80f0 Change CMD_INTERFACES value to be 0x71, fix #900 2025-08-16 16:10:13 +01:00
Mark Qvist
319c798f78 Updated readme 2025-07-15 02:28:54 +02:00
Mark Qvist
8579a7f2a5 Updated changelog 2025-07-14 16:37:41 +02:00
Mark Qvist
ffbbba7395 Updated manual 2025-07-14 16:37:06 +02:00
Mark Qvist
e66745c9ef Updated documentation 2025-07-14 16:07:07 +02:00
Mark Qvist
45fc9338a7 Improved BLE MTU on Android 2025-07-13 23:45:50 +02:00
Mark Qvist
f2969bd1b0 Improved BLE device discovery on Android 2025-07-13 22:07:47 +02:00
Mark Qvist
e0f1f3f947 Merge branch 'master' of github.com:markqvist/Reticulum 2025-07-13 19:17:13 +02:00
Mark Qvist
e3827f2e25 Updated manual 2025-07-13 19:17:00 +02:00
Mark Qvist
fad1d4972c Fixed potential EPOLL hang on interface failure 2025-07-13 19:16:51 +02:00
markqvist
2c33ce6c98 Merge pull request #839 from wincentbalin/master
Fixed typo
2025-07-13 15:02:45 +02:00
Mark Qvist
c0d7f42f17 Cleanup 2025-07-13 14:51:24 +02:00
Mark Qvist
d5a8e4b056 Trace exception on public key load failure 2025-07-13 13:58:09 +02:00
Mark Qvist
76dd50a060 Fixed potential AutoInterface peer discovery add before final init complete 2025-07-13 13:14:18 +02:00
Mark Qvist
6f9a9a7ad9 Fixed link request handling with invalid link mode 2025-07-13 13:05:37 +02:00
Mark Qvist
eaec9a493b Updated readme 2025-07-13 12:28:50 +02:00
Mark Qvist
d3c8555b39 Updated documentation 2025-07-13 12:26:24 +02:00
Mark Qvist
446f5c0989 Merge branch 'master' of github.com:markqvist/Reticulum 2025-07-13 12:05:59 +02:00
markqvist
f3b72a8a3c Merge pull request #844 from Aareon/patch-2
fix(rnstatus): Add validation for missing -i flag when using -R
2025-07-13 12:06:20 +02:00
markqvist
d2c5a1f34b Merge pull request #856 from jacobeva/multi_transport_fix
Fix announce cap crash when transport mode enabled
2025-07-13 11:56:59 +02:00
markqvist
182b49cc04 Merge pull request #843 from Aareon/patch-1
docs: Document -R and -i flag dependency in rnstatus usage
2025-07-13 11:54:59 +02:00
Mark Qvist
cc8bd34cd4 Merge branch 'master' of github.com:markqvist/Reticulum 2025-07-13 11:54:54 +02:00
Mark Qvist
957ece7394 Fixed typo 2025-07-13 11:53:25 +02:00
Mark Qvist
762343adf9 Updated version 2025-07-13 11:49:44 +02:00
Mark Qvist
8d32b378d9 Fixed log statements 2025-07-13 11:49:12 +02:00
jacob.eva
41e816d299 Fix announce cap crash when transport mode enabled 2025-07-01 18:16:24 +01:00
Aareon Sullivan
4226a62f23 fix(rnstatus): Add validation for missing -i flag when using -R
Add check to ensure `management_identity` is provided when using remote
query flag (`-R`). Prevents `TypeError` and provides clear error message
when user forgets to specify identity file with `-i` flag.

Before: `expected str, bytes or os.PathLike object, not NoneType`
After: `Remote management requires an identity file. Use -i to specify the path to a management identity.`

Fixes #792
2025-06-08 19:52:46 -05:00
Aareon Sullivan
5dda28559b docs: Document -R and -i flag dependency in rnstatus usage
Add usage example and clarify that -R requires -i flag for remote
transport instance status queries. Fixes confusion where users get
"expected str, bytes or os.PathLike object, not NoneType" error
when using -R without -i.

- Add remote status query example to Usage Examples section
- Update -R flag description to indicate -i requirement
- Add explanatory note about management identity authorization

Addresses user reported issue where documentation was unclear about
mandatory flag combination for remote management functionality.
2025-06-08 19:33:42 -05:00
Wincent Balin
d055ca50d6 Fixed typo 2025-05-31 01:12:25 +02:00
Mark Qvist
799bcfc7aa Updated version 2025-05-26 19:08:03 +02:00
Mark Qvist
045cb662ef Removed legacy AES-128 handlers 2025-05-26 19:04:30 +02:00
Mark Qvist
51e3983bf8 Updated readme 2025-05-17 10:39:52 +02:00
Mark Qvist
95fdc41845 Updated readme 2025-05-17 10:39:30 +02:00
Mark Qvist
d795fbeaf3 Updated documentation 2025-05-17 10:37:11 +02:00
Mark Qvist
13037d68ed Updated documentation 2025-05-17 10:35:49 +02:00