-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
43 lines (43 loc) · 1.43 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
{
"author": "CandleSmartHome.com",
"description": "Airplay audio streaming. Stream music from your iPhone or Mac laptop to your Candle controller speakers.",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/flatsiedatsie/airport",
"id": "airport",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Airport",
"options": {
"default": {
"Audio": true,
"Video": false
},
"schema": {
"properties": {
"Audio": {
"description": "Airplay audio-only streaming. Enable this if you want to stream music.",
"type": "boolean"
},
"Video": {
"description": "Airplay screen mirroring. Supports audio, but cannot be used to stream audio only. This ability is no longer being developed because it doesn't work well. It might not work.",
"type": "boolean"
},
"Debugging": {
"description": "Debugging allows you to diagnose any issues with the add-on. If enabled it will result in a lot more debug data in the internal log (which can be found under settings -> developer -> view internal logs).",
"type": "boolean"
}
},
"required": [],
"type": "object"
}
},
"short_name": "Airport",
"version": "1.1.6"
}