├── .gitignore ├── README.md ├── UIConfig.json ├── config.json ├── i18n ├── strings_en.json ├── strings_nl.json └── strings_pl.json ├── images ├── Thumbs.db ├── kodi_optimalisation.png ├── plugin_enabled.png ├── sound_settings.png └── system_settings.png ├── index.js ├── install.sh ├── kodi_configuration ├── guisettings.xml └── sources.xml ├── package.json ├── policies ├── 10-permissions.rules ├── 50-kodi-actions.pkla └── 99-input.rules ├── templates └── asound.kodi ├── uninstall.sh ├── unit └── kodi.service ├── volumio-kodi-plugin.zip └── volumio_installer.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/README.md -------------------------------------------------------------------------------- /UIConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/UIConfig.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/config.json -------------------------------------------------------------------------------- /i18n/strings_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/i18n/strings_en.json -------------------------------------------------------------------------------- /i18n/strings_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/i18n/strings_nl.json -------------------------------------------------------------------------------- /i18n/strings_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/i18n/strings_pl.json -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/images/Thumbs.db -------------------------------------------------------------------------------- /images/kodi_optimalisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/images/kodi_optimalisation.png -------------------------------------------------------------------------------- /images/plugin_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/images/plugin_enabled.png -------------------------------------------------------------------------------- /images/sound_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/images/sound_settings.png -------------------------------------------------------------------------------- /images/system_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/images/system_settings.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/index.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/install.sh -------------------------------------------------------------------------------- /kodi_configuration/guisettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/kodi_configuration/guisettings.xml -------------------------------------------------------------------------------- /kodi_configuration/sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/kodi_configuration/sources.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/package.json -------------------------------------------------------------------------------- /policies/10-permissions.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/policies/10-permissions.rules -------------------------------------------------------------------------------- /policies/50-kodi-actions.pkla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/policies/50-kodi-actions.pkla -------------------------------------------------------------------------------- /policies/99-input.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/policies/99-input.rules -------------------------------------------------------------------------------- /templates/asound.kodi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/templates/asound.kodi -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/uninstall.sh -------------------------------------------------------------------------------- /unit/kodi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/unit/kodi.service -------------------------------------------------------------------------------- /volumio-kodi-plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/volumio-kodi-plugin.zip -------------------------------------------------------------------------------- /volumio_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saiyato/volumio-kodi-plugin/HEAD/volumio_installer.sh --------------------------------------------------------------------------------