diff options
author | theuni <theuni-nospam-@xbmc.org> | 2011-04-28 23:52:28 -0400 |
---|---|---|
committer | theuni <theuni-nospam-@xbmc.org> | 2011-04-28 23:56:43 -0400 |
commit | e5fe7187006168b58b4ad90a16ba12302d8afefc (patch) | |
tree | 46b61e69037125ac6c4618a96522ce21e64871e0 | |
parent | 879af7de1b0f9a66dbae9ba4c7db14f0fd17f76b (diff) |
follow-up previous commit. webinterfaces now require xbmc.json
-rw-r--r-- | addons/webinterface.default/addon.xml | 1 | ||||
-rw-r--r-- | addons/xbmc.json/addon.xml | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addons/webinterface.default/addon.xml b/addons/webinterface.default/addon.xml index 6528eff334..f9ae573018 100644 --- a/addons/webinterface.default/addon.xml +++ b/addons/webinterface.default/addon.xml @@ -6,6 +6,7 @@ provider-name="Team XBMC"> <requires> <import addon="xbmc.gui" version="3.00"/> + <import addon="xbmc.json" version="2.00"/> </requires> <extension point="xbmc.gui.webinterface"/> diff --git a/addons/xbmc.json/addon.xml b/addons/xbmc.json/addon.xml new file mode 100644 index 0000000000..5632135ae4 --- /dev/null +++ b/addons/xbmc.json/addon.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<addon id="xbmc.json" version="2.0" provider-name="Team XBMC"> + <requires> + <import addon="xbmc.core" version="0.1"/> + </requires> +</addon> |