├── .github └── workflows │ └── ruff_lint.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE.txt ├── README.md ├── kodi.png ├── plugin.video.embycon ├── addon.xml ├── default.py ├── fanart.jpg ├── icon.png ├── resources │ ├── __init__.py │ ├── language │ │ ├── resource.language.en_gb │ │ │ └── strings.po │ │ ├── resource.language.es_es │ │ │ └── strings.po │ │ └── resource.language.zh_cn │ │ │ └── strings.po │ ├── lib │ │ ├── __init__.py │ │ ├── action_menu.py │ │ ├── bitrate_dialog.py │ │ ├── cache_images.py │ │ ├── chapter_dialog.py │ │ ├── clientinfo.py │ │ ├── context_monitor.py │ │ ├── custom_nodes.py │ │ ├── data_models.py │ │ ├── datamanager.py │ │ ├── dir_functions.py │ │ ├── downloadutils.py │ │ ├── filelock.py │ │ ├── functions.py │ │ ├── image_server.py │ │ ├── item_functions.py │ │ ├── jsonrpc.py │ │ ├── kodi_utils.py │ │ ├── library_change_monitor.py │ │ ├── menu_functions.py │ │ ├── picture_viewer.py │ │ ├── play_utils.py │ │ ├── playnext.py │ │ ├── profile_utils.py │ │ ├── resume_dialog.py │ │ ├── server_detect.py │ │ ├── server_sessions.py │ │ ├── simple_logging.py │ │ ├── skin_cloner.py │ │ ├── skip_intro_dialog.py │ │ ├── tracking.py │ │ ├── translation.py │ │ ├── utils.py │ │ ├── websocket │ │ │ ├── __init__.py │ │ │ ├── _abnf.py │ │ │ ├── _app.py │ │ │ ├── _cookiejar.py │ │ │ ├── _core.py │ │ │ ├── _exceptions.py │ │ │ ├── _handshake.py │ │ │ ├── _http.py │ │ │ ├── _logging.py │ │ │ ├── _socket.py │ │ │ ├── _ssl_compat.py │ │ │ ├── _url.py │ │ │ └── _utils.py │ │ ├── websocket_client.py │ │ └── widgets.py │ ├── settings.xml │ ├── settings_old.xml │ └── skins │ │ ├── default │ │ ├── 720p │ │ │ ├── ActionMenu.xml │ │ │ ├── BitrateDialog.xml │ │ │ ├── ChapterDialog.xml │ │ │ ├── CustomNode.xml │ │ │ ├── PictureViewer.xml │ │ │ ├── PlayNextDialog.xml │ │ │ ├── ProfileDetailsDialog.xml │ │ │ ├── ResumeDialog.xml │ │ │ └── SkipIntroDialog.xml │ │ └── media │ │ │ ├── bg.png │ │ │ └── white.png │ │ └── skin.estuary │ │ ├── 17 │ │ └── xml │ │ │ ├── DialogVideoInfo.xml │ │ │ ├── Home.xml │ │ │ └── Includes_Home.xml │ │ ├── 18 │ │ └── xml │ │ │ ├── DialogSeekBar.xml │ │ │ ├── DialogVideoInfo.xml │ │ │ ├── Home.xml │ │ │ ├── Includes_Home.xml │ │ │ └── VideoOSD.xml │ │ ├── 19 │ │ └── xml │ │ │ ├── DialogSeekBar.xml │ │ │ ├── DialogVideoInfo.xml │ │ │ ├── Home.xml │ │ │ ├── Includes_Home.xml │ │ │ └── VideoOSD.xml │ │ ├── 21 │ │ ├── original │ │ │ ├── DialogSeekBar.xml │ │ │ ├── DialogVideoInfo.xml │ │ │ ├── Home.xml │ │ │ ├── Includes_Home.xml │ │ │ └── VideoOSD.xml │ │ └── xml │ │ │ ├── DialogSeekBar.xml │ │ │ ├── DialogVideoInfo.xml │ │ │ ├── Home.xml │ │ │ ├── Includes_Home.xml │ │ │ └── VideoOSD.xml │ │ └── copy_home.txt └── service.py ├── ruff.toml └── scripts ├── check_strings.ps1 ├── copy_embycon.ps1 └── process_addon.py /.github/workflows/ruff_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/.github/workflows/ruff_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/README.md -------------------------------------------------------------------------------- /kodi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/kodi.png -------------------------------------------------------------------------------- /plugin.video.embycon/addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/addon.xml -------------------------------------------------------------------------------- /plugin.video.embycon/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/default.py -------------------------------------------------------------------------------- /plugin.video.embycon/fanart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/fanart.jpg -------------------------------------------------------------------------------- /plugin.video.embycon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/icon.png -------------------------------------------------------------------------------- /plugin.video.embycon/resources/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /plugin.video.embycon/resources/language/resource.language.en_gb/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/language/resource.language.en_gb/strings.po -------------------------------------------------------------------------------- /plugin.video.embycon/resources/language/resource.language.es_es/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/language/resource.language.es_es/strings.po -------------------------------------------------------------------------------- /plugin.video.embycon/resources/language/resource.language.zh_cn/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/language/resource.language.zh_cn/strings.po -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/action_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/action_menu.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/bitrate_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/bitrate_dialog.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/cache_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/cache_images.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/chapter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/chapter_dialog.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/clientinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/clientinfo.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/context_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/context_monitor.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/custom_nodes.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/data_models.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/datamanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/datamanager.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/dir_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/dir_functions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/downloadutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/downloadutils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/filelock.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/functions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/image_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/image_server.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/item_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/item_functions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/jsonrpc.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/kodi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/kodi_utils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/library_change_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/library_change_monitor.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/menu_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/menu_functions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/picture_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/picture_viewer.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/play_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/play_utils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/playnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/playnext.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/profile_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/profile_utils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/resume_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/resume_dialog.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/server_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/server_detect.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/server_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/server_sessions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/simple_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/simple_logging.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/skin_cloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/skin_cloner.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/skip_intro_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/skip_intro_dialog.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/tracking.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/translation.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/utils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/__init__.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_abnf.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_app.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_cookiejar.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_core.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_exceptions.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_handshake.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_http.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_logging.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_socket.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_ssl_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_ssl_compat.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_url.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket/_utils.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/websocket_client.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/lib/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/lib/widgets.py -------------------------------------------------------------------------------- /plugin.video.embycon/resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/settings.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/settings_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/settings_old.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/ActionMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/ActionMenu.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/BitrateDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/BitrateDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/ChapterDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/ChapterDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/CustomNode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/CustomNode.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/PictureViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/PictureViewer.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/PlayNextDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/PlayNextDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/ProfileDetailsDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/ProfileDetailsDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/ResumeDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/ResumeDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/720p/SkipIntroDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/720p/SkipIntroDialog.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/media/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/media/bg.png -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/default/media/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/default/media/white.png -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/17/xml/DialogVideoInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/17/xml/DialogVideoInfo.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/17/xml/Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/17/xml/Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/17/xml/Includes_Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/17/xml/Includes_Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/18/xml/DialogSeekBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/18/xml/DialogSeekBar.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/18/xml/DialogVideoInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/18/xml/DialogVideoInfo.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/18/xml/Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/18/xml/Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/18/xml/Includes_Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/18/xml/Includes_Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/18/xml/VideoOSD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/18/xml/VideoOSD.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/19/xml/DialogSeekBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/19/xml/DialogSeekBar.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/19/xml/DialogVideoInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/19/xml/DialogVideoInfo.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/19/xml/Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/19/xml/Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/19/xml/Includes_Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/19/xml/Includes_Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/19/xml/VideoOSD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/19/xml/VideoOSD.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/original/DialogSeekBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/original/DialogSeekBar.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/original/DialogVideoInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/original/DialogVideoInfo.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/original/Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/original/Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/original/Includes_Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/original/Includes_Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/original/VideoOSD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/original/VideoOSD.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/xml/DialogSeekBar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/xml/DialogSeekBar.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/xml/DialogVideoInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/xml/DialogVideoInfo.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/xml/Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/xml/Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/xml/Includes_Home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/xml/Includes_Home.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/21/xml/VideoOSD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/21/xml/VideoOSD.xml -------------------------------------------------------------------------------- /plugin.video.embycon/resources/skins/skin.estuary/copy_home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/resources/skins/skin.estuary/copy_home.txt -------------------------------------------------------------------------------- /plugin.video.embycon/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/plugin.video.embycon/service.py -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/ruff.toml -------------------------------------------------------------------------------- /scripts/check_strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/scripts/check_strings.ps1 -------------------------------------------------------------------------------- /scripts/copy_embycon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/scripts/copy_embycon.ps1 -------------------------------------------------------------------------------- /scripts/process_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/plugin.video.embycon/HEAD/scripts/process_addon.py --------------------------------------------------------------------------------