• 1
  • 239
  • 240
  • 241(current)
  • 242
  • 243
  • 447
Titan BINGIE MOD v1 (UPDATED - 07/24/2020)
(2021-06-23, 11:14)redglory Wrote:
(2021-06-23, 11:10)shkop Wrote: hello, why I have nothing in the ALL categories?  Huh

Image

Image

Image
Can you put your debug log (wiki) ?

debug log
Reply
(2021-06-23, 12:03)shkop Wrote:
(2021-06-23, 11:14)redglory Wrote:
(2021-06-23, 11:10)shkop Wrote: hello, why I have nothing in the ALL categories?  Huh

Image

Image

Image
Can you put your debug log (wiki) ?

debug log

Code:
2021-06-23 11:42:25.144 T:7252  WARNING <general>: script.skin.helper.widgets --> Exception details: Type: AttributeError Value: 'Media' object has no attribute 'forgenre' Traceback: Traceback (most recent call last):
File "C:\Users\rital\AppData\Roaming\Kodi\addons\script.skin.helper.widgets\resources\lib\main.py", line 177, in show_widget_listing
  all_items = getattr(media_class, action)()
AttributeError: 'Media' object has no attribute 'forgenre'

The problem points to script.skin.helper.widgets module on the show_widget_listing method.

media_type "Media" doesn't have action "forgenre" implemented. This action is only present on the "movies" and "tvshows" media types.

Either you change your widget to define as movies or tvshows media types or this script must be updated.
Image Image
Reply
(2021-06-23, 12:31)redglory Wrote:
(2021-06-23, 12:03)shkop Wrote:
(2021-06-23, 11:14)redglory Wrote: Can you put your debug log (wiki) ?

debug log

Code:
2021-06-23 11:42:25.144 T:7252  WARNING <general>: script.skin.helper.widgets --> Exception details: Type: AttributeError Value: 'Media' object has no attribute 'forgenre' Traceback: Traceback (most recent call last):
File "C:\Users\rital\AppData\Roaming\Kodi\addons\script.skin.helper.widgets\resources\lib\main.py", line 177, in show_widget_listing
  all_items = getattr(media_class, action)()
AttributeError: 'Media' object has no attribute 'forgenre'

The problem points to script.skin.helper.widgets module on the show_widget_listing method.

media_type "Media" doesn't have action "forgenre" implemented. This action is only present on the "movies" and "tvshows" media types.

Either you change your widget to define as movies or tvshows media types or this script must be updated.
how do i change my widget as movie media type?

this script is already in last version
Reply
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote:
(2020-07-24, 17:08)AchillesPunks Wrote: I will have to look into this. Generally would like to keep everything as light as possible. This is already a heavy skin. I may at sometime make some changes and create a smaller landscape, but no promises.

from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?
I suppose this only applies to Home widgets (where you have movies and tvshows mixed).

You can edit Custom_1117_Categories_Hub.xml and replace mediatype=media to mediatype=movies

Code:
<!-- GENRES -->
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),drama)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=drama&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),crime)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=crime&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),thriller)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=thriller&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),action)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=action&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),comedy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=comedy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),adventure)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=adventure&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),western)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=western&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),horror)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=horror&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),science fiction)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=science fiction&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),family)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=family&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),animation)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=animation&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),mystery)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=mystery&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),romance)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=romance&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),documentary)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=documentary&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),fantasy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=fantasy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>

and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.
Image Image
Reply
(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?
I suppose this only applies to Home widgets (where you have movies and tvshows mixed).

You can edit Custom_1117_Categories_Hub.xml and replace mediatype=media to mediatype=movies

Code:
<!-- GENRES -->
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),drama)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=drama&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),crime)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=crime&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),thriller)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=thriller&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),action)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=action&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),comedy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=comedy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),adventure)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=adventure&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),western)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=western&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),horror)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=horror&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),science fiction)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=science fiction&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),family)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=family&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),animation)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=animation&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),mystery)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=mystery&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),romance)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=romance&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),documentary)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=documentary&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>
<include content="Category_Widget" condition="String.IsEqual(Window(Home).Property(category),fantasy)">
<param name="content" value="plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media&amp;genre=fantasy&amp;limit=100&amp;reload=$INFO[Window(Home).Property(widgetreload)]" />
<param name="sortBy" value="dateadded" />
<param name="sortOrder" value="descending" />
</include>

