-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
131 lines (131 loc) · 2.92 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"Name": "Receiver Control",
"Version": "0.7.4.0",
"Author": "Matthew Thiel",
"Actions": [
{
"Name": "Volume Control",
"UUID": "com.mthiel.denon-controller.volume",
"Icon": "imgs/actions/volume/volume2",
"Tooltip": "Displays the current volume and allows for adjustment.",
"PropertyInspectorPath": "ui/action.html",
"Controllers": [
"Keypad",
"Encoder"
],
"DisableAutomaticStates": true,
"Encoder": {
"layout": "$B1",
"TriggerDescription": {
"Push": "Mute/Unmute",
"Rotate": "Adjust Volume",
"Touch": "Mute/Unmute"
}
},
"States": [
{
"Name": "Unmute",
"Image": "imgs/actions/volume/volume2"
},
{
"Name": "Mute",
"Image": "imgs/actions/volume/volumeMute"
}
]
},
{
"Name": "Power Control",
"UUID": "com.mthiel.denon-controller.power",
"Icon": "imgs/actions/power/powerOn",
"Tooltip": "Turns the receiver on or off.",
"PropertyInspectorPath": "ui/action.html",
"Controllers": [
"Keypad"
],
"DisableAutomaticStates": true,
"States": [
{
"Name": "On",
"Image": "imgs/actions/power/powerOn"
},
{
"Name": "Off",
"Image": "imgs/actions/power/powerOff"
}
]
},
{
"Name": "Source Control",
"UUID": "com.mthiel.denon-controller.source",
"Icon": "imgs/actions/source/source",
"Tooltip": "Displays the current source and allows for selection.",
"PropertyInspectorPath": "ui/action.html",
"Controllers": [
"Keypad"
],
"DisableAutomaticStates": true,
"States": [
{
"Name": "Source",
"Image": "imgs/actions/source/source"
}
]
},
{
"Name": "Dynamic Volume Control",
"UUID": "com.mthiel.denon-controller.dynvol",
"Icon": "imgs/actions/dynvol/dynvol",
"Tooltip": "Displays the current dynamic volume state and cycles through the states.",
"PropertyInspectorPath": "ui/action.html",
"Controllers": [
"Keypad"
],
"DisableAutomaticStates": true,
"States": [
{
"Name": "Dynvol",
"Image": "imgs/actions/dynvol/dynvol"
},
{
"Name": "Off",
"Image": "imgs/actions/dynvol/off"
},
{
"Name": "Light",
"Image": "imgs/actions/dynvol/light"
},
{
"Name": "Medium",
"Image": "imgs/actions/dynvol/medium"
},
{
"Name": "Heavy",
"Image": "imgs/actions/dynvol/heavy"
}
]
}
],
"Category": "Receiver Control",
"CategoryIcon": "imgs/plugin/category-icon",
"CodePath": "bin/plugin.js",
"Description": "Uses the network interface on many Denon/Marantz receivers to control basic functions. Requires a model with HEOS support for network control.",
"Icon": "imgs/plugin/marketplace",
"SDKVersion": 2,
"Software": {
"MinimumVersion": "6.4"
},
"OS": [
{
"Platform": "mac",
"MinimumVersion": "10.15"
},
{
"Platform": "windows",
"MinimumVersion": "10"
}
],
"Nodejs": {
"Version": "20"
},
"UUID": "com.mthiel.denon-controller"
}