Help -- need service.skin.widgets owner
#1
I'm still using service.skin.widgets.  Maybe this has been deprecated by the other skin helpers?  At any rate I fixed it up to be Python2/3 compatible but can't find any repo upstream from  repo-scripts to submit a PR against.  The listed owner is Martijn and the linked source is Kodi-addons which has only an outdated version (0.0.27 -- current is 0.0.33).

scott s.
.
maintainer of skin  Aeon MQ5 mods for post-Gotham Kodi releases:
Matrix see: Aeon MQ5 Mod Matrix release thread
Nexus see: Aeon MQ5 Mod Nexus release thread
Aeon MQ 5 skin and addon repo 11.1.0
Reply
#2
There is none as far as I know. The master on the Kodi-addons repo is 0.0.30. I assume the recent version never was pushed to it or the branch got deleted by mistake (who knows).

I would submit it to this one and ping @ronie . He was the last one who commited something.
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#3
(2020-01-03, 21:57)scott967 Wrote: Maybe this has been deprecated by the other skin helpers? 

It's been depreciated by lists that take dynamic content. Running a service that populates a window properties per widget item to use as static items in a list is a really excessive approach for something that can be easily achieved by sticking a library path in a dynamic content tag.

For instance:

Random Movies:
Code:
<content target="videos" sortby="random" limit="10">videodb://movies/titles/</content>

Recently Added Movies:
Code:
<content target="videos" limit="10">videodb://recentlyaddedmovies/</content>

In-Progress (aka Recommended) Movies:
Code:
<content target="videos" limit="10" sortby="lastplayed" sortorder="descending">videodb://movies/titles/?xsp=%7b%22rules%22%3a%7b%22and%22%3a%5b%7b%22field%22%3a%22inprogress%22%2c%22operator%22%3a%22true%22%2c%22value%22%3a%5b%5d%7d%5d%7d%2c%22type%22%3a%22movies%22%7d</content>
Arctic Fuse - Alpha now available. Support me on Ko-fi.
Reply

Logout Mark Read Team Forum Stats Members Help
Help -- need service.skin.widgets owner0