summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-22 03:02:41 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-22 03:02:41 +0300
commit29e018ac3c35aa904b37330f467d7299b559acbb (patch)
tree3db67249088c4001b1563bfa5d46b44fa95b434f
parent55be2cf43aecb0be614fe51780417b282f26ef3b (diff)
protocol:
we also need some info about download creation ui
-rw-r--r--protocol/udm.proto7
1 files changed, 4 insertions, 3 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto
index 998a680..3ee2f63 100644
--- a/protocol/udm.proto
+++ b/protocol/udm.proto
@@ -201,10 +201,11 @@ message module_info
required string name = 2; //unique (used as module id)
required string version = 3;
optional string decription = 4 [default = "no description specified"];
- repeated setting_info settings = 5; //may be ampty
+ repeated setting_info settings = 5;
repeated module_download_ui_element_info download_ui = 6; //always complete here
- repeated module_download_menu_element_info download_menu = 7;
- repeated module_download_menu_element_info download_cheldren_menu = 8; //menu for files and folders inside download root, may not present
+ 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
}
//module related messages end