1.4.x Themes: BasicHome, Clear Art's support for Titan, Weather icon on screen, bugfixes and more. (2 Viewers)

budinsky

Design Group
  • Team MediaPortal
  • September 12, 2009
    191
    262
    Brisbane
    Home Country
    Australia Australia
    It seems to me easier to understand the current display mechanism. After all, it works for pictures of Awards, Studios, Genres. The mechanism for aggregating images is the same.
    Fair enough, I am happy to leave it to someone else to fix or just leave it as is. I will make my own preferential change so that it's resolved for me.
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,749
    10,727
    Kyiv
    Home Country
    Ukraine Ukraine
    Fair enough, I am happy to leave it to someone else to fix or just leave it as is. I will make my own preferential change so that it's resolved for me.
    I would look either at the size of the pictures, or at the set of them, so that there are not 6 or 7, find and analyze the differences in the data and correct them once and for all.
     

    budinsky

    Design Group
  • Team MediaPortal
  • September 12, 2009
    191
    262
    Brisbane
    Home Country
    Australia Australia
    How do you feel about adding a skin option for DVDArt image paths for the CDArt, ClearArt and ClearLogo images?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,749
    10,727
    Kyiv
    Home Country
    Ukraine Ukraine
    How do you feel about adding a skin option for DVDArt image paths for the CDArt, ClearArt and ClearLogo images?
    What for? If the same FH can work with any directories? And has properties like: #fanarthandler.music.artistclearart.selected
    To be honest, I don’t understand why DVDArt is needed when there is FH (or MePoTools).

    And you can always do it universally, FH, MepoTools, DVDArt, for example (but I would leave one FH):
    XML:
        <!-- ClearArt -->
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>258456950</id>
            <posX>1650</posX>
            <posY>190</posY>
            <width>200</width>
            <height>77</height>
            <texture>#fanarthandler.music.artistclearart.selected</texture>
            <visible>![facadeview.filmstrip|facadeview.coverflow]</visible>
            <animation effect="fade" time="500">Visible</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control> 
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>258456951</id>
            <posX>1650</posX>
            <posY>190</posY>
            <width>200</width>
            <height>77</height>
            <texture>..\..\..\Thumbs\ClearArt\Music\#(string.trim(#music.Artist)).png</texture>
            <visible>![facadeview.filmstrip|facadeview.coverflow]+!control.hasthumb(258456950)</visible>
            <animation effect="fade" time="500">Visible</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control> 
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>0</id>
            <posX>1650</posX>
            <posY>190</posY>
            <width>200</width>
            <height>77</height>           
            <texture>..\..\..\Thumbs\ClearArt\Music\#(string.trim(#music.albumArtist)).png</texture>
            <animation effect="fade" time="500">VisibleChange</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <visible>![facadeview.filmstrip|facadeview.coverflow]+!control.hasthumb(258456950)+!control.hasthumb(258456951)</visible>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control>
    
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>258456953</id>
            <posX>860</posX>
            <posY>850</posY>
            <width>200</width>
            <height>77</height>
            <texture>#fanarthandler.music.artistclearart.selected</texture>
            <visible>[facadeview.filmstrip|facadeview.coverflow]</visible>
            <animation effect="fade" time="500">Visible</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control> 
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>258456952</id>
            <posX>860</posX>
            <posY>850</posY>
            <width>200</width>
            <height>77</height>
            <texture>..\..\..\Thumbs\ClearArt\Music\#(string.trim(#music.Artist)).png</texture>
            <visible>[facadeview.filmstrip|facadeview.coverflow]+!control.hasthumb(258456953)</visible>
            <animation effect="fade" time="500">Visible</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control> 
        <control>
            <description>ClearArt</description>
            <type>image</type>
            <id>0</id>
            <posX>860</posX>
            <posY>850</posY>
            <width>200</width>
            <height>77</height>           
            <texture>..\..\..\Thumbs\ClearArt\Music\#(string.trim(#music.albumArtist)).png</texture>
            <animation effect="fade" time="500">Visible</animation>
            <animation effect="fade" time="250">Hidden</animation>
            <visible>[facadeview.filmstrip|facadeview.coverflow]+!control.hasthumb(258456952)+!control.hasthumb(258456953)</visible>
            <shouldCache>false</shouldCache>
            <animation effect="fade" time="250">WindowOpen</animation>
            <animation effect="fade" time="250">WindowClose</animation>
        </control>
        <!-- -->
     

    Users who are viewing this thread

    Top Bottom