├── LICENSE ├── README.md ├── dreamos-plugin-systemplugins-hrtunerproxy.bb ├── enigma2-plugin-systemplugins-hrtunerproxy.bb ├── plugin ├── __init__.py ├── about.py ├── getDeviceInfo.py ├── getLineup.py ├── getLineupStatus.py ├── locale │ ├── HRTunerProxy.pot │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── da │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── et │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── fy │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── is │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── no │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── HRTunerProxy.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── th │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── PlexDVRAPI.po │ └── uk │ │ └── LC_MESSAGES │ │ └── PlexDVRAPI.po ├── plugin-hd.png ├── plugin.png ├── plugin.py ├── server.py ├── skins │ ├── about.xml │ ├── dreamos_about.xml │ ├── dreamos_main.xml │ └── main.xml └── ssdp.py ├── pygettext.py ├── setup.py └── setup_translate.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/README.md -------------------------------------------------------------------------------- /dreamos-plugin-systemplugins-hrtunerproxy.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/dreamos-plugin-systemplugins-hrtunerproxy.bb -------------------------------------------------------------------------------- /enigma2-plugin-systemplugins-hrtunerproxy.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/enigma2-plugin-systemplugins-hrtunerproxy.bb -------------------------------------------------------------------------------- /plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/__init__.py -------------------------------------------------------------------------------- /plugin/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/about.py -------------------------------------------------------------------------------- /plugin/getDeviceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/getDeviceInfo.py -------------------------------------------------------------------------------- /plugin/getLineup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/getLineup.py -------------------------------------------------------------------------------- /plugin/getLineupStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/getLineupStatus.py -------------------------------------------------------------------------------- /plugin/locale/HRTunerProxy.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/HRTunerProxy.pot -------------------------------------------------------------------------------- /plugin/locale/ar/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/ar/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/bg/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/bg/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/ca/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/ca/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/cs/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/cs/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/da/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/da/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/de/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/de/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/el/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/el/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/en/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/en/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/en_GB/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/en_GB/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/es/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/es/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/et/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/et/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/fa/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/fa/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/fi/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/fi/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/fr/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/fr/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/fy/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/fy/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/he/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/he/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/hr/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/hr/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/hu/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/hu/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/is/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/is/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/it/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/it/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/lt/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/lt/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/lv/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/lv/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/nb/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/nb/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/nl/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/nl/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/no/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/no/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/pl/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/pl/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/pt/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/pt/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/pt_BR/LC_MESSAGES/HRTunerProxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/pt_BR/LC_MESSAGES/HRTunerProxy.po -------------------------------------------------------------------------------- /plugin/locale/ro/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/ro/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/ru/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/ru/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/sk/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/sk/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/sl/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/sl/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/sr/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/sr/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/sv/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/sv/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/th/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/th/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/tr/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/tr/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/locale/uk/LC_MESSAGES/PlexDVRAPI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/locale/uk/LC_MESSAGES/PlexDVRAPI.po -------------------------------------------------------------------------------- /plugin/plugin-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/plugin-hd.png -------------------------------------------------------------------------------- /plugin/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/plugin.png -------------------------------------------------------------------------------- /plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/plugin.py -------------------------------------------------------------------------------- /plugin/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/server.py -------------------------------------------------------------------------------- /plugin/skins/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/skins/about.xml -------------------------------------------------------------------------------- /plugin/skins/dreamos_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/skins/dreamos_about.xml -------------------------------------------------------------------------------- /plugin/skins/dreamos_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/skins/dreamos_main.xml -------------------------------------------------------------------------------- /plugin/skins/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/skins/main.xml -------------------------------------------------------------------------------- /plugin/ssdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/plugin/ssdp.py -------------------------------------------------------------------------------- /pygettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/pygettext.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/setup.py -------------------------------------------------------------------------------- /setup_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenViX/HRTunerProxy/HEAD/setup_translate.py --------------------------------------------------------------------------------