Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 418
Arctic: Zephyr - Reloaded
#76
(2019-01-22, 11:46)kampfi Wrote: Im not testing, but this string is not working?
https://github.com/jurialmunkey/skin.arc...ge/Russian
 Now russian language is working, i've added a new default font. update is on Github. Smile

@buxtonlad i've added a link at first post Smile
Reply
#77
Ola @beatmasterrs
Thanks for working again, I was trying to create a repository pointing to your Git to always update directly and do not need to download to PC, do you have plans to launch one? Another thing is a source of the same original AZ?


Obrigado pelo trabalho novamente, estava tentando criar um reposositorio apontando para o seu Git para sempre atualizar direto do kodi e nao precisar baixar pelo PC, voce tem planos de lançar um ? Outra coisa a fonte é a mesma do AZ original ?
Reply
#78
i've added a link at first post Smile
[/quote]

Hi buddy @beatmasterrs Sent you a little something. 4FL759505R8506709

Thanks for your hard work.
Reply
#79
(2019-01-22, 16:56)buxtonlad Wrote: Hi buddy @beatmasterrs Sent you a little something. 4FL759505R8506709

Thanks for your hard work.

Thanks a lot Smile Smile
Reply
#80
Hi, would it be possible to add ClearLogo FanArts on Home Classic View right bottom corner ? I'll be willing to drop you a few bucks for it ! Thanks.
Reply
#81
(2019-01-22, 20:58)Rockafella83 Wrote: Hi, would it be possible to add ClearLogo FanArts on Home Classic View right bottom corner ? I'll be willing to drop you a few bucks for it ! Thanks.

You dont have to pay for features. I will think about it and see, what I can do for you Smile

@Castilho A repository is planned in the near future. I just have to understand how it works.
Reply
#82
(2019-01-22, 21:12)beatmasterrs Wrote:  

I'm trying to understand how it works I'm not a programmer I'm a graphic designer, so I can put the structure here for you to replicate
Xioami Mi Stick - Kodi 18.8
Libreelec 9.2.X - Kodi 18.8
Raspberry Pi 3
Reply
#83
(2019-01-22, 22:15)Castilho Wrote:
(2019-01-22, 21:12)beatmasterrs Wrote:  

I'm trying to understand how it works I'm not a programmer I'm a graphic designer, so I can put the structure here for you to replicate

That would be nice!
Reply
#84
I'll try to work on it on my side too. It is more complex because the way it relate to FanArt background work with widget on a hidden playlist in Includes_Home.xml here on line 2086;

xml:

<include name="HomeBackgroundPlaylist">
<control type="list" id="9988">
<description>hidden container for playlist background</description>
<posx>-20</posx>
<posy>-20</posy>
<width>1</width>
<height>1</height>
<visible>true</visible>
<onup>50</onup>
<ondown>50</ondown>
<onleft>50</onleft>
<onright>50</onright>
<autoscroll time="10000">true</autoscroll>
<itemlayout width="1" height="1">
</itemlayout>
<focusedlayout height="1" width="1">
</focusedlayout>
<content>$INFO[Container(300).ListItem.Property(backgroundPlaylist)]</content>
</control>
</include>

I tried to implement the way you do it for experimental feature but I wasn't able to yet to make it trought. Keep in mind I'm a newbee in Kodi Dev in General, not in Coding but I'm getting to it pretty fast.

I'll keep you posted if I found a correcte way to do it
Reply
#85
Got it; I used this as a variable. Just need to be place correctly depends on the view.

xml:

<value>$INFO[Container(301).ListItem.Art(clearlogo)]</value>
Reply
#86
Here we go, I've done 3 settings, centered, bottomLeft and bottomRight for Non-Vertical Home;

Includes_Home.xml (about line 4) -> Might have to check the transition, not completly right.
xml:

