(2024-05-24, 21:24)kurai Wrote: Hi @mikeSILVIO
Found an issue with part of Github commit: f56dbd1 , added back on 1st May.
Specifically Includes.xml : Line 783 (I think)
Now (Container.TotalTime) doesn't display for containers of things not scanned into database (e.g. listings of all my raw DVR recording files, or dump folders of new video that hasn't been sorted to scrapeable directories yet)
Enabling/disabling the new "Disable date & time in topbar" option in Skin Settings didn't seem to affect it.
My brain melts when I try and trace my way through the skinning engine's expression parsing and conditionals, so I only *presume* that's where the issue is - images attached for clarification in case I've gotten lost somewhere.
Please help!
Old count/time for unscanned items:-
New count only behaviour for unscanned items:-
Count/time behaviour for scanned items in old + new versions :-
I changed this because in my very large library, the container time for the main movie section was so long it was overlapping other info.
I can try using the total page count instead. For example, limit to all sections with 50 or fewer pages instead of the areas I think are best or you could send me the window names/content types for those screenshots and I can add them.
There are a few ways to do this.
For the window name you can edit the skins addon.xml file and change debugging to true:
xml:
<extension point="xbmc.gui.skin" debugging="false">
<res width="1920" height="1080" aspect="16:9" default="true" folder="1080i" />
</extension>
xml:
<extension point="xbmc.gui.skin" debugging="true">
<res width="1920" height="1080" aspect="16:9" default="true" folder="1080i" />
</extension>
Since you have to revert that when you want it to go away, adding a
keymap (wiki) to toggle this on/off seems the better option. I use F9 but you can use anything you want.
xml:
<keymap>
<global>
<keyboard>
<F7>Skin.ToggleSetting(DebugInfo)</F7>
<F9>Skin.ToggleDebug</F9>
</keyboard>
</global>
</keymap>
For the content type, you can move the Custom_Debug_Overlay.xml from the skins extras folder to the 1080p folder and enable with F7 from the keymap above.
Enabling both should get you something like this:
Alternatively, the skin does have a show debug option but I find it a tad difficult to see. If you can see it then you can enable that under Skin settings > General and it's the bottom setting.
I believe content type is the last one in the skins built-in version.