• 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 51
Confluence Modified
(2013-11-02, 15:14)SpaceMonkey Wrote: Are there still shutdown options in the shutdown menu for Raspberry that do not work? If so, which? I could now hide the settings that do not work.

http://forum.xbmc.org/showthread.php?tid...pid1540994

No, the Raspberry Pi shutdown menu options are correct, only "Power off System" and "Reboot" are visible (tested on OpenELEC Gotham with CM 1.1.2) - there is no suspend, or hibernate available which is as it should be. Visibility of these options should be determined from the power management properties - System.CanPowerDown, System.CanReboot, System.CanSuspend, System.CanHibernate etc. - not according to the platform so using the new System.Platform(linux.raspberrypi) property to control visibility of the "power" options would be a bad idea. Fortunately there doesn't appear to be anything more you need to do here. Smile
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
(2013-10-26, 15:57)SpaceMonkey Wrote: What kind of shitstorm would i raise if the new vertical widgets would be the only widgets available for horizontal home?

I am a new convert to XBMC and happened upon your skin. I was looking for an option to enable the vertical widgets while using the horizontal menu in the Gotham Alpha version.
Reply
OK i've managed to modify this excellent version of Confluence to add the metadata actors script addon.

I need to explain i take no credit for this and used addon editions from Mudislanders convergence skin. Mudislander must be credited for the actual mod,, all i did was splice his code into Spacemonkeys excellent skin to make things more appealing to me.

You'll need to edit the the following file

DialogVideoInfo.xml

Open it up (I suggest using Notepad ++) and find the following

On or around line 9

PHP Code:
<animation effect="slide" start="1100,0" end="0,0" time="400" tween="quadratic" easing="out">WindowOpen</animation>
<
animation effect="slide" start="0,0" end="1100,0" time="400" tween="quadratic" easing="out">WindowClose</animation

add directly below
PHP Code:
<animation effect="slide" start="1100,0" end="0,0" time="400" tween="quadratic" easing="out" condition="!StringCompare(Window.Property(script.metadata.actors.isactive),1)">Conditional</animation>
            <
animation effect="slide" start="0,0" end="1100,0" time="400" tween="quadratic" easing="out" condition="StringCompare(Window.Property(script.metadata.actors.isactive),1)">Conditional</animation

find the following on or around starting on line 1025 to 1097


PHP Code:
            <control type="image">
                    <
description>Actor image</description>
                    <
posx>210</posx>
                    <
posy>480</posy>
                    <
width>160</width>
                    <
height>160</height>
                    <
texture>$INFO[Container(50).Listitem.Icon]</texture>
                    <
aspectratio>keep</aspectratio>
                    <
visible>Control.IsVisible(50)</visible>
                </
control>
                <
control type="panel" id="50">
                    <
posx>380</posx>
                    <
posy>520</posy>
                    <
width>860</width>
                    <
height>120</height>
                    <
onleft>9000</onleft>
                    <
onright>61</onright>
                    <
onup>61</onup>
                    <
ondown>9000</ondown>
                    <
viewtype label="">list</viewtype>
                    <
pagecontrol>61</pagecontrol>
                    <
scrolltime tween="cubic" easing="out">500</scrolltime>
                    <
orientation>vertical</orientation>
                    <
itemlayout height="40" width="430">
                        <
control type="image">
                            <
posx>0</posx>
                            <
posy>0</posy>
                            <
width>430</width>
                            <
height>40</height>
                            <
texture border="5">button-nofocus.png</texture>
                        </
control>
                        <
control type="label">
                            <
posx>10</posx>
                            <
posy>0</posy>
                            <
width>410</width>
                            <
height>40</height>
                            <
font>font12</font>
                            <
align>left</align>
                            <
aligny>center</aligny>
                            <
selectedcolor>white</selectedcolor>
                            <
info>ListItem.Label</info>
                        </
control>
                    </
itemlayout>
                    <
focusedlayout height="40" width="430">
                        <
control type="image">
                            <
posx>0</posx>
                            <
posy>0</posy>
                            <
width>430</width>
                            <
height>40</height>
                            <
visible>!Control.HasFocus(50)</visible>
                            <
texture border="5">button-nofocus.png</texture>
                        </
