-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettingsmeta.json
101 lines (101 loc) · 3.56 KB
/
settingsmeta.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
{
"name": "SqueezeBox Media Skill",
"skillMetadata": {
"sections": [
{
"name": "Connection to Logitech Media Server",
"fields": [
{
"type": "label",
"value": "",
"label": "Specify how to connect to Logitech Media Server.<p/>"
},
{
"name": "server",
"type": "text",
"label": "Server hostname or IP address",
"value": "",
"placeholder": "lms.mydomain.com"
},
{
"name": "port",
"type": "text",
"label": "Server port number",
"value": "",
"placeholder": "9000"
},
{
"name": "username",
"type": "text",
"label": "Username",
"value": "",
"placeholder": "lms_user"
},
{
"name": "password",
"type": "password",
"label": "Password",
"value": ""
}
]
},
{
"name": "SqueezeBox Player",
"fields": [
{
"type": "label",
"value": "",
"label": "Set to the default player this skill should handle.<p/>"
},
{
"name": "default_player_name",
"type": "text",
"label": "Default player name",
"value": "",
"placeholder": "Living Room"
}
]
},
{
"name": "Behavior",
"fields": [
{
"type": "label",
"value": "",
"label": "Set skill behavior.<p/>"
},
{
"name": "speak_dialog_enabled",
"type": "checkbox",
"label": "Respond by voice (no sound effects)",
"value": "false"
},
{
"name": "media_library_source_enabled",
"type": "checkbox",
"label": "Enable Media Library source",
"value": "true"
},
{
"name": "favorite_source_enabled",
"type": "checkbox",
"label": "Enable Favorite source",
"value": "true"
},
{
"name": "playlist_source_enabled",
"type": "checkbox",
"label": "Enable Playlist source",
"value": "true"
},
{
"name": "podcast_source_enabled",
"type": "checkbox",
"label": "Enable Podcast source",
"value": "true"
}
]
}
]
}
}