Posts: 1,936
Joined: Oct 2015
Reputation:
215
2020-11-12, 11:57
(This post was last modified: 2020-11-12, 12:21 by jbinkley60.)
I am not sure if this is a bug or by design in the Estuary skin. In the DialogVideoInfo.XML screen button 13 is labeled Same Director but the SQL query is returning both actor and director roles for the query, which is the same result as clicking on the actor. Both issue the same identical SQL query.
Here's an example SQL query Kodi is issuing when clicking on the Same Director button:
2020-11-12 04:28:37.731 T:10548 DEBUG: CVideoDatabase::RunQuery took 75 ms for 37 items query: select * from movie_view LEFT JOIN actor_link ON actor_link.media_id=movie_view.idMovie AND actor_link.media_type='movie' LEFT JOIN actor a ON a.actor_id=actor_link.actor_id LEFT JOIN director_link ON director_link.media_id=movie_view.idMovie AND director_link.media_type='movie' LEFT JOIN actor d ON d.actor_id=director_link.actor_id WHERE a.name='Clint Eastwood' OR d.name='Clint Eastwood' GROUP BY movie_view.idMovie
Here's the same results with clicking on the actor:
2020-11-12 04:22:20.570 T:10548 DEBUG: CVideoDatabase::RunQuery took 78 ms for 37 items query: select * from movie_view LEFT JOIN actor_link ON actor_link.media_id=movie_view.idMovie AND actor_link.media_type='movie' LEFT JOIN actor a ON a.actor_id=actor_link.actor_id LEFT JOIN director_link ON director_link.media_id=movie_view.idMovie AND director_link.media_type='movie' LEFT JOIN actor d ON d.actor_id=director_link.actor_id WHERE a.name='Clint Eastwood' OR d.name='Clint Eastwood' GROUP BY movie_view.idMovie
I left off TV shows and episodes since they are the same. I would have thought Same Director would just be movies with the same director.
Jeff
Posts: 5,477
Joined: Jul 2012
Reputation:
384
Kodi 19 Beta 2:
Window: visualization
File: MusicVisualization.xml
Problem: When skin font is set to Arial Based, the MusicPlayer.Year label is truncated (20...).
Suggested fix: The current label width is 90. Using 100 fixes it. It could be made arial-specific if the current width is desired for the default font.
I have tested fix and could PR if desired.
scott s.
.
Posts: 584
Joined: Jan 2021
Reputation:
9
Don’t know whether this glitch is already known: In Kodi 19 RC, the music visualization screen contains information about the next track. But it shows this under some circumstances even when there is already the last track in the playlist running. Example: Just play any random album with more than one track (since everything works for single tracks). If the playback reaches the last track, there is still a next track displayed (the data shown is in fact the same track as the track already playing).
Would be great if this could be fixed before the final release of Kodi Matrix.
And one personal opinion: please consider removal of the track number in this display, showing it doesn’t make any sense in the age of individual playlists...
Posts: 18,204
Joined: Aug 2007
Reputation:
715
Hitcher
Team-Kodi Member
Posts: 18,204
You shouldn't have got the OSD controls just from pressing Pause in v18.