script.module.kover - Simple proxy for Kodi version unification - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: script.module.kover - Simple proxy for Kodi version unification (/showthread.php?tid=371120) |
script.module.kover - Simple proxy for Kodi version unification - heppen - 2023-01-05 What is it? It's just a simple proxy! Imagine you developing and add-on. Kodi team releasing new version with changes, your add-on may be broke or simple log too much, because many features are deprecated. How to deal with it? Install script.module.kover add an import on top of your module: Code: from kover import autoinstall # noqa: F401 How it's working? It's trying to keep K19 and K20 api available in the same time. So you don't need to worry about making changes to your add-on because API have changed recently. Where to report issue or new addition? The best place for it is Github of course: https://github.com/libka-pl/script.module.kover/issues RE: script.module.kover - Simple proxy for Kodi version unification - xulek - 2023-01-05 WOW. Great script! This is just what I needed! Now the log looks better. |