Kodi Community Forum
Confluence Modified - 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: Confluence Modified (/showthread.php?tid=145080)



RE: Confluence Modified - warlion - 2013-12-26

hit F7

check if you had a keymap if not add this lines

<F5>XBMC.ReloadSkin()</F5>
<F6>Skin.ToggleSetting(DebugGrid)</F6>
<F7>Skin.ToggleSetting(HideDebugInfo)</F7>

or delete
Custom_Overlay.xml
in the 720p folder


RE: Confluence Modified - illiac4 - 2013-12-26

TNX


RE: Confluence Modified - User 34959 - 2013-12-27

(2013-12-19, 00:57)warlion Wrote: Just remember this is a small change SpaceMonkey need to change a few more things on skinsettings.xml and delete the Video OSD selector

I will update the Gotham version when either the XBMC 13 is closer to release or I upgrade to nightlies myself before that. I'm happy using 12.3 for now.

(2013-12-24, 00:07)nt_andi Wrote: Hi SpaceMonkey

XBMC 12.x Frodo: use 1.1.6, available from my Frodo repository -> Repo works on my xbmc 12

XBMC 13 Gotham: use 2.0.1, available from my Gotham repository -> Repo doesnt work on my xbmc 13
the download is hanging: System - Programm Add-ons - Currently downloading Add-ons - Confluence Modified - Downloading 0%
xbmc.log doesnt show anything
no error messages - every time hanging on "Downloading 0%"
Add-ons -> Get Add-ons -> SpaceMonkey´s Add-ons for XBMC 13 -> Check for Updates AND Force refresh doesnt help

name resolution is working:
xxx:/home/xxx/.xbmc/temp# ping dl.dropboxusercontent.com
PING duc-balancer.x.dropbox.com (54.243.60.55) 56(84) bytes of data.



any suggestions?

I would try deleting AddonsXX.db in the userdata and restarting XBMC.


RE: Confluence Modified - User 34959 - 2013-12-27

The mod is now in Transifex available for translation. If you want to have your translations included with the skin, join Transifex and translate the language of your choice. I will include the languages that are 100% translated or very close.

https://www.transifex.com/projects/p/xbmc-skins/resource/skin-confluence-modified/

http://forum.xbmc.org/showthread.php?tid=141158


RE: Confluence Modified - capfuturo - 2013-12-28

Good evening SpaceMonkey,

I see Confluence Modified has built in support for the new TvTunes and VideoExtras. Have you included in the latter the feature overlay flag so users can easily see when a movie has video extras, without going into its info pane? (code is here)

Thanks for the fine work on Confluence modified.


RE: Confluence Modified - djstallion - 2013-12-28

One thought: it will be nice, when in fullscreen music play can see song/album year.


RE: Confluence Modified - Doomsday01 - 2014-01-06

Is there a way to modify the font size when on the live tv guide? Even with a 60 inch tv, My old eyes has a terrible time trying to read the synapse and next on text.


RE: Confluence Modified - vipersvcd - 2014-01-06

Hi All


I am not sure if this is the same as the Xunity Confluence Mod , but maybe if what I want is possibale here I will install this skin instead ,Maybe you can help me , i need larger ont in order to be able to read the menues and movie info.

I use the Confluence skin and there I noticed there is an option to choose large font which is great ,
But my local font are not visibale when I choose it or any other option except Arial Based , which is a little bit smaller than the normal/default option,

How can I get the "Arial Based" option to have the same size settings as the "Large Font" settings ,
Or have the "Large Font" support my font unicode ?
Or create/add a seperate option with Large Font + Arial Based ,

Thank you for your Help.


RE: Confluence Modified - loimick - 2014-01-18

hi there,
I use this mod with a raspberry & a synology nas. Mysql & thumbnails are on the nas. It works really great with space monkey works.
i read many posts and don't find the answer so i ask here.I would like to change the opacity of the transparency. It is the window with text description over film or tv show backgroun (in red in the screenshot)
Image

thank you by advance


RE: Confluence Modified - floatingcloud - 2014-01-19

Edited (post in wrong forum.)


RE: Confluence Modified - Scott00007 - 2014-01-28

