Titanium Extended (2 Viewers)

disaster123

MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    I've to wait for the TV part as i'm using mp mainly for TV. Hopefully it will work soon.
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    @morpheus_xx can you have a look at the error message?
    @morpheus_xx could you take a look on it? Many people waiting for the theme meanwhile :whistle:
    He is aware of the problem and will need some time as the error is a seldom and kind of complicated one. I might release a test version with next weekly - without EPG and without skinning of any TV screen (Default skin will be shown) - anyway. I'd prefer some feedbacks for the other parts, since always minor issues occur during testing.
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    @Brownard
    One thing happens with the ImageSourceWrapper in the BackgroundBrush, that is not intended.
    After start of MP2, means w/o focus on any button the Fallback is not shown anymore, means the background is black.
    Absolutely not critical, but looks not good. I could place the standard background as a seperate image additionally to the Fallback behind the ImageSourceWrapper for example or there is another solution.
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    Image
    Gridview
    Unbenannt.jpg


    Listview (large)
    Unbenannt.jpg

    Once thing I want to add later, but couldn't figure out yet: Show the image with UniformtoFill in the background.
    Accessing the BackgroundBrush failed, need to find another way.
     

    Brownard

    Development Group
  • Team MediaPortal
  • March 21, 2007
    2,305
    1,884
    Home Country
    United Kingdom United Kingdom
    @Brownard
    One thing happens with the ImageSourceWrapper in the BackgroundBrush, that is not intended.
    After start of MP2, means w/o focus on any button the Fallback is not shown anymore, means the background is black.
    Absolutely not critical, but looks not good. I could place the standard background as a seperate image additionally to the Fallback behind the ImageSourceWrapper for example or there is another solution.
    Good spot, this is a bug in the ImageSourceWrapper where no image is displayed until after the first time an image is changed.
    @morpheus_xx I've committed a fix for it in the FEAT_Include_ImageSourceWrapper_in_SkinEngine branch.
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    Good spot, this is a bug in the ImageSourceWrapper where no image is displayed until after the first time an image is changed.
    @morpheus_xx I've committed a fix for it in the FEAT_Include_ImageSourceWrapper_in_SkinEngine branch.
    Great, then I'll remove my workaround again:
    XML:
                 <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch" >
                  <Grid.Resources>
                    <Model x:Key="FanArtBackgroundModel" Id="8F42C8E9-E8A3-475C-A50A-99E1E644DC91"/>
                  </Grid.Resources>
                  <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*"/>
                  </Grid.ColumnDefinitions>
                  <Grid.RowDefinitions>
                    <RowDefinition Height="*"/>
                  </Grid.RowDefinitions>
                  <Image Stretch="Fill" Source="background.jpg">
                  </Image>
                  <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Background="{ThemeResource BackgroundBrush}"/>
                  <Image x:Name="FanArtImageBackground" VerticalAlignment="Stretch" Stretch="UniformToFill" Grid.Row="0" Grid.Column="0">
                    <Image.Source>
                      <ImageSourceWrapper Delay="0.5" DelayInOut="true" Transition="transitions\dissolve" TransitionDuration="0.5"/>
                    </Image.Source>
                    <Image.Triggers>
                      <Trigger Property="HasImage" Value="False">
                        <Setter TargetName="FanartVisualBrush" Property="Animation"/>
                        <Setter TargetName="FanartVisualBrush" Property="AnimationEnabled" Value="False"/>
                      </Trigger>
                      <Trigger Property="HasImage" Value="True">
                        <Setter TargetName="FanartVisualBrush" Property="AnimationEnabled" Value="True"/>
                        <Setter TargetName="FanartVisualBrush" Property="Animation">
                          <Setter.Value>
                            <animation:KenBurnsAnimator Duration="5" />
                          </Setter.Value>
                        </Setter>
                      </Trigger>
                    </Image.Triggers>
                  </Image>
                  <Image Source="fanart_overlay.png" />
                </Grid>
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    Happy New Year 2016!

    A new year starts and it's time to release the first test version of Titanium Extended.
    The TV section is not working yet, if you select TV features MP2 will crash. We are working on a solution! Everything else is almost done, just some minor adjustments are necessary and mostly wait for the MIA rework.

    Installation notes:
    • This theme works only with the new weekly from 01/01/2016, please download it here and install it at first:
    • Please download then the theme package here:
    • Extract the package to ..\Program Files (x86)\Team MediaPortal\MP2-Client\Plugins\
    • Start MP2 and go to Settings, Apperance, Skin (you need to select it), then change the skin to BlueVision, afterwards change the Theme to Titanium Extended
    Since it is a test version,unexpected things can happen. Please report the problems with log files or explain it with a screenshot, if applicable. Every feedback is welcome to develop this theme further.

    Remarks:
    • The skin is optimized for keyboard and remote usage
    • Please uncheck below option for an ideal experience. You can find the option in Settings --> Apperance --> Skin
     
    Last edited:

    Users who are viewing this thread

    Top Bottom