Kodi Community Forum
[RELEASE] RecentlyAdded Script (RecentlyAdded.py) Recently Added for Skins / Skinners - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300)
+---- Thread: [RELEASE] RecentlyAdded Script (RecentlyAdded.py) Recently Added for Skins / Skinners (/showthread.php?tid=55907)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14


- ronie - 2011-04-27

Tiny Clanger Wrote:This link is now dead. Does anybody have a mirror of this script, please?

Thanks

http://transparency-xbmc.googlecode.com/files/script.recentlyadded-2.1.7.zip


- Tiny Clanger - 2011-04-27

Wow, that was fast — thanks! Big Grin


- amet - 2011-04-27

I thought that the whole point of adding it into a core is that the script is not needed anymore Smile


- mortstar - 2011-04-27

I've come across a slight bug in the returned episode thumb. I've tested on a stable 10.1 with latest RecentlyAdded script and also on a nightly build 20110426-B39EFDF with functionality added to the core and both display the same problem.

Most of the episode images uploaded to TheTVDB I find completely generic and in no way provoke even the slightest memory as to what the episode was about. Because of this I sometimes change the episode thumb for a locally created version which is a little more helpful.

In Library views these images change fine, however the RecentlyAdded script always returns the first image linked to the episode (usually the TheTVDB remote image, but if this was not available then the auto-created thumb). This is still the case after Textures.db is deleted to try and make sure it is not a caching issue.


- amet - 2011-04-27

mortstar Wrote:I've come across a slight bug in the returned episode thumb. I've tested on a stable 10.1 with latest RecentlyAdded script and also on a nightly build 20110426-B39EFDF with functionality added to the core and both display the same problem.

Most of the episode images uploaded to TheTVDB I find completely generic and in no way provoke even the slightest memory as to what the episode was about. Because of this I sometimes change the episode thumb for a locally created version which is a little more helpful.

In Library views these images change fine, however the RecentlyAdded script always returns the first image linked to the episode (usually the TheTVDB remote image, but if this was not available then the auto-created thumb). This is still the case after Textures.db is deleted to try and make sure it is not a caching issue.


k, thx for the report... will check it out


- toX_ - 2011-05-11

ronie Wrote:http://transparency-xbmc.googlecode.com/files/script.recentlyadded-2.1.7.zip

ty - script works with latest unstable build


- amet - 2011-05-11

toX_ Wrote:ty - script works with latest unstable build

good, since its not needed any more Laugh


[REQUEST] RecentlyAdded movies from ice library - michaeldecharon - 2011-10-08

Since i'm using ice library i wanted to split my movies on my harddisk and the movies from icefilms.

I've both on my menu:
  • Movies (the movies on my harddisk)
  • Movies online (the movies from icefilms)

For Movies (the movies on my harddisk) i've the recentlyadded and i would also like a recentlyadded for the Movies online (the movies from icefilms).

I use a playlist for Movies (the movies on my harddisk) to show only the movies on my harddisk and another playlist to show only the Movies online (the movies from icefilms).

How can i make the recentlyadded to work seperate from Movies and therefor also only for Movies online (the movies from icefilms)?


- butchabay - 2011-10-08

@michaeldecharon
Not possible as i know. You'll always see recently added movies in your library and not specific for playlists, as they are integrated the same library.
I had a request time ago, so i've tried different workarounds without success.


- rasmuskarlsen - 2011-10-08

What excactly can this script do?


- michaeldecharon - 2011-10-09

butchabay Wrote:@michaeldecharon
Not possible as i know. You'll always see recently added movies in your library and not specific for playlists, as they are integrated the same library.
I had a request time ago, so i've tried different workarounds without success.

Can't we use a simple filter in the script?

*.strm


- rasmuskarlsen - 2011-10-11

rasmuskarlsen Wrote:What excactly can this script do?

No one?


- vikjon0 - 2011-12-16

Should I take it this will not be used in Eden?

I wanted to submit the following change
Code:
# sql_episodes = "select * from episodeview %sorder by idepisode desc limit %d" % ( unplayed, self.LIMIT, )  #VIKJON0 20111216
              sql_episodes = "select * from episodeview %sgroup by idShow order by idepisode desc limit %d" % ( unplayed, self.LIMIT, )  #VIKJON0 20111216

Only tested on sqlite not sure what the policy on SQL is and do not know MYSQL (would not work on MSSQL nor DB2)


- ronie - 2011-12-16

vikjon0 Wrote:Should I take it this will not be used in Eden?

true, eden builds don't use this script anymore.
all functionality has been incorporated in xbmc itself.


- vikjon0 - 2011-12-17

Quote:all functionality has been incorporated in xbmc itself.
Thanks, as I suppose you can see this change will keep only the episode with the highest rowid (newest row hopefully) for each show. Fixing the issue what a drowned added list when a whole season is added.

Should I bother to log a trac?