Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

device-ui: add channel filter, add slovenian #642

Merged
merged 1 commit into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meshtastic/device_ui.options
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
*DeviceUIConfig.calibration_data max_size:16
*NodeFilter.node_name max_size:16
*NodeFilter.hops_away int_size:8
*NodeFilter.channel int_size:8
*NodeHighlight.node_name max_size:16
10 changes: 10 additions & 0 deletions meshtastic/device_ui.proto
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ message NodeFilter {
*/
string node_name = 6;

/*
* Filter based on channel
*/
int32 channel = 7;

}

message NodeHighlight {
Expand Down Expand Up @@ -224,6 +229,11 @@ enum Language {
*/
NORWEGIAN = 14;

/*
* Slovenian
*/
SLOVENIAN = 15;

/*
* Simplified Chinese (experimental)
*/
Expand Down
Loading