Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
  • 1
  • 258
  • 259
  • 260(current)
  • 261
  • 262
  • 418
Arctic: Zephyr - Reloaded
(2021-10-11, 19:37)stovies Wrote: y film ratings are showing as Asian rather than UK.  I'm not sure what settings to change in order for them to be correct.  They are stored in the nfo as 'United Kingdom:XX"  Could that be the problem?

The skin uses the infolabel ListItem.mpaa. Please do the follwing, so we can see, whats going on: 

- enable extended debugging in skin settings -> arctic zephyr reloaded
- select a movie that has wrong ratings, open the dialogvideoinfo and
- make a screenshot to get smething like this:

Image

With this information I can see which png the infolabel is associated with.
Reply
(2021-09-12, 17:13)migueldc Wrote: I also found a few things to improve in the flag scraping algorithms in Includes.xml :

I am using TinyMediaManager. It allows to put a "." inbetween all flags (HDR, DTS, ATMOS, etc...), but the current logic misses a few things :

1) TMM makes a distinction between "EAC3 ATMOS" and "TrueHD ATMOS, so it would be nice if the skin did this too. At the very least, we cannot just assume all atmos flags will be preceded with a dot. So, I changed the xml a bit to :
   <expression name="IsAudioCodecATMOS">
        String.Contains(ListItem.FileNameAndPath,atmos.) | String.Contains(ListItem.FileNameAndPath,atmos-)
        | [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,atmos.) | String.Contains(Player.FileNameAndPath,atmos-)]]
    </expression>


2) HDR10+ is a bit trickier. TMM exports them as "HDR10+" while we assume here it is "HDR10Plus"
     Replacing them with "HDR10+" in the xml does not work as the + sign is not recognized inside a string. Maybe there is a workaround ?

It would be nice if TMM could configure the output labels, but apperently it doesn't, so I am looking now at the skin side.

Hi, I'm facing the same issue. Would be nice if the skin differentiated between these two Atmos codecs. Anyway, I've searched for the xml you altered but can't seem to find it. Which xml is it exactly?
Reply
(2021-10-06, 19:53)beatmasterrs Wrote:
(2021-10-06, 17:36)ixalthim Wrote: Can the PVR be changed so that it shows show art instead of station ID's (like ABC, CBS, etc). 

Here is a picture of Arctic Zephyr Reloaded:

and here is a picture of what I was hoping to get (from a different skin):

Thanks for the consideration!!

Please test this version here: https://github.com/beatmasterRS/skin.arc...atch-3.zip
Does this work for timers only or also other pvr widgets (like last played channels, ...)?
Reply
(2021-10-11, 20:22)kalle2000 Wrote:
(2021-10-06, 19:53)beatmasterrs Wrote:
(2021-10-06, 17:36)ixalthim Wrote: Can the PVR be changed so that it shows show art instead of station ID's (like ABC, CBS, etc). 

Here is a picture of Arctic Zephyr Reloaded:

and here is a picture of what I was hoping to get (from a different skin):

Thanks for the consideration!!

Please test this version here: https://github.com/beatmasterRS/skin.arc...atch-3.zip
Does this work for timers only or also other pvr widgets (like last played channels, ...)?

Currently yes, as I am not yet sure which behavior would be best...
Reply
(2021-10-11, 20:11)Archimedes Wrote:
(2021-09-12, 17:13)migueldc Wrote: I also found a few things to improve in the flag scraping algorithms in Includes.xml :

I am using TinyMediaManager. It allows to put a "." inbetween all flags (HDR, DTS, ATMOS, etc...), but the current logic misses a few things :

1) TMM makes a distinction between "EAC3 ATMOS" and "TrueHD ATMOS, so it would be nice if the skin did this too. At the very least, we cannot just assume all atmos flags will be preceded with a dot. So, I changed the xml a bit to :
   <expression name="IsAudioCodecATMOS">
        String.Contains(ListItem.FileNameAndPath,atmos.) | String.Contains(ListItem.FileNameAndPath,atmos-)
        | [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,atmos.) | String.Contains(Player.FileNameAndPath,atmos-)]]
    </expression>


2) HDR10+ is a bit trickier. TMM exports them as "HDR10+" while we assume here it is "HDR10Plus"
     Replacing them with "HDR10+" in the xml does not work as the + sign is not recognized inside a string. Maybe there is a workaround ?

It would be nice if TMM could configure the output labels, but apperently it doesn't, so I am looking now at the skin side.

Hi, I'm facing the same issue. Would be nice if the skin differentiated between these two Atmos codecs. Anyway, I've searched for the xml you altered but can't seem to find it. Which xml is it exactly?

The releated xmls are includes.xml and includes_furniture.xml Smile
Reply
(2021-10-11, 21:05)beatmasterrs Wrote:
(2021-10-11, 20:22)kalle2000 Wrote:
(2021-10-06, 19:53)beatmasterrs Wrote: Please test this version here: https://github.com/beatmasterRS/skin.arc...atch-3.zip
Does this work for timers only or also other pvr widgets (like last played channels, ...)?

Currently yes, as I am not yet sure which behavior would be best...
Looking forward to seeing this also for the other pvr widgets (as this feature is 1 out of 2 reason why I still have to use skin helper widgets)
Reply
Wink 
(2021-10-11, 21:07)beatmasterrs Wrote:
(2021-10-11, 20:11)Archimedes Wrote:
(2021-09-12, 17:13)migueldc Wrote: I also found a few things to improve in the flag scraping algorithms in Includes.xml :