control>
                        <
control type="image">
                            <
posx>0</posx>
                            <
posy>0</posy>
                            <
width>430</width>
                            <
height>40</height>
                            <
visible>Control.HasFocus(50)</visible>
                            <
texture border="5">button-focus2.png</texture>
                        </
control>
                        <
control type="label">
                            <
posx>10</posx>
                            <
posy>0</posy>
                            <
width>410</width>
                            <
height>40</height>
                            <
font>font12</font>
                            <
align>left</align>
                            <
aligny>center</aligny>
                            <
selectedcolor>white</selectedcolor>
                            <
info>ListItem.Label</info>
                        </
control>
                    </
focusedlayout>
                </
control

replace with

PHP Code:
                <control type="button" id="52">
                    <
posx>210</posx>
                    <
posy>470</posy>
                    <
width>700</width>
                    <
height>40</height>
                    <
font>font13</font>
                    <
label>$INFO[Container(50).ListItem.Label]</label>
                    <
textcolor>white</textcolor>
                    <
focusedcolor>white</focusedcolor>
                    <
texturefocus>MenuItemFO.png</texturefocus>
                    <
texturenofocus>MenuItemNF.png</texturenofocus>
                    <
onleft>61</onleft>
                    <
onright>61</onright>
                    <
onup>49</onup>
                    <
ondown>50</ondown>
                    <
onclick>RunScript(script.metadata.actors,$INFO[Container(50).ListItem.Label])</onclick>
                    <
visible>Control.IsVisible(50)</visible>
                </
control>    
                <
control type="wraplist" id="50">
                    <
posx>300</posx>
                    <
posy>520</posy>
                    <
width>870</width>
                    <
height>120</height>
                    <
onleft>50</onleft>
                    <
onright>50</onright>
                    <
onup>52</onup>
                    <
ondown>61</ondown>
                    <
viewtype label="">list</viewtype>
                    <
pagecontrol>61</pagecontrol>
                    <
scrolltime>200</scrolltime>
                    <
focusposition>3</focusposition>
                    <
orientation>horizontal</orientation>
                    <
itemlayout width="110" height="110">
                        <
control type="image">
                            <
posx>5</posx>
                            <
posy>5</posy>
                            <
width>100</width>
                            <
height>100</height>
                            <
aspectratio scalediffuse="false">scale</aspectratio>
                            <
texture diffuse="thumb-diffuse.png">$INFO[ListItem.Icon]</texture>
                        </
control>
                    </
itemlayout>
                    <
focusedlayout width="110" height="110">
                        <
control type="image">
                            <
posx>2</posx>
                            <
posy>2</posy>
                            <
width>106</width>
                            <
height>106</height>
                            <
texture border="4">thumb-shadow2.png</texture>
                            <
animation effect="zoom" start="2,2,106,106" end="-14,-14,138,138" time="200">focus</animation>
                            <
animation effect="zoom" start="-14,-14,138,138" end="2,2,106,106" time="200">unfocus</animation>
                            <
visible>Control.HasFocus(50)</visible>
                        </
control>
                        <
control type="image">
                            <
posx>5</posx>
                            <
posy>5</posy>
                            <
width>100</width>
                            <
height>100</height>
                            <
aspectratio scalediffuse="false">scale</aspectratio>
                            <
texture diffuse="thumb-diffuse.png">$INFO[ListItem.Icon]</texture>
                            <
animation effect="zoom" start="5,5,100,100" end="-10,-10,130,130" time="200">focus</animation>
                            <
animation effect="zoom" start="-10,-10,130,130" end="5,5,100,100" time="200">unfocus</animation>
                        </
control>
                    </
focusedlayout>
                </
control

Obviously make sure that script.metadata.actors is installed and you should be good.

Now you'll note the actor thumbs display instead of a scrollable list. Clicking the thumb acts as it would do and shows all movies in your database related to that actor. Above the thumb (left hand side) you'll see the actors name. Clicking on that brings up his/her bio and you can list films they have starred in, whether or not in your database, and play trailers etc as well.

