-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0095a22
commit c0f03ab
Showing
42 changed files
with
10,252 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# script.skinvariables | ||
A helper script for Kodi skinners to construct multiple variables | ||
|
||
## Wiki | ||
[Variable Builder](https://github.com/jurialmunkey/script.skinvariables/wiki/Skin-Variable-Builder) | ||
[Viewtype Builder](https://github.com/jurialmunkey/script.skinvariables/wiki/Skin-Viewtype-Builder) | ||
|
||
## Kodi Versions | ||
|
||
- [Leia](https://github.com/jurialmunkey/script.skinvariables/tree/leia) | ||
- [Matrix](https://github.com/jurialmunkey/script.skinvariables/tree/matrix) | ||
- [Nexus](https://github.com/jurialmunkey/script.skinvariables/tree/nexus) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<addon id="script.skinvariables" | ||
version="2.1.14" | ||
name="Skin Variables" | ||
provider-name="jurialmunkey"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0" /> | ||
<import addon="script.module.jurialmunkey" version="0.1.17" /> | ||
<import addon="script.module.infotagger" version="0.0.5" /> | ||
</requires> | ||
<extension point="xbmc.python.script" library="script.py" /> | ||
<extension point="xbmc.python.pluginsource" library="plugin.py"> | ||
<provides>video</provides> | ||
</extension> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Skin Variables helps skinners to construct variables and expressions for multiple containers and listitems using a template</summary> | ||
<summary lang="fr_FR">Skin Variables aide les skinners à créer des variables et des expressions pour plusieurs conteneurs et listes à l'aide d'un modèle</summary> | ||
<description lang="en_GB">Skin Variables helps skinners to construct variables and expressions for multiple containers and listitems using a template</description> | ||
<description lang="fr_FR">Skin Variables aide les skinners à créer des variables et des expressions pour plusieurs conteneurs et listes à l'aide d'un modèle</description> | ||
<disclaimer lang="en_GB">For skinners</disclaimer> | ||
<disclaimer lang="fr_FR">Pour les skinners</disclaimer> | ||
<license>GPL-3.0-or-later</license> | ||
<assets> | ||
<icon>icon.png</icon> | ||
<fanart>fanart.jpg</fanart> | ||
</assets> | ||
</extension> | ||
</addon> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
# Module: default | ||
# Author: jurialmunkey | ||
# License: GPL v.3 https://www.gnu.org/copyleft/gpl.html | ||
|
||
if __name__ == '__main__': | ||
import sys | ||
from resources.lib.plugin import Plugin | ||
Plugin(int(sys.argv[1]), sys.argv[2][1:]).run() |
Empty file.
Oops, something went wrong.