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": "stop"
},
{

View File

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

View File

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

View File

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