-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
97 lines (94 loc) · 2.67 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
{
"Name": "Squeezebox",
"Description": "Simple actions to control a local Squeezebox server",
"Version": "0.1",
"Author": "Stefan Zörner",
"SDKVersion": 2,
"Category": "Squeezebox",
"CategoryIcon": "assets/images/Category",
"Icon": "assets/images/Category",
"CodePath": "streamdeck-squeezebox.exe",
"CodePathMac": "streamdeck-squeezebox",
"URL": "https://github.com/StefanZoerner/streamdeck-squeezebox",
"Actions": [
{
"Name": "Configuration",
"Tooltip": "Configure the connection to your LMS",
"Icon": "assets/images/actions/configure",
"SupportedInMultiActions": false,
"UUID": "de.szoerner.streamdeck.squeezebox.actions.configure",
"PropertyInspectorPath": "html/configuration.html",
"States": [
{
"Image": "assets/images/keys/configure"
}
]
},
{
"Name": "Play/Pause Toggle",
"Tooltip": "Toggle play mode for a player",
"Icon": "assets/images/actions/play_toggle",
"SupportedInMultiActions": false,
"UUID": "de.szoerner.streamdeck.squeezebox.actions.playtoggle",
"PropertyInspectorPath": "html/player_selection.html",
"States": [
{
"Image": "assets/images/keys/play_pause"
}
]
},
{
"Name": "Album Art",
"Tooltip": "Show the cover art of an album in a tile",
"Icon": "assets/images/actions/album_art",
"SupportedInMultiActions": false,
"UUID": "de.szoerner.streamdeck.squeezebox.actions.albumart",
"PropertyInspectorPath": "html/albumart_pi.html",
"States": [
{
"Image": "assets/images/keys/album_art"
}
]
},
{
"Name": "Volume Control",
"Tooltip": "Change the volume of a player up or down",
"Icon": "assets/images/actions/volume",
"SupportedInMultiActions": false,
"UUID": "de.szoerner.streamdeck.squeezebox.actions.volume",
"PropertyInspectorPath": "html/volume_pi.html",
"States": [
{
"Image": "assets/images/keys/volume_up"
}
]
},
{
"Name": "Change Track",
"Tooltip": "Previous or next track in the playlist of a player",
"Icon": "assets/images/actions/track",
"SupportedInMultiActions": false,
"UUID": "de.szoerner.streamdeck.squeezebox.actions.track",
"PropertyInspectorPath": "html/track_pi.html",
"States": [
{
"Image": "assets/images/keys/track_next"
}
]
}
],
"OS": [
{
"Platform": "mac",
"MinimumVersion" : "10.11"
},
{
"Platform": "windows",
"MinimumVersion" : "10"
}
],
"Software":
{
"MinimumVersion" : "4.1"
}
}