Kodi Community Forum
CCM - Confluence Customizable Mod - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: CCM - Confluence Customizable Mod (/showthread.php?tid=160184)



RE: CCM - Confluence Customizable Mod - bigbully - 2014-06-08

(2014-06-07, 16:21)Mudislander Wrote: Cool, send through a PR to GitHub, or a link to the code.

My one issue with the view is the studio label on the floor as it will interfere with other stuff already there as in below screenie, also think the view is more suited to Hybrid with the TagLine on the top of the screen. I like the views to have a theme running through them eg TagLine and Logo in one, then should be in all.

But if you guys want it - go for it. CCM is open for anyone to add code.

Image

I fixed studio logo visibility to show only when there's no movie currently played.

I'm modding on a temp library while I'm away from home and I'd like to do some further testing on my full library before I post code links. Maybe late next week.


RE: CCM - Confluence Customizable Mod - bigbully - 2014-06-09

There seems to be a widget display issue with the latest revision. As far as I can tell, the problem only occurs when a home menu widget is set to playlist. The issue is that the widget will no longer display after navigating away to another menu either left or right. The widget only reappears if the menu button is selected and then returning to the menu.

For example, on the right of the "movies" menu I have a menu that filters to "family" genre movies. Movies widget shows recently added movies without issue. If I move to the right, the Family menu widget shows fine the first time, but if I move away left or right and come back the widget no longer displays. The only way to bring it back is to select the Family menu to reveal the family movies and the to go back to the menu. There it will show up again, but only till you navigate away and come back again.

Anyway, the issue seems to be with the IncludesHomeWidget.xml. I am not sure why exactly, but the fix seems to be:

Line 4123:
Code:
<visible>!Skin.HasSetting(EnableLargeWidget) + IntegerGreaterThan(Container(8012).NumItems,0)</visible>

changed to:

Code:
<visible>!Skin.HasSetting(EnableLargeWidget)</visible>

It looks like the problem may have occurred with large widget turned on as well, cause the code has already been omitted at lines 4415-4416:

Code:
<visible>Skin.HasSetting(EnableLargeWidget)</visible>
<!--  + IntegerGreaterThan(Container(8029).NumItems,0) -->

I suspect someone was tracking the same issue there.

I don't have other media types to test right now, but I suspect that the additional "Playlist" sections need to be modified as well to the following:

Line 4727:
Code:
<visible>!Skin.HasSetting(EnableLargeWidget)</visible>

Line 5029:
Code:
<visible>!Skin.HasSetting(EnableLargeWidget)</visible>



RE: CCM - Confluence Customizable Mod - Mudislander - 2014-06-09

I've just checked and can confirm the bug with playlist widgets only showing after having gone into the menu item. Will go through the file tonight and find the problem, although you're probably right it'll be the item counter running on a slow script.


RE: CCM - Confluence Customizable Mod - bigbully - 2014-06-09

(2014-06-09, 07:05)Mudislander Wrote: I've just checked and can confirm the bug with playlist widgets only showing after having gone into the menu item. Will go through the file tonight and find the problem, although you're probably right it'll be the item counter running on a slow script.

Also, check if you can duplicate intermittent appearance of widget on startup on whatever menu xbmc starts on. Seems I'm noticing my "recent movies" menu widget not always starting up. Removing the additional visibility qualifier at line 18 as well fixed it for me. There's about 30 instances where the additional visibility qualifier appeared. I disabled them all without ill effects so far. Here's my modified xml if you want to compare.

ccm205fix_IncludesHomeWidget.xml


RE: CCM - Confluence Customizable Mod - Mudislander - 2014-06-09

Big Grin I've just done that and it does bring the playlist widget back to life. They were put in when I started the large widgets and they could show the black background when there are no items to show. As it was done at work over nightshift I probably was not concentrating properly.

The playlist script runs every time you return to the home screen so you will notice a bit of juggling at times as the content is refreshed, this is not helped by reusing the same container id for the different playlist widgets.

Can you try explain further the problem with "duplicate intermittent appearance of widget on startup" if it's not the juggling of playlist widgets just described.


RE: CCM - Confluence Customizable Mod - FrodoPL - 2014-06-09

It is posible to move favorietes button from left to right?

Image


RE: CCM - Confluence Customizable Mod - Marx1 - 2014-06-09

Frodo star fighter Smile


RE: CCM - Confluence Customizable Mod - Mudislander - 2014-06-09

(2014-06-09, 08:42)FrodoPL Wrote: It is posible to move favorietes button from left to right?

Space taken up already

Image



