Kodi Community Forum

Full Version: script.module.kover - Simple proxy for Kodi version unification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
and you are ready to go. No more spam in log file, no more broken add-on, it's just simple Smile

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
WOW. Great script! This is just what I needed! Now the log looks better.