keep device settings backwards compatible

pull/16/head
Kevin Hester 2021-03-03 09:37:50 +08:00
rodzic 7de496ffe9
commit 741d59faea
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -17,6 +17,10 @@ option java_outer_classname = "DeviceOnly";
* the receive queue and use the preferences store for the other stuff
*/
message DeviceState {
// Was secondary_channels before 1.2
reserved 12;
RadioConfig radio = 1;
/*
@ -64,5 +68,5 @@ message DeviceState {
/*
* The channels our node knows about
*/
repeated Channel channels = 12;
repeated Channel channels = 13;
}