diff options
author | Franz Koch <franz.koch@elements-net.de> | 2013-10-08 12:12:31 +0200 |
---|---|---|
committer | Franz Koch <franz.koch@elements-net.de> | 2013-11-02 11:26:22 +0100 |
commit | 5091a3fefe3cf386fb232da3835d01b869bfce8a (patch) | |
tree | 574a86e0ff909720dc0013c53bd4ec044c591595 | |
parent | e97d8407d9bc30fe31ada381ca99bf24bf0253a4 (diff) |
Bump JsonRPC api version
-rw-r--r-- | addons/xbmc.json/addon.xml | 2 | ||||
-rw-r--r-- | xbmc/interfaces/json-rpc/ServiceDescription.h | 22 |
2 files changed, 12 insertions, 12 deletions
diff --git a/addons/xbmc.json/addon.xml b/addons/xbmc.json/addon.xml index b209d7ace0..23be013d59 100644 --- a/addons/xbmc.json/addon.xml +++ b/addons/xbmc.json/addon.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<addon id="xbmc.json" version="6.7.0" provider-name="Team XBMC"> +<addon id="xbmc.json" version="6.8.0" provider-name="Team XBMC"> <backwards-compatibility abi="6.0.0"/> <requires> <import addon="xbmc.core" version="0.1.0"/> diff --git a/xbmc/interfaces/json-rpc/ServiceDescription.h b/xbmc/interfaces/json-rpc/ServiceDescription.h index 63031fe4cb..d373d2a8e8 100644 --- a/xbmc/interfaces/json-rpc/ServiceDescription.h +++ b/xbmc/interfaces/json-rpc/ServiceDescription.h @@ -22,7 +22,7 @@ namespace JSONRPC { const char* const JSONRPC_SERVICE_ID = "http://xbmc.org/jsonrpc/ServiceDescription.json"; - const char* const JSONRPC_SERVICE_VERSION = "6.7.0"; + const char* const JSONRPC_SERVICE_VERSION = "6.8.0"; const char* const JSONRPC_SERVICE_DESCRIPTION = "JSON-RPC API of XBMC"; const char* const JSONRPC_SERVICE_TYPES[] = { @@ -1315,16 +1315,16 @@ namespace JSONRPC "}", "\"Favourite.Details.Favourite\": {" "\"type\": \"object\"," - "\"properties\": {" - "\"title\": { \"type\": \"string\", \"required\": true }," - "\"type\": { \"$ref\": \"Favourite.Type\", \"required\": true }," - "\"path\": { \"type\": \"string\" }," - "\"window\": { \"type\": \"string\" }," - "\"windowparameter\": { \"type\": \"string\" }," - "\"thumbnail\": { \"type\": \"string\" }" - "}," - "\"additionalProperties\": false" - "}" + "\"properties\": {" + "\"title\": { \"type\": \"string\", \"required\": true }," + "\"type\": { \"$ref\": \"Favourite.Type\", \"required\": true }," + "\"path\": { \"type\": \"string\" }," + "\"window\": { \"type\": \"string\" }," + "\"windowparameter\": { \"type\": \"string\" }," + "\"thumbnail\": { \"type\": \"string\" }" + "}," + "\"additionalProperties\": false" + "}" }; const char* const JSONRPC_SERVICE_METHODS[] = { |