├── .github ├── build.sh ├── build_readme.py ├── build_repo_addon.py ├── config.json ├── deploy_key.enc └── templates │ ├── icon.png │ ├── repo.addon.xml.tmpl │ └── repo.readme.md.tmpl ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── src ├── README.md └── script.hello.world ├── LICENSE.txt ├── addon.py ├── addon.xml ├── changelog.txt ├── fanart.jpg ├── icon.png ├── readme.txt └── resources ├── screenshot-01.jpg ├── screenshot-02.jpg └── screenshot-03.jpg /.github/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/build.sh -------------------------------------------------------------------------------- /.github/build_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/build_readme.py -------------------------------------------------------------------------------- /.github/build_repo_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/build_repo_addon.py -------------------------------------------------------------------------------- /.github/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/config.json -------------------------------------------------------------------------------- /.github/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/deploy_key.enc -------------------------------------------------------------------------------- /.github/templates/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/templates/icon.png -------------------------------------------------------------------------------- /.github/templates/repo.addon.xml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/templates/repo.addon.xml.tmpl -------------------------------------------------------------------------------- /.github/templates/repo.readme.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.github/templates/repo.readme.md.tmpl -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/README.md -------------------------------------------------------------------------------- /src/script.hello.world/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/LICENSE.txt -------------------------------------------------------------------------------- /src/script.hello.world/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/addon.py -------------------------------------------------------------------------------- /src/script.hello.world/addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/addon.xml -------------------------------------------------------------------------------- /src/script.hello.world/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/changelog.txt -------------------------------------------------------------------------------- /src/script.hello.world/fanart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/fanart.jpg -------------------------------------------------------------------------------- /src/script.hello.world/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/icon.png -------------------------------------------------------------------------------- /src/script.hello.world/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/readme.txt -------------------------------------------------------------------------------- /src/script.hello.world/resources/screenshot-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/resources/screenshot-01.jpg -------------------------------------------------------------------------------- /src/script.hello.world/resources/screenshot-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/resources/screenshot-02.jpg -------------------------------------------------------------------------------- /src/script.hello.world/resources/screenshot-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping/instant-kodi-repo/HEAD/src/script.hello.world/resources/screenshot-03.jpg --------------------------------------------------------------------------------