2023-01-05, 16:22
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:
and you are ready to go. No more spam in log file, no more broken add-on, it's just simple
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
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