Kodi Community Forum
Arctic: Zephyr 2 - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Arctic: Zephyr 2 (/showthread.php?tid=339791)



RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-17

(2019-07-17, 19:00)Prof Yaffle Wrote:
(2019-07-17, 17:11)omaramiromo Wrote: Hi.. how to use/ show the clearlogo.. currently using seren addons.. but the clearlogo not showing.. did i need any api or aomething.. or is it work by default.. i already keyin the fanart.tv personal api key.. but nothing happen..

@omaramiromo - please, no banned addons (wiki) here. I'll let this slide as you're trying to sort out a skin issue, but any thought that your problems are related to that addon and your post will get summarily removed.

Unless it is simply a matter of the user not enabling the option for clearlogos in skin settings, then it is definitely an addon issue.

In the library you use a local scraper or artwork beef to insert the url of the clearlogo into the library db. The library then passes this to the Art(clearlogo) infolabel which is used by the skin in a texture control positioned at the centre top of the screen.

There's simply nothing else to it. If the addon is not filling the Art(clearlogo) infolabel correctly then theres not much a skin can do about that.


RE: Arctic: Zephyr 2 - xPoro - 2019-07-18

Hey, how do I get rid of these random numbers on some shows?

https://i.imgur.com/qEXXoko.jpg

Thanks!


RE: Arctic: Zephyr 2 - Comma - 2019-07-18

(2019-07-18, 05:10)xPoro Wrote: Hey, how do I get rid of these random numbers on some shows?

https://i.imgur.com/qEXXoko.jpg

Thanks!
Settings > Skin Settings > Library > Watched indicators
But this will also remove the green watched icon on movies.


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-18

(2019-07-18, 05:10)xPoro Wrote: Hey, how do I get rid of these random numbers on some shows?

https://i.imgur.com/qEXXoko.jpg

Thanks!
They're not random numbers - they indicate how many unwatched episodes there are.


RE: Arctic: Zephyr 2 - NotYourAverageAl - 2019-07-18

(2019-07-16, 10:44)jurialmunkey Wrote:
(2019-07-16, 08:25)NotYourAverageAl Wrote: @jurialmunkey  have you had an issue with images ghosting like this? I haven't used fixed-width text menu style in a while but it was working then.

I'm running Libreelec on a rpi3, not sure if that's the issue. The bug happens when transitioning from a Movie Widget to Tv show widget or btwn the different movies, and during the auto transition briefly.. I'll try and recache and compress the cache images.



ImageImage

No this is very unusual and I haven't encountered it at all. There is a fade transition between background images, but that should be less than a second, not permanent!    
figured it out. it was smartredraw; if anyone ever has the same bright idea, I was getting this ghost effect bcause of it.
Image
Quote:2.11.5 smartredraw
Note: This is an experimental feature and you might face issues using it. So please be aware of that.
This new feature was introduced in Kodi 18 and if enabled, the GUI process call (and therefore the render call) is only done if anything has changed. The result will be a faster GUI and less load if Kodi plays a video
true: on
false: off (Default)
Example:
<gui>
      <smartredraw>true</smartredraw>
</gui> 



RE: Arctic: Zephyr 2 - Starmanrf - 2019-07-19

(2019-07-16, 17:43)Sjors125 Wrote:
(2019-07-15, 12:18)Starmanrf Wrote: Hiya,

Love the setup for the music player. Is there a way you could have the player draw clearlogo artwork from artist. I have a lot of compilation albums and the clearlogo seems to draw from the album data (Various Artists).
Image

Works fine when its an actual album from the artist so i assume it pulls the metadata from album info...

Image

Cheers, Keep up the great work!

Where do those colorful texts come from? Is that some kind of lyric, or just a picture? 

Its the CU Lyrics add on from the  Kodi Add on repository>Programs...


RE: Arctic: Zephyr 2 - beatmasterrs - 2019-07-19

(2019-07-15, 11:00)grokky Wrote: I'm not sure if this is specific to the skin, but I can't seem to get ratings (rotten tomatoes, metacritic etc) except imdb to cache by simplecache, or if they are cached, they are being refreshed every time kodi or the skin is reloaded. For example, if I scroll though movies the rating appear after a several second delay for each title. If I go back and look at previously browsed titles the ratings appear straight away. However! if I reboot/reload skin I'm back at square one, every title I need to wait several seconds for the ratings to be refreshed (except IMDB, which I think is my default rating). Is this correct behaviour or should the cache persist across Restarts? 

I've had the problem since the beginning, and it has really frustrated me.

Simplecache uses two methods for caching data: memory and database. Retreiving data from web services is delayed, but retreiving data from Cache, if there is data, shouldt not been delayed.
I debugged the script and some modules. As I understood it, the simplecache-script writes/caches the loaded webservice data into memory and into the database (simplecache.db) with timestamps. This all works correctly.
The only problem is that the cached data is not used. Here is a workaround/fix:

Simply replace the file in the script.module.metadatautils-addon folder with this one here

