-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.03 KB
/
manifest.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
{
"SDKVersion": 2,
"Author": "Aaron Patterson",
"CodePath": "plugin.rb",
"Description": "Sample Description",
"Name": "Sample Name",
"Icon": "actions/template/assets/ruby",
"URL": "https://github.com/tenderlove/streamdeck-ruby-plugin",
"Version": "1.0.2",
"Software": {
"MinimumVersion": "5.0"
},
"OS": [
{
"Platform": "mac",
"MinimumVersion": "10.11"
}
],
"Category": "Example Category",
"CategoryIcon": "actions/template/assets/ruby",
"Actions": [
{
"Icon": "actions/template/assets/ruby",
"Name": "Example Action",
"Controllers": ["Keypad"],
"States": [
{
"Image": "actions/template/assets/ruby"
},
{
"Image": "actions/template/assets/ruby-green"
},
{
"Image": "actions/template/assets/ruby-blue"
},
{
"Image": "actions/template/assets/ruby-purple"
}
],
"Tooltip": "This is an example tooltip",
"UUID": "com.example.example-plugin.action"
}
]
}