Jump to content

Recommended Posts

Posted

@@chessdragon136 - Home View 1 is Resume All Items and Home View 2 is TV Next Up.

 

No resumes currently, so basically just Next Up.

  • Like 1
Posted

@@chessdragon136 - No my changes were only with the images section and I made sure not to enable it globally. I did try ITV once but had no success.

chessdragon136
Posted

@@CBers - Thank you - I haven't tried on a real TV but I'm certain this is the issue - the emulator seems to be fast enough that no matter what i do i cannot replicate. Nice one!

 

@@im85288 - Thanks, I'll check it out later. 

 

BTW my random backdrop on home page code - Do you know of an API call that will just grab a random image from your collection? ATM I'm doing this and its horrid!

var randomImageURL = Server.getItemTypeURL("&SortBy=Random&IncludeItemTypes=Series,Movie&Recursive=true&CollapseBoxSetItems=false&Limit=10");
var randomImageData = Server.getContent(randomImageURL);
			
for (var index = 0; index < randomImageData.Items.length; index++) {
 if (randomImageData.Items[index ].BackdropImageTags.length > 0) {
  var imgsrc = Server.getBackgroundImageURL(randomImageData.Items[index ].Id,"Backdrop",960,540,0,false,0,randomImageData.Items[index ].BackdropImageTags.length);
  document.getElementById("pageBackground").style.backgroundImage="url(" + imgsrc + ")";
  break;
 }
}
Posted

Unfortunately not, we do it differently with the Kodi addon but there we cache all music/movies/shows and then select random from that. I think the way you have it is the best way with the API we have to work with.

  • Like 1
chessdragon136
Posted

Ok just pushed v0.523 to server hope that fixes you're issue @@CBers - don't have capacity to test atm due to not being near an actual tv

  • Like 2
Posted

OK, thanks Chess.

 

Will install and report back, within the hour.

Posted

Updated app and I can't break it :)

 

Great work.

 

Thanks.

  • Like 3

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...