Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
  • 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 51
Confluence Modified
Is there a way to change the "End Time" displayed when I get the info for a playing video to "Remaining Time"? I constantly do the calculation in my head and it distracts from the video.

Actually I see the value of both pieces of info, maybe an option allowing both or either, depending on personal preference.

I have no problem hacking an XML file if that's what it takes, but someone will need to point me in the right direction.
Reply
(2013-08-12, 19:34)toiva Wrote: Open IncludesCodecFlagging.xml and delete line number 55 and it should show for movies.

I never noticed that the MPAA flagging is not working, so the MPAA flags from Confluence do not quite match the rest of the flags that are from PM3.HD.

I"m sorry. Which line is #55?

</include>
<include name="VideoMPAAFlaggingConditions">
<control type="image">
<description>Rating image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>$VAR[rating,flagging/ratings/,.png]</texture>
<visible>!IsEmpty(rating)</visible>
</control>
</include>
Reply
Hi Smile

I use xbmc on windows and want it always running to use its upnp server and music playing features.
So i map a remote button to "minimize" xbmc in the task bar, but when i'm using my keyboard or mouse, i have to switch to windowed mode to be able to reduce it.
What do you think about a "minimize" option that could be added in the shutdown menu ?

Thanks
Reply
Hi ,

I wish to change the font size in my openelec setup.
where can I found a copy of Confluence to change the font.xml file ?

Thanks in advance
JP
Reply
(2013-08-13, 05:27)gargamon Wrote: Is there a way to change the "End Time" displayed when I get the info for a playing video to "Remaining Time"? I constantly do the calculation in my head and it distracts from the video.

Actually I see the value of both pieces of info, maybe an option allowing both or either, depending on personal preference.

I have no problem hacking an XML file if that's what it takes, but someone will need to point me in the right direction.

I will change the total time on right to show remaining time, and keep the end time as is.

(2013-08-15, 04:39)m9610172 Wrote: I"m sorry. Which line is #55?

</include>
<include name="VideoMPAAFlaggingConditions">
<control type="image">
<description>Rating image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>$VAR[rating,flagging/ratings/,.png]</texture>
<visible>!IsEmpty(rating)</visible>
</control>
</include>

Remove <visible>!IsEmpty(rating)</visible>

(2013-08-30, 13:52)nonob Wrote: Hi Smile

I use xbmc on windows and want it always running to use its upnp server and music playing features.
So i map a remote button to "minimize" xbmc in the task bar, but when i'm using my keyboard or mouse, i have to switch to windowed mode to be able to reduce it.
What do you think about a "minimize" option that could be added in the shutdown menu ?

Thanks

Image

(2013-08-30, 14:24)jpeg Wrote: Hi ,

I wish to change the font size in my openelec setup.
where can I found a copy of Confluence to change the font.xml file ?

Thanks in advance
JP

In the skin directory, Font.xml file.
Reply
Alternative vertical home layout, highly WIP at the moment. Might even finish this some day.

Image
Reply
Quote:nonob Wrote:
Hi Smile

I use xbmc on windows and want it always running to use its upnp server and music playing features.
So i map a remote button to "minimize" xbmc in the task bar, but when i'm using my keyboard or mouse, i have to switch to windowed mode to be able to reduce it.
What do you think about a "minimize" option that could be added in the shutdown menu ?

Thanks

Quote:no...no...

And is there a way to force xbmc to be reduced instead of to be closed when i choose one of the shutdown menu's options ?
Or is there another way to reduce xbmc with mouse without switch to windowed mode ?

Thanks
Reply
Should be easy to mod the shutdownmenu to include minimize if you want to try it.

Open DialogButtonMenu.xml, copy one of the buttons, paste it, change the id, label and onclick action to <onclick>Minimize</onclick>.

Or change one of the existing buttons, then you only need to change the label, onclick and maybe visibility condition.

I have not tried minimize function ever so i'm not sure if this will work.
Reply
(2013-09-03, 12:22)toiva Wrote: Should be easy to mod the shutdownmenu to include minimize if you want to try it.

Open DialogButtonMenu.xml, copy one of the buttons, paste it, change the id, label and onclick action to <onclick>Minimize</onclick>.

Or change one of the existing buttons, then you only need to change the label, onclick and maybe visibility condition.