(2013-12-17, 11:41)warlion Wrote:
(2013-12-04, 00:01)Bagger Wrote:
(2013-11-27, 20:16)Bagger Wrote: All the options for SYSTEM are available in the power/shutdown menu.
It would be very nice indeed if we could just "Hide" SYSTEM all together. ( like in back row skin )

A quick and dirty way to remove the SYSTEM from the home screen is to modify the IncludesHomeMenuItems.xml (Worked for me)

Search the file for <item id="5">
Delete that and all the following lines down to and including the next </item>
10 lines in total as pictured
If you do this make sure that "settings" is enabled in the shutdown menu otherwise you wont be able to get into settings without putting the file back to its original state.
Restart xbmc and SYSTEM will be gone .

SpaceMonkey
Hope you do not mind me sharing this.
If there is a problem let me know and I'll remove it.


Image[/img]

@FrodoPL

why dont instead of delete this line add a setting with visible

open IncludesHomeMenuItems.xml
Code:
        <item id="5">
            <label>31959</label>
            <onclick>ActivateWindow(Settings)</onclick>
            <icon>special://skin/backgrounds/settings.jpg</icon>
            <thumb>$INFO[Skin.String(HomeSettingsBG)]</thumb>
            <visible>!Skin.HasSetting(SettingNoMenu)</visible> ******** add this line ***********
        </item>

open SkinSettings.xml
Code:
                    <control type="radiobutton" id="3099"> ******** change 3012 to 3099 ***********
                        <description>Hide Shutdown Button</description>
                        <width>750</width>
                        <height>40</height>
                        <font>font13</font>
                        <textcolor>grey2</textcolor>
                        <focusedcolor>white</focusedcolor>
                        <label>$LOCALIZE[13005]</label>
                        <onclick>Skin.ToggleSetting(HomeMenuNoShutdownButton)</onclick>
                        <selected>Skin.HasSetting(HomeMenuNoShutdownButton)</selected>
                        <texturefocus>MenuItemFO.png</texturefocus>
                        <texturenofocus>MenuItemNF.png</texturenofocus>
                        <visible>Skin.HasSetting(VerticalHome)</visible>
                    </control>
                    
                    ******** add all of this  ***********
                    <control type="radiobutton" id="3012">
                        <description>Hide System Button</description>
                        <width>750</width>
                        <height>40</height>
                        <font>font13</font>
                        <textcolor>grey2</textcolor>
                        <focusedcolor>white</focusedcolor>
                        <label>System</label>
                        <onclick>Skin.ToggleSetting(SettingNoMenu)</onclick>
                        <selected>Skin.HasSetting(SettingNoMenu)</selected>
                        <texturefocus>MenuItemFO.png</texturefocus>
                        <texturenofocus>MenuItemNF.png</texturenofocus>
                    </control>

so if you dont want to lose the setting button you can always go back with a single click

Image

(2013-12-08, 13:41)Trixster Wrote: Hi, is it possible to get an update to fix the problem with downloading subtitles? With normal Confluence, selecting Download from the OSD Subtitles button brings up a side-window which allows you to select and download subs. When pressing Download in Confluence Modified no such side-window appears.

@Trixster just follow this steps

http://forum.xbmc.org/showthread.php?tid=158812&pid=1549056#pid1549056


Will any future updates to the skin undo this change?


RE: Confluence Modified - warlion - 2014-01-28

If you upgrade the skin you will replace the files and you had to do it again every time you upgrade , that's not official modification is just a small changes that the developers is not using


RE: Confluence Modified - Scott00007 - 2014-01-28

Thanks for the quick response.


RE: Confluence Modified - User 34959 - 2014-01-28

Don't use the Gotham version or your need to learn to fix issues yourself. I might update it for official Gotham release, but it seems that i've nuked my skin code so i'll need to start from scratch (Frodo version).


Confluence Modified - kreeturez - 2014-01-29

(2014-01-28, 22:38)SpaceMonkey Wrote: Don't use the Gotham version or your need to learn to fix issues yourself. I might update it for official Gotham release, but it seems that i've nuked my skin code so i'll need to start from scratch (Frodo version).

Aaargh, that's seriously bad news!!

Do you have a check-in from prior to the nuking?

We can't go a day without this skin at our house Smile