(2016-04-17, 01:59)Moukrea Wrote: This is something I've been dreaming about! For now on, I have it enabled on my build with Titan skin... I love the fact I can rate my movies but... The only way to see this rating is to show video informations.
I wish it was possible to see both ratings (IMDB/TMDB + Local User Rating) while browsing movies! Maybe on top of that overide the "watched" label on posters with the rating...
Appologies for the minor thread hijack...presenting that info on the browsing screen would probably be a skin-specific setting, I accomplished it by modifying the existing XML file for the browse method I use for the Transparency! skin. For example: view-slide.xml for the "slide" browsing method. (Not sure how Titan names its XML files for movie browsing; sorry)
ALWAYS backup your xml file before editing it!
If the browse method already shows the IMDB rating on the quick info screen, then the text should say something like:
$INFO[ListItem.Rating]
...just add the following text immediately prior to where that text lives.
$INFO[ListItem.UserRating] /
...note: there is a space before and after the /
Save the xml file, Restart KODI and you should have something that looks like this:
Rating: 9 / 7.7
...where 9 is User Rating and 7.7 is the IMDB rating.
You could also change ListItem.Rating to say ListItem.RatingAndVotes if you want the IMDB rating AND #of votes to show like this:
Good luck,
-Wapitikev