• 1
  • 39
  • 40
  • 41(current)
  • 42
  • 43
  • 204
Mod Titan M O D ( last Updated 19-12-2019)
But, as you can see, the landscape art isnt missing, and it already has a logo on it. Bottom picture.

If it isnt skin related, could it be artwork beef related?

Do you know if i can delete all my artwork?
Reply
(2018-12-15, 20:13)Rick32 Wrote: But, as you can see, the landscape art isnt missing, and it already has a logo on it. Bottom picture.

If it isnt skin related, could it be artwork beef related?

Do you know if i can delete all my artwork?

Nor skin , nor artwork.

I seems you used an addon wich provides fanart images with logos in it.

But kodi +/or skin make a difference between "fanart" and "landscape" images.

If "landscape" image is missing, the skin use the "fanart" with a "clearlogo" (if exist) , if "clearlogo" not exist it uses text labels as overlay.

https://kodi.wiki/view/Movie_artwork#Fanart
Skins |  Titan M O D   •   S W A N (WIP)
Reply
Ok. One last question than. I got it fixed by using another addon. Ik now using landscape images. I am missing clearlogo’s in the spotlight area now. (The big ones on the top left of the screen abjve plot, ratings etc etc) Is this because im using landscape images? How do i make them appear in the spotlight area?
Reply
(2018-12-15, 21:33)Rick32 Wrote: Ok. One last question than. I got it fixed by using another addon. Ik now using landscape images. I am missing clearlogo’s in the spotlight area now. (The big ones on the top left of the screen abjve plot, ratings etc etc) Is this because im using landscape images? How do i make them appear in the spotlight area?



Seem addon related, Provide full log pls.
Skins |  Titan M O D   •   S W A N (WIP)
Reply
Great update, as always! Thank you so much!
My only wish would be to have the snow effects available on the home screen and maybe while a movie is on pause, I know it's silly though haha!
For real, thanks for your work, hope you are not overwhelmed by it!
Reply
Hi

As I said before my fan art rotating issues were caused by not fully understanding how Kodi deals with extra fanart. Anyway I would just like to ask if there could be an information bar which can be configured to show how many movies have been watched and how many are still unwatched when looking at my list of movies. 

Thanks again for a great skin.
Reply
(2018-12-15, 22:25)mardukL Wrote:
(2018-12-15, 21:33)Rick32 Wrote: Ok. One last question than. I got it fixed by using another addon. Ik now using landscape images. I am missing clearlogo’s in the spotlight area now. (The big ones on the top left of the screen abjve plot, ratings etc etc) Is this because im using landscape images? How do i make them appear in the spotlight area?



Seem addon related, Provide full log pls. 
 Is the feature in the skins settings (menu entires) that lists several categories of backgrounds (tv shows in progress, movies in progress, etc, etc) coming from any dependency installed by the skin? If so, which one? Can it be used on other skins? I love it! possibly script.skin.helper.backgrounds?
Reply
(2018-12-16, 05:22)djhifi Wrote:
(2018-12-15, 22:25)mardukL Wrote:
(2018-12-15, 21:33)Rick32 Wrote: Ok. One last question than. I got it fixed by using another addon. Ik now using landscape images. I am missing clearlogo’s in the spotlight area now. (The big ones on the top left of the screen abjve plot, ratings etc etc) Is this because im using landscape images? How do i make them appear in the spotlight area?



Seem addon related, Provide full log pls. 
 Is the feature in the skins settings (menu entires) that lists several categories of backgrounds (tv shows in progress, movies in progress, etc, etc) coming from any dependency installed by the skin? If so, which one? Can it be used on other skins? I love it! possibly script.skin.helper.backgrounds?

Its skin related, here with help of skinhelper., but should be possible without.

I know some skins use that too. (Rotating fanrt background)
https://kodi.wiki/view/MultiImage_Control

Its a "multiimage" control in generell.

Here is how titan use it
xml:

<control type="multiimage">
<visible>!Skin.HasSetting(FanArtViewShowInfo)</visible>
<right>10</right>
<top>10</top>
<width>1900</width>
<height>1055</height>
<imagepath background="true">$VAR[backgroundVar]</imagepath>
<aspectratio>scale</aspectratio>
<fadetime>200</fadetime>
<include>fanartSpeed</include>
<randomize>true</randomize>
<loop>yes</loop>
</control>


