Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
  • 1
  • 412
  • 413
  • 414(current)
  • 415
  • 416
  • 418
Arctic: Zephyr - Reloaded
(2024-08-27, 20:42)dermaik Wrote: I have no problems with Arctic: Zephyr - Reloaded.

For your own customizations you should deal with the code.

this feautre ends in Lists is:
$LOCALIZE[31013] $INFO[ListItem.EndTime]

$INFO[VideoPlayer.Time] is for videos that run in the player.

In the "Poster Wall" skin can you please help and guide me on which line i should add the $LOCALIZE[31013] $INFO[ListItem.EndTime] ?

I prefer to be after the last icon of the duration. 

Image

if not possible due to lines or width on another row down the title or something
Image
Reply
Image

Can be found in the Includes_Furniture.xml

<include name="Furniture_Flags_Include">

from line 623 to 1075 for white icons
from line 1077 to 1538 for colored icons

Can then be seen in every view.
buy me a beer
Reply
(2024-08-28, 13:55)dermaik Wrote: Image

Can be found in the Includes_Furniture.xml

<include name="Furniture_Flags_Include">

from line 623 to 1075 for white icons
from line 1077 to 1538 for colored icons

Can then be seen in every view.
PERFECT thank you so much !!!!!!

Image


Last one i promise ,it is possible to help me with one other easy thing i assume since a used to have it on another skin after editing the xml at one point and changing the includes.xml and replacing the  $INFO[Player.Duration(hh:mm : ss) of the OSD with the $INFO[VideoPlayer.Duration] instead of the total runtime (57:38) to have the remaining time. For example belowe it should say 07:38  /  50:00 and decreasing on every second (not in red is just for focus).

Image
Image
Reply
VideoPlayer.Time - Current time in movie
VideoPlayer.TimeRemaining - Current remaining time in movie
VideoPlayer.Duration - Length of current movie

https://kodi.wiki/view/InfoLabels#ListItem

You can search for $INFO[Player.Duration in Includes_OSD.xml, but it's not that easy.
You have 3 seekbar. 1 normal (standart) 2 new (reloaded) 3 side
buy me a beer
Reply
(2024-08-28, 15:27)dermaik Wrote: VideoPlayer.Time - Current time in movie
VideoPlayer.TimeRemaining - Current remaining time in movie
VideoPlayer.Duration - Length of current movie

https://kodi.wiki/view/InfoLabels#ListItem

You can search for $INFO[Player.Duration in Includes_OSD.xml, but it's not that easy.
You have 3 seekbar. 1 normal (standart) 2 new (reloaded) 3 side
easy, done !!!

Image

ok we are rolling now, lets finish with my last one and then i'm gone after i buy you a beer !!!

Where do i add this info ??

Image
Image
Reply
Includes_Furniture.xml

From line 2495, each line represents different content and different pages. Movies/home should be 2504.
buy me a beer
Reply
(2024-08-28, 17:46)dermaik Wrote: Includes_Furniture.xml

From line 2495, each line represents different content and different pages. Movies/home should be 2504.

You are awesome and very helpfull. Thank  you very much for your patience and guide!

I added it

Image

I even remove the total number of episodes watched which i hated!

Image

Many thanks again.
-Vassilis
Image
Reply
(2024-08-28, 13:55)dermaik Wrote: Image

Can be found in the Includes_Furniture.xml

<include name="Furniture_Flags_Include">

from line 623 to 1075 for white icons
from line 1077 to 1538 for colored icons

Can then be seen in every view.

Sorry just a follow-up on that, even though on the furniture on the movies the "Feature ends" apear, on the episodes view using "Fanfart Fix V2 Episodes" does not appear. is another .xml for the furniture shows or a different line on that ?

Image
Image
Reply
Then your code is incorrect.

Image
buy me a beer
Reply
(2024-08-29, 13:44)dermaik Wrote: Then your code is incorrect.

Image

Two things i notice from your picture and mine you ALSO have the 21M with the duration icon (i also dont have the IMDB score although i see the stars and have it on the episode or movie), i do not have that! the duration is only displayed on the top like yours is also displayed there.
And my code is write after duration, so maybe there is sometihng missing from an option to the skin (a checkbox i missied?)

It starts on 1328 line
Code:

<control type="label" description="FeatureEnds">
                <width>auto</width>
                <centertop>50%</centertop>
                <height>64</height>
                <align>left</align>
                <aligny>center</aligny>
                <label>  •  $LOCALIZE[31013] $INFO[ListItem.EndTime]  </label>
                <font>Flag</font>
                <textcolor>$VAR[ColorHighlight]</textcolor>
                <visible>!String.IsEqual(ListItem.DBType,tvshow) + !String.IsEmpty(ListItem.Duration(mins)) + [Control.IsVisible(500) | Control.IsVisible(53) | Control.IsVisible(52) | Control.IsVisible(55)]</visible>
            </control>

Enjoy 🍻
Image
Reply
your <visible> is is wrong. You know what you're doing? Fanart Fix V2 Episodes is 522
<visible>!String.IsEqual(ListItem.DBType,tvshow) + !String.IsEmpty(ListItem.Duration(mins)) + [Control.IsVisible(500) | Control.IsVisible(53) | Control.IsVisible(52) | Control.IsVisible(55) | Control.IsVisible(522)]</visible>

The IMDB score come from TMDbHelper. Can be selected in the skinsettings.
buy me a beer
Reply
(2024-08-29, 17:25)dermaik Wrote: your <visible> is is wrong. You know what you're doing? Fanart Fix V2 Episodes is 522
<visible>!String.IsEqual(ListItem.DBType,tvshow) + !String.IsEmpty(ListItem.Duration(mins)) + [Control.IsVisible(500) | Control.IsVisible(53) | Control.IsVisible(52) | Control.IsVisible(55) | Control.IsVisible(522)]</visible>

The IMDB score come from TMDbHelper. Can be selected in the skinsettings.

Yes clearly i do not know what i'm doing, i'm just trying to make a logic out of it and i'm sorry about that. 
But i found the strings.po also !

So i add a new entries and change the <control> in the furniture.xml and now it looks better, and it is distinguished!

Image

Image

Thanks Again!
Image
Reply
I can't really do that either.
Learning by doing. That's how I learned.
buy me a beer
Reply
Everything is ticked for Metacritic/Tomatoes. It used to work a few months ago then stopped. IMDB Top 250 is working.
Reply
i want to add a new icon (.png) i see there are in flags directory inside media from the github but my directory is empty, no flags
and searching for time.png only brings the furniture.xml not the path of the icon.

Image

ok found it, just i created i "custom" folder and /custom/calendar.png as an entry, it worked
Image
Reply
  • 1
  • 412
  • 413
  • 414(current)
  • 415
  • 416
  • 418

Logout Mark Read Team Forum Stats Members Help
Arctic: Zephyr - Reloaded11