├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── addon.py ├── addon.xml ├── changelog.txt ├── lib ├── __init__.py ├── lutris.py ├── router.py ├── storageserverdummy.py └── util.py ├── requirements.txt └── resources ├── fanart.jpg ├── icon.png ├── language └── resource.language.en_gb │ └── strings.po ├── screenshot.jpg └── settings.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/README.md -------------------------------------------------------------------------------- /addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/addon.py -------------------------------------------------------------------------------- /addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/addon.xml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/changelog.txt -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/lutris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/lib/lutris.py -------------------------------------------------------------------------------- /lib/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/lib/router.py -------------------------------------------------------------------------------- /lib/storageserverdummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/lib/storageserverdummy.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/lib/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Kodistubs==18.0.0 2 | -------------------------------------------------------------------------------- /resources/fanart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/resources/fanart.jpg -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/language/resource.language.en_gb/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/resources/language/resource.language.en_gb/strings.po -------------------------------------------------------------------------------- /resources/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/resources/screenshot.jpg -------------------------------------------------------------------------------- /resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobLoach/lutris-kodi-addon/HEAD/resources/settings.xml --------------------------------------------------------------------------------