-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
67 lines (66 loc) · 1.86 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
{
"author": "bewee",
"description": "Frontier Silicon Internet Radio support",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/bewee/frontier-silicon-adapter",
"id": "frontier-silicon-adapter",
"license": "GPL-3.0",
"manifest_version": 1,
"name": "Frontier Silicon Internet Radio",
"short_name": "FS-Radio",
"version": "0.8.5",
"options": {
"default": {
"pin": "1234",
"ssdpPollInterval": 60,
"reconnectInterval": 10,
"limitVolume": 100,
"emojis": false,
"altcover": "https://cdn.pixabay.com/photo/2012/04/01/19/05/note-24074_960_720.png"
},
"schema": {
"type": "object",
"required": [
"pin",
"ssdpPollInterval",
"reconnectInterval",
"limitVolume",
"emojis",
"altcover"
],
"properties": {
"pin": {
"description": "PIN of your radio devices",
"type": "string"
},
"ssdpPollInterval": {
"description": "Interval in seconds that defines how often to search for new radios",
"type": "integer"
},
"reconnectInterval": {
"description": "Interval in seconds that defines how often to reconnect to a radio to which the connection was lost",
"type": "integer"
},
"limitVolume": {
"description": "Limit volume (percent relative to max volume)",
"type": "integer"
},
"emojis": {
"description": "Use icons rather than text",
"type": "boolean"
},
"altcover": {
"description": "URL to an image to be used when no cover is available",
"type": "string"
}
}
}
}
}