<variable name="backgroundVar">

<value condition="[Window.IsActive(LoginScreen.xml) | Window.IsActive(StartUp.xml)] + Skin.String(LoginBackground)">$INFO[Skin.String(LoginBackground)]</value>
<!-- animated fanart background -->
<value condition="!String.IsEmpty(Window(home).Property(SkinHelper.ListItem.Art.AnimatedFanArt)) + Skin.HasSetting(AnimatedFanart)">$INFO[Window(home).Property(SkinHelper.ListItem.Art.AnimatedFanArt)]</value>
<!-- extrafanart background -->
<value condition="Control.IsVisible(99005) + !String.IsEmpty(Control.GetLabel(99005))">$INFO[Control.GetLabel(99005)]</value>
<!-- normal fanart background -->
<value condition="Control.IsVisible(99006) + !String.IsEmpty(Control.GetLabel(99006))">$INFO[Control.GetLabel(99006)]</value>
<!-- conditional background override -->
<value condition="!String.IsEmpty(Window(home).Property(SkinHelper.ConditionalBackground))">$INFO[Window(home).Property(SkinHelper.ConditionalBackground)]</value>
<!-- weather fanart -->
<value condition="Window.IsActive(MyWeather.xml)">$INFO[Skin.String(WeatherFanArtPack.path)]$INFO[Window(Weather).Property(Current.fanartCode)]$INFO[Skin.String(WeatherFanArtPack.ext)]</value>

<!-- section backgrounds when skinshortcuts dialog active -->
<value condition="Skin.HasSetting(UseSectionBackground) + !String.IsEmpty(Container(211).ListItem.Property(Background))">$INFO[Container(211).ListItem.Property(Background)]</value>

<!-- section backgrounds when home active -->
<value condition="Skin.HasSetting(UseSectionBackground) + !String.IsEmpty(Container(4444).ListItem.Property(Background)) + Control.HasFocus(4444)">$INFO[Container(4444).ListItem.Property(Background)]</value>
<value condition="Skin.HasSetting(UseSectionBackground) + !String.IsEmpty(Container(300).ListItem.Property(Background)) + !String.Contains(Container(300).ListItem.Property(Background),widgetfanart)">$INFO[Container(300).ListItem.Property(Background)]</value>

<!-- section background when home not active -->
<value condition="Skin.HasSetting(UseSectionBackground) + !String.IsEmpty(Window(home).Property(SectionBackground)) + !Window.IsActive(script-skinshortcuts.xml) + !Window.IsActive(home)">$INFO[Window(home).Property(SectionBackground)]</value>

<!-- global background -->
<value condition="String.Contains(Skin.String(CustomBackgroundSetting),VAR)">$VAR[CustomBackgroundSetting]</value>
<value condition="Skin.String(CustomBackgroundSetting)">$INFO[Skin.String(CustomBackgroundSetting)]</value>
</variable>




<include name="extraFanartBackground">
<control type="multiimage" id="99005">
<left>-1</left>
<top>-1</top>
<width>1</width>
<height>1</height>
<imagepath background="true">$VAR[extraFanartBackground]</imagepath>
<aspectratio>scale</aspectratio>
<include condition="skin.string(extrafanartdelay, 6)">fanartSpeed6</include>
<include condition="skin.string(extrafanartdelay, 5)">fanartSpeed5</include>
<include condition="skin.string(extrafanartdelay, 8)">fanartSpeed8</include>
<include condition="skin.string(extrafanartdelay, 10)">fanartSpeed10</include>
<include condition="skin.string(extrafanartdelay, 15)">fanartSpeed15</include>
<include condition="skin.string(extrafanartdelay, 20)">fanartSpeed20</include>
<include condition="skin.string(extrafanartdelay, 30)">fanartSpeed30</include>
<include condition="skin.string(extrafanartdelay, 60)">fanartSpeed60</include>
<include condition="Window.IsMedia">disabledFanart</include>
<include condition="Window.IsMedia">disabledExtraFanart</include>
<randomize>true</randomize>
<loop>yes</loop>
<!-- general visibility conditions -->
<visible>Skin.HasSetting(SkinHelper.EnableExtraFanart)</visible>
<visible>
[Window.IsActive(Home) + [Control.HasFocus(77777) | ControlGroup(77777).HasFocus() | Window.IsActive(DialogVideoInfo.xml)] + !String.IsEmpty(Window(Home).Property(SkinHelper.ListItem.Art.ExtraFanArt))] |
[Container.Content(Genres) + Skin.String(moviegenrefanart.path) + !String.IsEmpty(ListItem.label) + !String.IsEqual(ListItem.label,..)] |
[Window.IsMedia + !String.IsEmpty(Window(Home).Property(SkinHelper.ListItem.Art.ExtraFanArt))]
</visible>
</control>
</include>
Skins |  Titan M O D   •   S W A N (WIP)
Reply
(2018-12-16, 02:25)E net Wrote: Hi

