generated from midi-mixer/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
114 lines (114 loc) · 2.87 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"$schema": "./node_modules/midi-mixer-plugin/plugin.schema.json",
"id": "midi.mixer.wavelink.new",
"name": "Elgato WaveLink Plugin",
"type": "node",
"version": "0.9.0",
"author": "Rick van Modem",
"main": "lib/main.js",
"settings": {
"connectionStatus": {
"label": "Connection status",
"type": "status",
"fallback": "Disconnected"
},
"outputDevicesCount": {
"label": "Output Devices",
"type": "status"
},
"outputDeviceSelected": {
"label": "Current Selected Output Device",
"type": "status"
},
"outputDevice0": {
"label": "Output Device 1",
"type": "status",
"fallback": "Disabled"
},
"outputDevice0Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice1": {
"label": "Output Device 2",
"type": "status",
"fallback": "Disabled"
},
"outputDevice1Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice2": {
"label": "Output Device 3",
"type": "status",
"fallback": "Disabled"
},
"outputDevice2Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice3": {
"label": "Output Device 4",
"type": "status",
"fallback": "Disabled"
},
"outputDevice3Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice4": {
"label": "Output Device 5",
"type": "status",
"fallback": "Disabled"
},
"outputDevice4Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice5": {
"label": "Output Device 6",
"type": "status",
"fallback": "Disabled"
},
"outputDevice5Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice6": {
"label": "Output Device 7",
"type": "status",
"fallback": "Disabled"
},
"outputDevice6Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice7": {
"label": "Output Device 8",
"type": "status",
"fallback": "Disabled"
},
"outputDevice7Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice8": {
"label": "Output Device 9",
"type": "status",
"fallback": "Disabled"
},
"outputDevice8Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
},
"outputDevice9": {
"label": "Output Device 10",
"type": "status",
"fallback": "Disabled"
},
"outputDevice9Enabled": {
"label": "Enable button and add to switch rotation",
"type": "toggle"
}
}
}