Release Artist Slideshow addon (with skin and addon integration)
(2023-05-20, 00:34)Longtime Collector Wrote: does Artistslideshow NOT recognize caps in extensions?
Please don't post log snippets in forum posts.  In the future post a link to the full log as per forum rules.

That said, it appears AS does not support uppercase extensions.  It's been this way for like three and a half years, and you're the first one to notice.  Or at least notice and say anything about it.  AS gets the list of image extensions from Kodi, and they are all in lowercase.  It looks like an easy fix to support uppercase extensions, but it'll be a few days for me to get the fix in and approved.  In the meantime, if you are up for modifying one line of code, you can edit the following file:

addons/script.artistslideshow/resources/lib/artistslideshow.py

On line 119 replace the line that says:
python:
if path.endswith(self.VALIDIMAGETYPES):

with:
python:
if path.lower().endswith(self.VALIDIMAGETYPES):
Reply


Messages In This Thread
New Test Version Available - by pkscout - 2012-03-08, 16:26
[No subject] - by mardup - 2012-03-10, 12:26
[No subject] - by pkscout - 2012-03-11, 01:35
RE: - by mardup - 2012-03-12, 17:50
RE: - by pkscout - 2012-03-13, 03:22
New Beta Version for Testing - by pkscout - 2012-07-13, 17:54
New Beta Version for Testing - by pkscout - 2012-07-14, 22:50
Pull Request for v1.4 Submitted - by pkscout - 2012-07-20, 23:01
New Beta Version for Testing - by pkscout - 2012-08-10, 03:18
New Frodo BETA Support Files - by pkscout - 2012-11-21, 06:20
New 2.0.0 Beta Coming Soon - by pkscout - 2016-05-12, 02:54
Writing tips - by Parkerbup - 2017-02-03, 14:56
RE: Artist Slideshow addon (with skin and addon integration) - by pkscout - 2023-05-20, 02:43
Add-on Artist Slideshow - by jo26 - 2014-08-08, 22:58
Logout Mark Read Team Forum Stats Members Help
Artist Slideshow addon (with skin and addon integration)5