As I said before my fan art rotating issues were caused by not fully understanding how Kodi deals with extra fanart. Anyway I would just like to ask if there could be an information bar which can be configured to show how many movies have been watched and how many are still unwatched when looking at my list of movies. 

Thanks again for a great skin.

Extra fanart, and rotate is a skin thing, so i need to take a deeper look(at lesst for movie sets)

The watched / unwatched , could be implemented in header, but i think its already in...need to look next time.


edit: its in, 
dont wonder about the movie, im on phone to test stuff with a fake Mediathek

Image
Skins |  Titan M O D   •   S W A N (WIP)
Reply
Yes the movie set one seems to be more difficult to get working reliably. But anyway as I said it would be nice to see on the movie lists how many aye watched and unwatched.

Thanks
Reply
(2018-12-16, 16:20)E net Wrote: Yes the movie set one seems to be more difficult to get working reliably. But anyway as I said it would be nice to see on the movie lists how many aye watched and unwatched.

Thanks

It' in the header already
Image

or what do you mean?

And seperate, there are watched,unwatched,progress overlays on the items itself.
Skins |  Titan M O D   •   S W A N (WIP)
Reply
Not on the Netflix movies list it isn't.
Reply
(2018-12-16, 17:04)mardukL Wrote:
(2018-12-16, 16:20)E net Wrote: Yes the movie set one seems to be more difficult to get working reliably. But anyway as I said it would be nice to see on the movie lists how many aye watched and unwatched.

Thanks

It' in the header already
Image

or what do you mean?

And seperate, there are watched,unwatched,progress overlays on the items itself. 
The Netflix movies list does not have a header.
Reply
(2018-12-17, 00:26)E net Wrote:
(2018-12-16, 17:04)mardukL Wrote:
(2018-12-16, 16:20)E net Wrote: Yes the movie set one seems to be more difficult to get working reliably. But anyway as I said it would be nice to see on the movie lists how many aye watched and unwatched.

Thanks

It' in the header already
Image

or what do you mean?

And seperate, there are watched,unwatched,progress overlays on the items itself. 
The Netflix movies list does not have a header.

Ok, you need to be more spefific next time.
I decide to have the header not visible for them in the following viewtypes
(Fanart - if info is off ; netflix viewtypes ; and 3 in 1)

Because it doesnt really fit/look acceptable there.

I think about an option for it sometime.
Skins |  Titan M O D   •   S W A N (WIP)
Reply
(2018-12-17, 12:05)mardukL Wrote:
(2018-12-17, 00:26)E net Wrote:
(2018-12-16, 17:04)mardukL Wrote: It' in the header already
Image

or what do you mean?

And seperate, there are watched,unwatched,progress overlays on the items itself. 
The Netflix movies list does not have a header.   

Ok, you need to be more spefific next time.
I decide to have the header not visible for them in the following viewtypes
(Fanart - if info is off ; netflix viewtypes ; and 3 in 1)

Because it doesnt really fit/look acceptable there.

I think about an option for it sometime.   
But I'm pretty certain I've seen it on Logo and/or Fanart without info being on. Your header is quite thick. If there was a smaller and thinner version with just the watched and un-watched numbers then that might work for Netflix? 

Thanks.
Reply
  • 1
  • 39
  • 40
  • 41(current)
  • 42
  • 43
  • 204

Logout Mark Read Team Forum Stats Members Help
Titan M O D ( last Updated 19-12-2019)15