summaryrefslogtreecommitdiff
path: root/protocol/udm.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/udm.proto')
-rw-r--r--protocol/udm.proto6
1 files changed, 4 insertions, 2 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto
index 029183f..120fc9e 100644
--- a/protocol/udm.proto
+++ b/protocol/udm.proto
@@ -37,9 +37,11 @@ message module_download_ui_element_info {
required int32 id = 2; //internal element id used to get element value (should be unique for every loaded module)
optional string name = 3 [default = "not set"]; //can be non unique
optional string description = 4;
- repeated module_download_ui_element_info children = 5;
+ optional bool data_required = 5 [default = false]; //ui element may required data specified (used in download creation ui)
+ repeated module_download_ui_element_info children = 6;
}
+
message module_download_menu_element_info {
required int32 id = 1;
required string name = 2;
@@ -247,7 +249,7 @@ message module_info //general module info for client including settings, downloa
repeated module_download_ui_element_info download_info_ui = 6; //always complete here
repeated module_download_ui_element_info download_creation_ui = 7;
repeated module_download_menu_element_info download_menu = 8;
- repeated module_download_menu_element_info download_children_menu = 9; //menu for files and folders inside download root, may not present
+ repeated module_download_menu_element_info download_content_menu = 9; //menu for files and folders inside download root, may not present
repeated string_pair get_downloads_parameters_info = 10;
}