summaryrefslogtreecommitdiffstats
path: root/addons/xbmc.gui
diff options
context:
space:
mode:
Diffstat (limited to 'addons/xbmc.gui')
-rw-r--r--addons/xbmc.gui/addon.xml8
-rw-r--r--addons/xbmc.gui/skin.xsd32
2 files changed, 40 insertions, 0 deletions
diff --git a/addons/xbmc.gui/addon.xml b/addons/xbmc.gui/addon.xml
new file mode 100644
index 0000000..91a9340
--- /dev/null
+++ b/addons/xbmc.gui/addon.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<addon id="xbmc.gui" version="5.16.0" provider-name="Team Kodi">
+ <backwards-compatibility abi="5.15.0"/>
+ <requires>
+ <import addon="xbmc.core" version="0.1.0"/>
+ </requires>
+ <extension-point id="skin" schema="skin.xsd"/>
+</addon>
diff --git a/addons/xbmc.gui/skin.xsd b/addons/xbmc.gui/skin.xsd
new file mode 100644
index 0000000..21afb0c
--- /dev/null
+++ b/addons/xbmc.gui/skin.xsd
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd">
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:element name="extension">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="res" minOccurs="0" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:attribute name="width" type="xs:unsignedInt" use="required"/>
+ <xs:attribute name="height" type="xs:unsignedInt" use="required"/>
+ <xs:attribute name="default" type="xs:boolean"/>
+ <xs:attribute name="folder" type="xs:string"/>
+ <xs:attribute name="aspect" type="xs:string"/>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ <xs:attribute name="point" type="xs:string" use="required"/>
+ <xs:attribute name="id" type="simpleIdentifier"/>
+ <xs:attribute name="name" type="xs:string"/>
+ <xs:attribute name="defaultresolution" type="xs:string"/>
+ <xs:attribute name="defaultwideresolution" type="xs:string"/>
+ <xs:attribute name="effectslowdown" type="xs:float"/>
+ <xs:attribute name="debugging" type="xs:boolean"/>
+ <xs:attribute name="defaultthemename" type="xs:string"/>
+ </xs:complexType>
+ </xs:element>
+ <xs:simpleType name="simpleIdentifier">
+ <xs:restriction base="xs:string">
+ <xs:pattern value="xbmc\.gui\.skin"/>
+ </xs:restriction>
+ </xs:simpleType>
+</xs:schema>