diff options
author | montellese <montellese@xbmc.org> | 2012-09-19 22:56:23 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2012-09-19 22:57:46 +0200 |
commit | 54f4176e200621984f8764e4475348ceac0737f4 (patch) | |
tree | ff5eaf55ba464da58fd9b08286ba15c5b58941e3 | |
parent | 1dbf1fe80cde09deb37cccacc7aa017379a7b59b (diff) |
jsonrpc: remove "artistid" property from songs and albums
-rw-r--r-- | xbmc/interfaces/json-rpc/ServiceDescription.h | 5 | ||||
-rw-r--r-- | xbmc/interfaces/json-rpc/types.json | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/xbmc/interfaces/json-rpc/ServiceDescription.h b/xbmc/interfaces/json-rpc/ServiceDescription.h index 241ad4a9a1..98c6a5b39c 100644 --- a/xbmc/interfaces/json-rpc/ServiceDescription.h +++ b/xbmc/interfaces/json-rpc/ServiceDescription.h @@ -347,8 +347,7 @@ namespace JSONRPC "\"enum\": [ \"title\", \"description\", \"artist\", \"genre\"," "\"theme\", \"mood\", \"style\", \"type\", \"albumlabel\"," "\"rating\", \"year\", \"musicbrainzalbumid\"," - "\"musicbrainzalbumartistid\", \"fanart\", \"thumbnail\"," - "\"artistid\" ]" + "\"musicbrainzalbumartistid\", \"fanart\", \"thumbnail\" ]" "}" "}", "\"Audio.Fields.Song\": {" @@ -358,7 +357,7 @@ namespace JSONRPC "\"rating\", \"album\", \"track\", \"duration\", \"comment\"," "\"lyrics\", \"musicbrainztrackid\", \"musicbrainzartistid\"," "\"musicbrainzalbumid\", \"musicbrainzalbumartistid\"," - "\"playcount\", \"fanart\", \"thumbnail\", \"file\", \"artistid\"," + "\"playcount\", \"fanart\", \"thumbnail\", \"file\"," "\"albumid\", \"lastplayed\", \"disc\" ]" "}" "}", diff --git a/xbmc/interfaces/json-rpc/types.json b/xbmc/interfaces/json-rpc/types.json index 3f49e3c533..b849a38a4e 100644 --- a/xbmc/interfaces/json-rpc/types.json +++ b/xbmc/interfaces/json-rpc/types.json @@ -320,8 +320,7 @@ "enum": [ "title", "description", "artist", "genre", "theme", "mood", "style", "type", "albumlabel", "rating", "year", "musicbrainzalbumid", - "musicbrainzalbumartistid", "fanart", "thumbnail", - "artistid" ] + "musicbrainzalbumartistid", "fanart", "thumbnail" ] } }, "Audio.Fields.Song": { @@ -331,7 +330,7 @@ "rating", "album", "track", "duration", "comment", "lyrics", "musicbrainztrackid", "musicbrainzartistid", "musicbrainzalbumid", "musicbrainzalbumartistid", - "playcount", "fanart", "thumbnail", "file", "artistid", + "playcount", "fanart", "thumbnail", "file", "albumid", "lastplayed", "disc" ] } }, |