Unwatched episodes in panel view
#1
I really like the Aeon MQ5 skin, the only thing that i am missing is an option to see the unwachted episodes at a series.

I have seen this question around the MQ5 forum, but no answers yet. The way Aeon Nox handles unwatched episodes would be perfect. However i think it could be done more easily if only i was a better coder….Confused

Currently the panel view with Tvshows under the fan art has : number of seasons, total episodes and series status. In really would like to see seasons, episodes and episodes unwatched.

Now i did some tinkering withe the views panel.xml and i managed to get episodes and unwachted by editing line 405 and adding value_ground14_label] [COLOR=FFFFFAF0]$VAR[value_ground14_value][/COLOR]</label>, however this screws up the display of running time in Movies….so no fix

….can anyone help me out with this ? I send a PM to ShadowTek since he seems to mod quite a lot, but i think more people would like this modification.
How to post a debug log ; MacOS acces the hidden userdata folder ; How to post a question ; How to fix gatekeeper issues
Reply
#2
Hi, I'm not sure what the code is you added as it doesn't look like it showed correctly, but you need to define where its visible,

for example use
Code:
<visible> add container you want it to show on </visible>

and use:

Code:
<visible>! add a explanation mark to HIDE this from these container views</visible>

so to hide it from movies:
Code:
<visible>!Container.Content(movies)</visible>
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#3
its a bit rough yet, but its working.

</control>
<control type="label">
<posx>10</posx>
<posy>262</posy>
<width>387</width>
<height>15</height>
<textcolor>FFFFFAF0</textcolor>
<label>$VAR[value_glasslistinfofocus]</label>
<visible>!Container.Content(tvshows)</visible>
<font>Font_18A</font>
<scroll>true</scroll>
<visible>!StringCompare(ListItem.Label,..)</visible>

</control>
<control type="label">
<posx>10</posx>
<posy>262</posy>
<width>387</width>
<height>15</height>
<textcolor>FFFF0000</textcolor>
<visible>Container.Content(tvshows)</visible>
<visible>!Container.Content(movies)</visible>
<visible>!Container.content(music)</visible>
<label>$VAR[value_ground14_label]: [COLOR=FFFFFAF0]$VAR[value_ground14_value][/COLOR]</label>
<font>Font_18A</font>
<scroll>true</scroll>
<visible>!StringCompare(ListItem.Label,..)</visible>

now i need a way to let the seasons also show up, ideas about that ?
How to post a debug log ; MacOS acces the hidden userdata folder ; How to post a question ; How to fix gatekeeper issues
Reply
#4
In which view? They already show in panel view, wasn't that the view you were working on?

EDIT:
Also you can combine those containers like this:
Code:
<visible>![Container.Content(movies) | Container.content(music)]</visible>
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Reply
#5
Yeah the season shows up in the default tv-show view.

But since i modified that, i now i see Total episodes and unwatched, that is almost what i wanted.
Probably the "value_ground14" argument that i am using is not quite correct.

Any tips on how to improve ? (Thanks for this far)
How to post a debug log ; MacOS acces the hidden userdata folder ; How to post a question ; How to fix gatekeeper issues
Reply

Logout Mark Read Team Forum Stats Members Help
Unwatched episodes in panel view0