module.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "sequenceMgr",
  3. "path": "LIEN",
  4. "type": "OSC",
  5. "version": "0.0.1",
  6. "description": "augment control over sequence keys, with saving/recalling mecanism, grouping ",
  7. "url": "",
  8. "downloadURL": "",
  9. "hasInput": false,
  10. "hasOutput": false,
  11. "hideDefaultCommands": true,
  12. "hideDefaultParameters": [
  13. "protocol",
  14. "autoAdd",
  15. "messageStructure",
  16. "firstValueIsTheName",
  17. "port",
  18. "baudRate",
  19. "isConnected",
  20. "pass_through"
  21. ],
  22. "defaults": {},
  23. "parameters": {
  24. "Change sequence": {
  25. "type": "Trigger",
  26. "description": "unlock sequence list !!!! WILL DESTROY ALL VALUES !!!!"
  27. },
  28. "Sequence": {
  29. "type": "Enum"
  30. },
  31. "Clear sequence": {
  32. "type": "Trigger",
  33. "description": "Clear all groups, cues and keys"
  34. },
  35. "Reorder sequence": {
  36. "type": "Trigger",
  37. "description": "reorder layers (trig if lines draw wrong)"
  38. },
  39. "Synchronize":{
  40. "type": "Boolean",
  41. "default": true
  42. },
  43. "sync rate":{
  44. "type": "Integer",
  45. "default": 100,
  46. "min": 0
  47. },
  48. "Import&Export":{
  49. "type": "Container",
  50. "collapsed": true,
  51. "Sequence File": {
  52. "type": "File",
  53. "description": "Select json file with sequence structure."
  54. },
  55. "Import Sequence": {
  56. "type": "Trigger",
  57. "description": "Import json file as sequence, replacing sequence if existing."
  58. },
  59. "Export Sequence": {
  60. "type": "Trigger",
  61. "description": "export group structure and key values to json file"
  62. }
  63. }
  64. },
  65. "scripts": [
  66. "SequenceMgr.js"
  67. ],
  68. "values": {
  69. "New group":{
  70. "type": "Container",
  71. "collapsed": false,
  72. "Create": {
  73. "type": "Trigger",
  74. "description": "create a new key group"
  75. },
  76. "Layers":{
  77. "type": "Container",
  78. "collapsed": true
  79. }
  80. },
  81. "groups": {
  82. "type": "Container",
  83. "collapsed": false
  84. },
  85. "keys": {
  86. "type": "Container",
  87. "collapsed": false,
  88. "cues": {
  89. "type": "Container",
  90. "collapsed": false
  91. },
  92. "layers": {
  93. "type": "Container",
  94. "collapsed": false
  95. }
  96. }
  97. },
  98. "commands": {}
  99. }