I am using TinyMediaManager. It allows to put a "." inbetween all flags (HDR, DTS, ATMOS, etc...), but the current logic misses a few things :

1) TMM makes a distinction between "EAC3 ATMOS" and "TrueHD ATMOS, so it would be nice if the skin did this too. At the very least, we cannot just assume all atmos flags will be preceded with a dot. So, I changed the xml a bit to :
   <expression name="IsAudioCodecATMOS">
        String.Contains(ListItem.FileNameAndPath,atmos.) | String.Contains(ListItem.FileNameAndPath,atmos-)
        | [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,atmos.) | String.Contains(Player.FileNameAndPath,atmos-)]]
    </expression>


2) HDR10+ is a bit trickier. TMM exports them as "HDR10+" while we assume here it is "HDR10Plus"
     Replacing them with "HDR10+" in the xml does not work as the + sign is not recognized inside a string. Maybe there is a workaround ?

It would be nice if TMM could configure the output labels, but apperently it doesn't, so I am looking now at the skin side.

Hi, I'm facing the same issue. Would be nice if the skin differentiated between these two Atmos codecs. Anyway, I've searched for the xml you altered but can't seem to find it. Which xml is it exactly?

The releated xmls are includes.xml and includes_furniture.xml Smile

Thanks! I have edited Includes.xml and my Atmos icons now show up correctly!Smile
I've also renamed my files to includes "dv" in the title so the Dolby Vision title shows up. Gotta have all the correct icons, right? Nod
Have not touched Includes_furniture.xml so I'm wondering what you've changed in that xml?
Reply
(2021-10-11, 21:53)Archimedes Wrote: Have not touched Includes_furniture.xml so I'm wondering what you've changed in that xml?

I have nothing changed. Expressions are located in includes.xml and image controls are located in includes_furniture.xml
Reply
Hi all just installed kodi matrix 19.2 and would like to know the best way to install this skin as 

repo : repository.matrix.beatmasterrs-1.1 says its version 1.1.0
local: skin.arctic.zephyr.mod-master_2 says its version 1.1.59 

would like the right plugins installed to to make sure the skin fully works as intended

thanks
Reply
(2021-10-12, 15:25)meridius Wrote: Hi all just installed kodi matrix 19.2 and would like to know the best way to install this skin as 

repo : repository.matrix.beatmasterrs-1.1 says its version 1.1.0
local: skin.arctic.zephyr.mod-master_2 says its version 1.1.59 

would like the right plugins installed to to make sure the skin fully works as intended

thanks

Note: There is a difference between a repository and an addon/skin. 

The best way is to install the skin from the official Kodi repo, so that all required dependencies will be installed automatically. Optional addons can usually be installed, if the skin asks for them, or via "skin settings" -> "supported addons" (except for the autocolors addon by @semool, as this is not in the official repo). Autocolors addon is available in the beatmasterrs matrix repo. The most recent version of "Arctic: Zephyr - Reloaded" is 1.1.59 Smile
Reply
(2021-10-12, 15:44)beatmasterrs Wrote:
(2021-10-12, 15:25)meridius Wrote: Hi all just installed kodi matrix 19.2 and would like to know the best way to install this skin as 

repo : repository.matrix.beatmasterrs-1.1 says its version 1.1.0
local: skin.arctic.zephyr.mod-master_2 says its version 1.1.59 

would like the right plugins installed to to make sure the skin fully works as intended

thanks

Note: There is a difference between a repository and an addon/skin. 

The best way is to install the skin from the official Kodi repo, so that all required dependencies will be installed automatically. Optional addons can usually be installed, if the skin asks for them, or via "skin settings" -> "supported addons" (except for the autocolors addon by @semool, as this is not in the official repo). Autocolors addon is available in the beatmasterrs matrix repo. The most recent version of "Arctic: Zephyr - Reloaded" is 1.1.59 Smile

Thanks for that, did not know the repo took you to another level of install to see the right version. the install must be V1.1 and the skin version 1.59.  also what is Autocolors addon ?

thanks
Reply
(2021-10-12, 16:22)meridius Wrote: also what is Autocolors addon ?

thanks

"This little Addon switch the Skin Color Theme based on Time

The Time can set manualy or you can set your Location and the Theme will switch based on sunset/sunrise."
Reply
(2021-10-12, 16:32)beatmasterrs Wrote:
(2021-10-12, 16:22)meridius Wrote: also what is Autocolors addon ?

thanks

"This little Addon switch the Skin Color Theme based on Time

The Time can set manualy or you can set your Location and the Theme will switch based on sunset/sunrise."
ah ok thanks 

cannot wait to check out the skin
Reply
(2021-10-11, 20:01)beatmasterrs Wrote: With this information I can see which png the infolabel is associated with.

Thank you.  Picture at the following link (I couldn't copy it into this reply for some reason).  All helped appreciated.

Imagehttps://imgur.com/a/fpXgai6Image
Reply
(2021-10-12, 19:34)stovies Wrote:
(2021-10-11, 20:01)beatmasterrs Wrote: With this information I can see which png the infolabel is associated with.

Thank you.  Picture at the following link (I couldn't copy it into this reply for some reason).  All helped appreciated.

Could you please test this version here? https://github.com/beatmasterRS/skin.arc...atch-1.zip

Btw: which version of this skin do you use and which icons are the correct ones?
Reply
  • 1
  • 258
  • 259
  • 260(current)
  • 261
  • 262
  • 418

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