-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
112 lines (112 loc) · 2.08 KB
/
app.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
{
"id": "com.jreenen.dlna.cast",
"version": "0.0.1",
"compatibility": ">=1.5.0",
"sdk": 2,
"brandColor": "#45aa42",
"name": {
"en": "Homey DLNA",
"nl": "Homey DLNA"
},
"description": {
"en": "Adds support for DLNA certified devices."
},
"category": [
"video",
"music",
"tools"
],
"tags": {
"en": [
"DLNA",
"UPnP",
"mp3",
"mp4",
"picture",
"photo"
],
"nl": [
"DLNA",
"UPnP",
"mp3",
"mp4",
"picture",
"foto",
"afbeelding"
]
},
"permissions": [],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Jeroen van Reenen",
"email": "[email protected]"
},
"drivers": [
{
"id": "dlna-cast-driver",
"name": {
"en": "DLNA cast driver"
},
"class": "speaker",
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
],
"capabilities": [
"speaker_album",
"speaker_artist",
"speaker_playing",
"volume_set"
],
"images": {
"large": "/drivers/dlna-cast-driver/assets/images/large.png",
"small": "/drivers/dlna-cast-driver/assets/images/small.png"
}
}
],
"flow": {
"actions": [
{
"id": "cast_media",
"title": {
"en": "Cast media",
"nl": "Cast media"
},
"args": [
{
"name": "cast_device",
"type": "device",
"filter": "driver_id=dlna-cast-driver"
},
{
"name": "media_url",
"type": "text",
"placeholder": {
"en": "Media url",
"nl": "Media url"
}
}
]
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "jreenen"
}
}
}
}