fix media interfaces

pull/135/head
Michael Zanetti 2018-11-29 18:42:47 +01:00
parent dd47a51597
commit c79908f1e2
4 changed files with 8 additions and 7 deletions

View File

@ -5,6 +5,7 @@
{ {
"name": "skipBack" "name": "skipBack"
}, },
{
"name": "stop" "name": "stop"
}, },
{ {

View File

@ -4,19 +4,19 @@
"states": [ "states": [
{ {
"name": "title", "name": "title",
"type": "string" "type": "QString"
}, },
{ {
"name": "artist", "name": "artist",
"type": "string" "type": "QString"
}, },
{ {
"name": "collection", "name": "collection",
"type": "string" "type": "QString"
}, },
{ {
"name": "artwork", "name": "artwork",
"type": "string" "type": "QString"
} }
] ]
} }

View File

@ -4,12 +4,12 @@
"states": [ "states": [
{ {
"name": "playbackStatus", "name": "playbackStatus",
"type": "string", "type": "QString",
"allowedValues": ["Playing", "Paused", "Stopped"] "allowedValues": ["Playing", "Paused", "Stopped"]
}, },
{ {
"name": "playerType", "name": "playerType",
"type": "string", "type": "QString",
"allowedValues": ["audio", "video"] "allowedValues": ["audio", "video"]
} }
] ]

View File

@ -8,7 +8,7 @@
}, },
{ {
"name": "repeat", "name": "repeat",
"type": "string", "type": "QString",
"allowedValues": ["None", "One", "All"], "allowedValues": ["None", "One", "All"],
"writable": true "writable": true
} }