2015-07-15, 15:54
Is it the progress bar that you like from the aeon mq5 skin? It does show the progress well if that's what you are referring too and would be a nice addition to the posters on widgets.
(2015-07-15, 18:42)komplex Wrote: im85288 sorry to be a pain in the arse lol
So i set the featured steams in the twitch addon as a custom widget path, works fine but the images are in poster size i think
How would i get them to be more square like the images from the music widget
(2015-07-15, 19:30)komplex Wrote: How come your discart looks like discart while mine looks like my lil niece been drawing on it with a marker lol
(2015-07-16, 00:38)im85288 Wrote: @arithine - I included an option to use the episode image for the next up. It's in the extras section
<control type="image">
<centertop>50%</centertop>
<width>70</width>
<height>50</height>
<texture>colored/rating/MPAA_R_Certificate_US.png</texture>
<visible>Container.Content(movies) + !IsEmpty(ListItem.Mpaa) + [SubString(ListItem.mpaa,US:R) | SubString(ListItem.mpaa,USA:R) | SubString(ListItem.mpaa,Rated R)] + Skin.HasSetting(furniture.flags.colour)</visible>
</control>
<control type="image">
<centertop>50%</centertop>
<width>70</width>
<height>50</height>
<texture>colored/rating/MPAA_R_Certificate_US.png</texture>
<visible>Container.Content(movies) + !IsEmpty(ListItem.Mpaa) + [SubString(ListItem.mpaa,US:R) | SubString(ListItem.mpaa,USA:R) | SubString(ListItem.mpaa,Rated R) | SubString(ListItem.mpaa,R)] + !SubString(ListItem.Mpaa,nr) + Skin.HasSetting(furniture.flags.colour)</visible>
</control>
(2015-07-15, 19:04)im85288 Wrote: Version 1.0.74 is on the way to the repo
Some tweaks (again!) here and there such as adding resume percentage to video info screen, showing progress bar in widgets and show flags on the vertical home screen. There's also some behind the scenes changes with the flag logic for USA.
(2015-07-16, 01:52)bsoriano Wrote: Hello Ian,
I figured out what was happening with the skin not working properly under Kodi 16. It seems that any time you select an option from the main menu, the skin would open a window called Custom_RSS, and it just go stuck there. I do not use RSS, so I went ahead and renamed that file (custom_rss.xml), and now the skin works fine
Thank you for your code changes for the USA rating flags issue. Unfortunately for me, it does not solve the problem, since my movies do not have the prefix Rated or USA or US in the MPAA field, they just have the rating itself and nothing else (R, PG, PG-13, G, etc.) Your code, for colored flags, is looking for either Rated R or USA:R, or US:R, but not just R. It does this for both R and G.
I do not know if I explained it correctly. If not, and you would like, I can send you an NFO file for one of my movies so that you can see what I mean.
I would change the code from:
Code:<control type="image">
<centertop>50%</centertop>
<width>70</width>
<height>50</height>
<texture>colored/rating/MPAA_R_Certificate_US.png</texture>
<visible>Container.Content(movies) + !IsEmpty(ListItem.Mpaa) + [SubString(ListItem.mpaa,US:R) | SubString(ListItem.mpaa,USA:R) | SubString(ListItem.mpaa,Rated R)] + Skin.HasSetting(furniture.flags.colour)</visible>
</control>
To:
Code:<control type="image">
<centertop>50%</centertop>
<width>70</width>
<height>50</height>
<texture>colored/rating/MPAA_R_Certificate_US.png</texture>
<visible>Container.Content(movies) + !IsEmpty(ListItem.Mpaa) + [SubString(ListItem.mpaa,US:R) | SubString(ListItem.mpaa,USA:R) | SubString(ListItem.mpaa,Rated R) | SubString(ListItem.mpaa,R)] + !SubString(ListItem.Mpaa,nr) + Skin.HasSetting(furniture.flags.colour)</visible>
</control>
What do you think?
Regards,
Bart