diff --git a/script.copacetic.helper/README.md b/script.copacetic.helper/README.md index 93afb3754..07eb1fe08 100644 --- a/script.copacetic.helper/README.md +++ b/script.copacetic.helper/README.md @@ -13,6 +13,9 @@ All code contained in this project is licensed under GPL 3.0. * __jurialmunkey__ for all the best-practice code examples from [plugin.video.themoviedb.helper](https://github.com/jurialmunkey/plugin.video.themoviedb.helper) and forum support. ### Changelog +**.1.1.1** +- Fixed bug in previous version causing dark cropped clearlogos to always be served in certain scenarios + **.1.1.0** - Cropper automatically disabled if animation transitions are disabled in Copacetic skin. - Clearlogo cropper will resize larger crops to 1600x620 max, this is 2x the Kodi standard clearlogo requirement https://kodi.wiki/view/Artwork_types#clearlogo diff --git a/script.copacetic.helper/addon.xml b/script.copacetic.helper/addon.xml index 5eb2a65ec..67dd42575 100644 --- a/script.copacetic.helper/addon.xml +++ b/script.copacetic.helper/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/script.copacetic.helper/resources/lib/service/art.py b/script.copacetic.helper/resources/lib/service/art.py index 7e6e3506f..6050c2add 100644 --- a/script.copacetic.helper/resources/lib/service/art.py +++ b/script.copacetic.helper/resources/lib/service/art.py @@ -45,6 +45,7 @@ def clearlogo_cropper(self, url=False, type='clearlogo', source='ListItem', retu root = lookup_tree.getroot() for key, value in list(clearlogos.items()): self.id = infolabel(f'{path}.dbid') + self.destination, self.height, self.color, self.luminosity = False, False, False, False name = reporting_key or key if value: for node in root.find('clearlogos'):