<include name="HomeClearLogo">
<!-- bottomLeft -->
<control type="image" description="clearlogo">
<include>Animation.FadeIn</include>
<top>500</top>
<left>125</left>
<width>275</width>
<aspectratio scalediffuse="true" align="left">keep</aspectratio>
<texture background="true">$VAR[ClearLogoHome]</texture>
<animation effect="fade" start="100" end="0" time="5000">VisibleChange</animation>
<animation effect="fade" start="0" end="0,250" time="150">WindowClose</animation>
</control>
<!-- bottomRight -->
<!-- <control type="image" description="clearlogo">
<include>Animation.FadeIn</include>
<bottom>250</bottom>
<right>75</right>
<width>275</width>
<height>100</height>
<aspectratio align="right">keep</aspectratio>
<texture background="true">$VAR[ClearLogoHome]</texture>
<animation effect="fade" start="100" end="0" time="5000">VisibleChange</animation>
<animation effect="fade" start="0" end="0,250" time="150">WindowClose</animation>
</control> -->
<!-- centered -->
<!-- <control type="image" description="clearlogo">
<include>Animation.FadeIn</include>
<centertop>50%</centertop>
<centerleft>50%</centerleft>
<width>475</width>
<aspectratio align="center">keep</aspectratio>
<texture background="true">$VAR[ClearLogoHome]</texture>
<animation effect="fade" start="100" end="0" time="5000">VisibleChange</animation>
<animation effect="fade" start="0" end="0,250" time="150">WindowClose</animation>
</control> -->
</include>

Includes.xml at the bottom completly;
xml:

    <variable name="ClearLogoHome">
        <value>$INFO[Container(301).ListItem.Art(clearlogo)]</value>
        <value condition="!String.IsEmpty(ListItem.Art(clearlogo))">$INFO[ListItem.Art(clearlogo)]</value>
<value condition="!String.IsEmpty(ListItem.Art(tvshow.clearlogo))">$INFO[ListItem.Art(tvshow.clearlogo)]</value>
<value condition="!String.IsEmpty(Container(9500).ListItem.Art(clearlogo))">$INFO[Container(9500).ListItem.Art(clearlogo)]</value>
<value condition="!String.IsEmpty(Container(9500).ListItem.Art(tvshow.clearlogo))">$INFO[Container(9500).ListItem.Art(tvshow.clearlogo)]</value>
</variable>
Reply
#87
By the way if you some help, I might have few hours here and there to offer. I'm studying in Computer Science in College and have also studied previously multimedia/graphic design.

I could share you in private on GitHub a few things / tweaks that I have add already on top of what you have done.

To my opinion, Artic Zephyr was and still is one of the best looking skin right now (Grid is also pretty nice) compare to any other skins available. No offense to any other devs who put their time in it but the bridge between the Code and the design is sometime hard to fill.

And to me, the UI is as important as the feature you implement in a program because design is a language on itself. If what you put forward isnt intuitive and respect a minimum of graphic design, it wont take off. Its the difference between Myspace and Facebook, how Apple force Google to improve drastically Android UI to keep up..

Anyway p.m me and I'll see what I can do.
Reply
#88
Question: How do I get get the extra-fanart working? I have installed artworkbeef and runned it, but it's only showing a single fanart poster. And I have checked the extra-fanart option.
Thanks
Reply
#89
(2019-01-22, 20:58)Rockafella83 Wrote: Hi, would it be possible to add ClearLogo FanArts on Home Classic View right bottom corner ? I'll be willing to drop you a few bucks for it ! Thanks.
 Thanks for your work Smile Can you post a screenshot/concept/example of what you mean?

ClrearLogo in this Position for example?
watch gallery

or am I getting something wrong?
Reply
#90
Yeah sure, I'll check this out at the of the afternoon (Montreal / Eastern Time) and add some screenshots.

I'll adapt it the best as I can based upon the current Home View used. I had mine the classic view without posters as you show on that message.

The problem is that there arent many place to put it based on users options checked for home screen. In your last screenshot, for example, if the weather is active top right corner, then it would be behind I guess. So it have to be adapted for all circonstances. As I said earlier, I use mine right now in classic view without posters as showed by your screenshot.
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 418

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