I have not tried minimize function ever so i'm not sure if this will work.

Toiva, Using that information, why doesn't this work?

Code:
            <control type="button" id="15">
                <description>Update button</description>
                <width>340</width>
                <height>40</height>
                <textcolor>grey2</textcolor>
                <focusedcolor>white</focusedcolor>
                <align>center</align>
                <textwidth>290</textwidth>
                <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus>
                <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus>
                <onclick>xbmc.executebuiltin('UpdateLibrary(video)')</onclick>
                <pulseonselect>no</pulseonselect>
                <font>font13</font>
                <label>Update Library</label>
            </control>

The button is visible in the shutdown menu, but clicking it doesn't do anything? I currently have the same info mapped to the Blue button om my Samsung remote, and that works fine?

Edit: Nevermind, I sussed it as soon as I posted, I didn't include the full path to the script, Doh!

Code:
                <onclick>XBMC.RunScript(/storage/.xbmc/userdata/Scripts/update.py)</onclick>
Reply
So i added this:

Code:
<control type="button" id="19">
                <description>Minimize button</description>
                <width>340</width>
                <height>40</height>
                <textcolor>grey2</textcolor>
                <focusedcolor>white</focusedcolor>
                <align>center</align>
                <textwidth>290</textwidth>
                <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus>
                <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus>
                <onclick>Minimize</onclick>
                <pulseonselect>no</pulseonselect>
                <font>font13</font>
                <label>Réduire</label>
                <visible>System.ShowExitButton</visible>
            </control>

to my DialogButtonMenu.xml located here: C:\Documents and Settings\Nonob\Application Data\XBMC\addons\skin.confluence.modified\720p

So i have a new first line called "Réduire" in the shutdown menu, that's what i would, but by the default selection is always "Exit" (now as second line).
How can i make my new first line "Réduire" (minimize) the default ?

Thanks
Reply
Change second line from top to <defaultcontrol>19</defaultcontrol>.
Reply
SpaceMonkey,

Would it be possible for you to add IMDB Top 250 information to the Fanart Movies view? That would really complete it for me.

Also, and I am sorry if this has been asked before, can you add recently added widget to custom home menu items that are video playlists? I understand that the script randomandlastitems supports this.

Thank you so much for considering my requests.

Regards,

Bart
Reply
IMDB top 250 is pretty questionable and a matter of opinion, so no, i have no personal interest to add it.

Yes you should see a recent&recommended widget for movie and episode type smart playlists. Just enable the widget in settings and that's it.
Reply
Hopefully SpaceMonkey will be able to respond to this when he's allowed back from the naughty step. Smile

It's an issue in Gotham, which you may already be aware of - the squashed lines in the codec information panel (see thread with example screenshot).

On a Raspberry Pi (OpenELEC running latest Gotham) the following patch fixes it up quite nicely:
Code:
--- a/720p/VideoFullScreen.xml    2013-09-12 02:37:15.765820283 +0100
+++ b/720p/VideoFullScreen.xml    2013-09-12 03:02:26.863753092 +0100
@@ -327,7 +327,7 @@
                        <control type="label" id="11">
                                <description>row 2 label</description>
                                <posx>50</posx>
-                               <posy>40</posy>
+                               <posy>55</posy>
                                <width>1180</width>
                                <height>30</height>
                                <align>left</align>
@@ -338,7 +338,7 @@
                        <control type="label" id="12">
                                <description>row 3 label</description>
                                <posx>50</posx>
-                               <posy>85</posy>
+                               <posy>100</posy>
                                <width>1180</width>
                                <height>30</height>
                                <align>left</align>
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
I just downloaded your skin. Great one.

Reason for using your skin is the fact I have a lot of Concert DVD's. Now I see that you have a Music Video Button on the main menu.
Only wonder HOW to get my Concerts over there?

I have a special folder on my PC where I keep my concert DVD's. Apart from my movie database.
As far as I can see there no way to connect this folder to this music video button.

Already tried to make my own Concert Button but this one only works on Folder mode and not on library.

Please advise best way to connect my Concert DVD's to your own button or my self made one (but on library mode)
Reply
  • 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 51

Logout Mark Read Team Forum Stats Members Help
Confluence Modified4