RE: CCM - Confluence Customizable Mod - bigbully - 2014-06-09

(2014-06-09, 07:38)Mudislander Wrote: Can you try explain further the problem with "duplicate intermittent appearance of widget on startup" if it's not the juggling of playlist widgets just described.

Sorry, "duplicate" probably wasn't the best word to use. I meant "replicate". I wanted to know if you were seeing the same issue I was seeing when you first launch XBMC. I'd have to figure a way to make a video to show you what I was seeing. Regardless, if you also changed the visibility control at the same 30 spots I did then the issue has been fixed.

Before modifying the IncludesHomeWidget.xml I was seeing inconsistent appearance of the widget for the default selected menu at startup.


RE: CCM - Confluence Customizable Mod - FrodoPL - 2014-06-09

No space....Image


RE: CCM - Confluence Customizable Mod - Fofer - 2014-06-10

(2014-05-12, 20:58)Fofer Wrote: Thanks for a great XBMC skin, Mudislander - it's awesome and works perfectly on my Nexus 7 tablet.

I have one issue though, as it relates to the XBMC Karaoke Add-on.

In short, the display of Karaoke files is too large, and looks like this, cutting off all the lyrics and making it impossible to use:

Image

All other video files from all other add-ons play fine.

I tested the Karaoke add-on using other installs of XBMC on other devices, that use the regular Confluence skin, and the video window is fine there.

So I'm wondering, what tweak should I be looking into/making to the "Confluence Mod" skin, in order to make the Karaoke add-on's video display properly?

Thanks for any insight...

Hi, checking in again to see if any discoveries were made on this front? I'll update my installed version of Confluence Mod but wanted to check first if there's any assistance I can provide with troubleshooting?


RE: CCM - Confluence Customizable Mod - bluechris - 2014-06-10

@Mudislander m8 I have a question.
I cannot change skin except ccm because if I do this I loose 1 of me 3 per addons. I love ccm but I recently bought an i5 pc for xbmc and a new 55" 4K tv and I wanted to try some other fancy skins but I loose 1 of the 3 pvr addons channels.
I use argustv and pvriptvsimple and vu+ but in all other skins the channels of vu+ doesn't shown.

Can you or someone help me?


RE: CCM - Confluence Customizable Mod - Majster - 2014-06-10

I Have a two request if possible. But do tell me if I missed some setting somewhere.
I have a lot of music videos. On the main menu I have added “concerts”

1. I would like to have the same widget view that "tv-series" have. So it shows the thumb image of the music video.
2. If I click on recently added (under conserts) and then back to main menu and just click on concerts if will still just show the recently added files. I have to go back up a level before I can see all the videos. Is this something that could be fixed.


Oohh.. thanks for the big widget thing. Like it a lot! Big Grin


CCM - Confluence Customizable Mod - Jelf10 - 2014-06-11

(2014-06-10, 21:24)Majster Wrote: I Have a two request if possible. But do tell me if I missed some setting somewhere.
I have a lot of music videos. On the main menu I have added “concerts”

1. I would like to have the same widget view that "tv-series" have. So it shows the thumb image of the music video.
2. If I click on recently added (under conserts) and then back to main menu and just click on concerts if will still just show the recently added files. I have to go back up a level before I can see all the videos. Is this something that could be fixed.


Oohh.. thanks for the big widget thing. Like it a lot! Big Grin

Answer to no.2 is in settings/appearance/file lists.
Un-select "show parents folders"
That should take you back to the menu.


RE: CCM - Confluence Customizable Mod - bigbully - 2014-06-11

(2014-06-11, 20:06)Jelf10 Wrote:
(2014-06-10, 21:24)Majster Wrote: I Have a two request if possible. But do tell me if I missed some setting somewhere.
I have a lot of music videos. On the main menu I have added “concerts”

1. I would like to have the same widget view that "tv-series" have. So it shows the thumb image of the music video.
2. If I click on recently added (under conserts) and then back to main menu and just click on concerts if will still just show the recently added files. I have to go back up a level before I can see all the videos. Is this something that could be fixed.


Oohh.. thanks for the big widget thing. Like it a lot! Big Grin

Answer to no.2 is in settings/appearance/file lists.
Un-select "show parents folders"
That should take you back to the menu.
I have the same problem with TV Shows. Unchecking "show parents folder" makes the problem worse, because then I can't go back up to the main list of tv shows. I think this is something that changed with Gotham. It happens in Confluence and CCM so it's not skin specific. Possible a bug. Movies library always goes back to the movie list no matter what folder you left it in.