From 6d7c9e618051455ad82e184bd3a7f2ad569944f7 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 26 Mar 2025 07:27:23 -0500 Subject: [PATCH 1/6] Add is_attended to User --- meshtastic/deviceonly.proto | 5 +++++ meshtastic/mesh.proto | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index ea6ef2564..a98847877 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -94,6 +94,11 @@ message UserLite { * This is sent out to other nodes on the mesh to allow them to compute a shared secret key. */ bytes public_key = 7; + + /* + * Whether or not the node is attended by a User + */ + optional bool is_attended = 8; } message NodeInfoLite { diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 2e151185b..3fb084066 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -781,6 +781,11 @@ message User { * This is sent out to other nodes on the mesh to allow them to compute a shared secret key. */ bytes public_key = 8; + + /* + * Whether or not the node is attended by a User + */ + optional bool is_attended = 9; } /* From 81c3153396cd05a45b5f0f8e8dedb9c783d2167e Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Tue, 29 Apr 2025 06:15:31 -0500 Subject: [PATCH 2/6] Add dsstore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..e43b0f988 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store From 280f9d1bf8390d9011a6001a1cf75415471715e9 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 4 May 2025 06:34:23 -0500 Subject: [PATCH 3/6] Name --- meshtastic/mesh.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 3fb084066..248e28315 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -785,7 +785,7 @@ message User { /* * Whether or not the node is attended by a User */ - optional bool is_attended = 9; + bool is_unmessagable = 9; } /* From 4239bfc2f8275acf97b378984a73619d10ab9550 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 14 May 2025 10:38:53 -0500 Subject: [PATCH 4/6] Remove attended --- meshtastic/deviceonly.proto | 5 ----- 1 file changed, 5 deletions(-) diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index a98847877..ea6ef2564 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -94,11 +94,6 @@ message UserLite { * This is sent out to other nodes on the mesh to allow them to compute a shared secret key. */ bytes public_key = 7; - - /* - * Whether or not the node is attended by a User - */ - optional bool is_attended = 8; } message NodeInfoLite { From ca6ea45b527d804ededab7804f70a7ee9fd64871 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 14 May 2025 10:40:52 -0500 Subject: [PATCH 5/6] Update mesh.proto --- meshtastic/mesh.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 248e28315..df02247af 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -783,7 +783,7 @@ message User { bytes public_key = 8; /* - * Whether or not the node is attended by a User + * Whether or not the node can be messaged */ bool is_unmessagable = 9; } From af475e647253cc677d4c46d24eb8f2b55e0e8bda Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 14 May 2025 10:44:33 -0500 Subject: [PATCH 6/6] Also add to UserLite --- meshtastic/deviceonly.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index ea6ef2564..9c7a664be 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -94,6 +94,11 @@ message UserLite { * This is sent out to other nodes on the mesh to allow them to compute a shared secret key. */ bytes public_key = 7; + + /* + * Whether or not the node can be messaged + */ + bool is_unmessagable = 9; } message NodeInfoLite {