and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.
Just updated the GitHub with the changes to Custom_1117_Categories_Hub.xml. Not sure what needs to be changed for skin helper... I don't understand Py when I look at it...
Titan Bingie Mod
Reply
(2021-06-23, 16:01)redglory Wrote: [quote="AchillesPunks" pid='2965459' dateline='1595612628']
[quote="3500" pid='2965458' dateline='1595612465']


and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

Why do you suggest I change mediatype=media to mediatype=movies in includesbingie?
Titan Bingie Mod
Reply
(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: from first i tried, from BINGIE OG, this skin heavy is because addons script.skin.helper.service and script.module.cherrypy
but almost that make it heavy is script.skin.helper.service
i must downgrade it the version of those 2 addons to make the skin is light movement for scrolling and changing every menu that i press
did you download the skin from the github yet?


I would recommend for you to try or ask for changes on script.skin.helper.widgets to include forgenre for mediatype=media.

@Angelinas do you think you can look into this for us?
Titan Bingie Mod
Reply
(2021-06-23, 16:26)AchillesPunks Wrote:
(2021-06-23, 16:01)redglory Wrote:
(2020-07-24, 19:43)AchillesPunks Wrote:
(2020-07-24, 19:41)3500 Wrote: and on IncludesBingie.xml
Code:
<value condition="String.Contains(Container.FolderPath, genre) | String.StartsWith(Container.FolderPath, plugin://script.skin.helper.widgets/?action=forgenre&amp;mediatype=media)">$INFO[Window(Home).Property(ListItem.Label)]</value>

Why do you suggest I change mediatype=media to mediatype=movies in includesbingie?

Just because you'll never get any results based on the fact that there is no forgenre method for the media mediatype. that entry will return empty results.
Image Image
Reply
with the latest GitHub update it works, but I still don't have anything in the "critically aclamaid movies" categories; "popular"; "new release";
Reply
(2021-06-23, 16:31)AchillesPunks Wrote: @Angelinas do you think you can look into this for us?
I will try to add forgenre.... for media
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
Apologies if this has been requested and already turned down, but when using a custom home spotlight item, could there be the option to change the sorting on it like how widgets have? ie random?
Reply
(2021-06-23, 16:44)redglory Wrote:
(2021-06-23, 16:26)AchillesPunks Wrote:
(2021-06-23, 16:01)redglory Wrote:

Just because you'll never get any results based on the fact that there is no forgenre method for the media mediatype. that entry will return empty results.
Yes but changing only the Custom_1117_Categories_Hub.xml fixes the genre widget. Similar on home is already working. I'm not sure what that one is doing.
Titan Bingie Mod
Reply
(2021-06-23, 21:41)Angelinas Wrote:
(2021-06-23, 16:31)AchillesPunks Wrote: @Angelinas do you think you can look into this for us?
I will try to add forgenre.... for media
Thanks
Titan Bingie Mod
Reply
(2021-06-23, 21:50)Logs22 Wrote: Apologies if this has been requested and already turned down, but when using a custom home spotlight item, could there be the option to change the sorting on it like how widgets have? ie random?
Not at this time.
Titan Bingie Mod
Reply
(2021-06-21, 18:52)fsurfer Wrote:
(2021-06-21, 17:42)Blackysb Wrote:
(2021-06-21, 14:43)matke Wrote: Wait, are you talking about episodes, seasons or a complete tv show? It only doesn’t work for episodes but in episodes it shows thumb images (landscape) not posters.
https://i.imgur.com/DekphxV.png
https://i.imgur.com/h00KGNS.png

First image, no artwork, second image you can see the season poster. I've checked and all named ok. Images show up in other skins.

This is an area I am having difficulty with
https://forum.kodi.tv/showthread.php?tid...pid3044712
Clearly im not the only one with the issue. Could someone tell me if this is a skin wide issue or a local one?
Reply
  • 1
  • 239
  • 240
  • 241(current)
  • 242
  • 243
  • 447

Logout Mark Read Team Forum Stats Members Help
Titan BINGIE MOD v1 (UPDATED - 07/24/2020)0