Haven't modified directors or writers yet but when i do i'll post my findings.
-= My Media Centre =-
ACER Revo R3610 | x2 1.5TB WD Caviar Green SATA Hard Drives (WD15EADS) | x2 2.0TB WD Caviar Green SATA Hard Drive ( WD15EARS ) | 3.5in Black eSATA USB Trayless SATA External Hard Drive Enclosure | Emprex 3009URF Wireless MCE Remote Control | XBMCLive Dharma Beta1
Reply
There's a blast from the past Big Grin - Tend to remember it was a good idea to wake the script up in MyVideoNav.xml - It would be worth checking if you've got the Convergence files to hand. To be honest you might find the code came from ronie !!!
Noli illegitimi carborundum


Reply
I'll check that mate Smile yes I had to go into your repo to grab it but the code works perfectly and I much prefer the actor thumbs to the default lists in confluence. And the script is amazing to find new films or old you've missed on your favourite actors.

I'll happily credit Ronnie as well if you feel he played a part in that code. Hope you didn't mind me using. I tried contacting you but no pm, although I did email.
-= My Media Centre =-
ACER Revo R3610 | x2 1.5TB WD Caviar Green SATA Hard Drives (WD15EADS) | x2 2.0TB WD Caviar Green SATA Hard Drive ( WD15EARS ) | 3.5in Black eSATA USB Trayless SATA External Hard Drive Enclosure | Emprex 3009URF Wireless MCE Remote Control | XBMCLive Dharma Beta1
Reply
I'll take a look about integrating it to my mod too.
Reply
Looks like an interesting skin to try. Does it work on the OUYA? And will it keep the external ANDROID PROGRAMS launcher that is a part of confluence skin there?
Reply
(2013-11-03, 16:22)Mudislander Wrote: There's a blast from the past Big Grin - Tend to remember it was a good idea to wake the script up in MyVideoNav.xml - It would be worth checking if you've got the Convergence files to hand. To be honest you might find the code came from ronie !!!

Not sure why but looks like you commented it out. So i guess you decided it wasn't needed to wake the script up ?

Code:
<!--onload condition="System.HasAddon(script.metadata.actors)">RunScript(script.metadata.actors,backend)</onload-->

I added and uncommented the code and it seemed to have little effect. I have noticed the script takes a while to activate its database on reboot and thus the bio etc window take a while to come up.
-= My Media Centre =-
ACER Revo R3610 | x2 1.5TB WD Caviar Green SATA Hard Drives (WD15EADS) | x2 2.0TB WD Caviar Green SATA Hard Drive ( WD15EARS ) | 3.5in Black eSATA USB Trayless SATA External Hard Drive Enclosure | Emprex 3009URF Wireless MCE Remote Control | XBMCLive Dharma Beta1
Reply
can we get low list view, cinema experience option and top menu as well. I know i can manually add cinema under the video xml but i think it would be nicer under submenu. If you don't mind of course.

Thanks,
Reply
Cinema experience should already be there if you have it installed.
Reply
Under movies submenu?
Reply
No, how would it know which movie to launch if it's in the movies submenu? It's in the movie information screen.
Reply
Quote:2.0.1

- Showcase view
- Support for script.metadata.actors
- Boring fixes in the background

I'll try to merge all the changes from 2.0.0 and 2.0.1 to the Frodo version tomorrow.
Reply
Thats excellent mate. Many thanks Smile
-= My Media Centre =-
ACER Revo R3610 | x2 1.5TB WD Caviar Green SATA Hard Drives (WD15EADS) | x2 2.0TB WD Caviar Green SATA Hard Drive ( WD15EARS ) | 3.5in Black eSATA USB Trayless SATA External Hard Drive Enclosure | Emprex 3009URF Wireless MCE Remote Control | XBMCLive Dharma Beta1
Reply
Quote:1.1.3 (Frodo)

- Showcase view
- Support for script.metadata.actors
- Replace home menu programs with poor man's add-on browser (use programs for Android)
- Simple next aired information for tv shows
- Tune font aspect ratios
- Revert back to Confluence flags, Gotham-style audio and subtitle language info
- Various cosmetic fixes

Script.metadata.actors is now available in my repo for easier access. If the add-on author minds, let me know and i'll remove it.
Reply
  • 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 51

Logout Mark Read Team Forum Stats Members Help
Confluence Modified4