https://github.com/beatmasterRS/script.module.metadatautils/blob/master/lib/metadatautils.py, (commit)

Restart kodi for changes to take effect. Now caching is used and there is no delay for items, that are already in cache. Smile
Testet on Odroid C2 and Windows-PC Smile


RE: Arctic: Zephyr 2 - User 431881 - 2019-07-19

(2019-07-19, 21:01)beatmasterrs Wrote:
(2019-07-15, 11:00)grokky Wrote: I'm not sure if this is specific to the skin, but I can't seem to get ratings (rotten tomatoes, metacritic etc) except imdb to cache by simplecache, or if they are cached, they are being refreshed every time kodi or the skin is reloaded. For example, if I scroll though movies the rating appear after a several second delay for each title. If I go back and look at previously browsed titles the ratings appear straight away. However! if I reboot/reload skin I'm back at square one, every title I need to wait several seconds for the ratings to be refreshed (except IMDB, which I think is my default rating). Is this correct behaviour or should the cache persist across Restarts? 

I've had the problem since the beginning, and it has really frustrated me.

Simplecache uses two methods for caching data: memory and database. Retreiving data from web services is delayed, but retreiving data from Cache, if there is data, shouldt not been delayed.
I debugged the script and some modules. As I understood it, the simplecache-script writes/caches the loaded webservice data into memory and into the database (simplecache.db) with timestamps. This all works correctly.
The only problem is that the cached data is not used. Here is a workaround/fix:

Simply replace the file in the script.module.metadatautils-addon folder with this one here

https://github.com/beatmasterRS/script.module.metadatautils/blob/master/lib/metadatautils.py, (commit)

Restart kodi for changes to take effect. Now caching is used and there is no delay for items, that are already in cache. Smile
Testet on Odroid C2 and Windows-PC Smile 
Thank you for this, looking forward to testing it! Quick question: do cached ratings get refreshed periodically, and if so - how often? The ratings can change quite dramatically, especially for newer content.


RE: Arctic: Zephyr 2 - beatmasterrs - 2019-07-19

(2019-07-19, 23:00)RZR1988 Wrote: Thank you for this, looking forward to testing it! Quick question: do cached ratings get refreshed periodically, and if so - how often? The ratings can change quite dramatically, especially for newer content.  

You can set the value in
xml:
@use_cache()
f.e. https://github.com/beatmasterRS/script.module.metadatautils/blob/52a33c01a256b0f86c1fa88b4f9e1fd6db82f02f/lib/metadatautils.py#L94 to your needs. As in this example the duration is 90 days.


RE: Arctic: Zephyr 2 - User 431881 - 2019-07-19

(2019-07-19, 23:27)beatmasterrs Wrote:
(2019-07-19, 23:00)RZR1988 Wrote: Thank you for this, looking forward to testing it! Quick question: do cached ratings get refreshed periodically, and if so - how often? The ratings can change quite dramatically, especially for newer content.  

You can set the value in
xml:
@use_cache()
f.e. https://github.com/beatmasterRS/script.module.metadatautils/blob/52a33c01a256b0f86c1fa88b4f9e1fd6db82f02f/lib/metadatautils.py#L94 to your needs. As in this example the duration is 90 days. 
Thank you, much appreciated!


RE: Arctic: Zephyr 2 - Comma - 2019-07-20

What I love about this skin is it's beautiful and simple clean look I would rate it as my no.1 preferred skin, thanks @jurialmunkey 
Now with the latest update v0.9.40-alpha1 the beauty stops here there's simply way to much text going on it's like I'm about to read a book instead of browsing my movie library, I see it can be useful in some cases to have info about the content as NightFox89 designed it for but not movies and not for all content.
How I like to setup my home screens/widgets artwork is with poster ,landscape, poster, landscape, poster, landscape, I think it looks good and make use of all that artwork we have stored on the hdd, so I really hope you can make this a user choice.

Please don't hate me for the critic I just think it's a very drastic change to look of the skin, so I had to express my concern.  Wink

New:
Image

Old: A piece of art.
Image


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-20

@Comma - Sorry, I forgot to push a commit which enables the options to choose between the two styles of widget. Please see v0.9.40-alpha2

RE: Discart - Please search the thread before making requests, as I've already discussed the discart matter extensively.
The answer is no. You can see discart in the gallery section of the movie info dialog.


RE: Arctic: Zephyr 2 - Comma - 2019-07-20

Sorry about the discart request @jurialmunkey  you are right I didn't search the thread about it will do in the feature, I will search and read about it later and will respect you decision.

I'm very happy how you made the small icons a user choice and it is really cool how we can choose on every single widget and not all or none this makes it very customisable and something I will use for some widgets.  Smile


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-20

No worries! Smile

Sometimes it can be difficult to find things in the thread, so I don't mind if someone searched and missed something - it's just that the discart debate went on for quite a while and got fairly heated, so I'm keen to avoid having that whole discussion again.


RE: Arctic: Zephyr 2 - Comma - 2019-07-20

I edited my post above and removed the last image to not start debate again  Wink thanks.