summaryrefslogtreecommitdiff
path: root/protocol/udm.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/udm.proto')
-rw-r--r--protocol/udm.proto7
1 files changed, 4 insertions, 3 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto
index a801b00..0825dc1 100644
--- a/protocol/udm.proto
+++ b/protocol/udm.proto
@@ -176,8 +176,9 @@ message setting_info {
optional string default_value = 1 [default = "empty"];
optional string minimal_value = 2 [default = "not set"];
optional string maximal_value = 3 [default = "not set"];
- repeated string dependencies = 4; //list containing all settings which must be turned on for this setting
- repeated string blockers = 5; //list of settings which must be turned of for this setting
+ optional string description = 4;
+ repeated string dependencies = 5; //list containing all settings which must be turned on for this setting
+ repeated string blockers = 6; //list of settings which must be turned of for this setting
}
message setting {
@@ -209,7 +210,7 @@ message module_info //general module info for client including settings, downloa
required SERVER_MODULE_TYPE type = 1;
required string name = 2; //unique (used as module id)
required string version = 3;
- optional string decription = 4 [default = "no description specified"];
+ optional string description = 4 [default = "no description specified"];
repeated setting settings = 5;
repeated module_download_ui_element_info download_info_ui = 6; //always complete here
repeated module_download_ui_element_info download_creation_ui = 7;