• 1
  • 5
  • 6
  • 7(current)
  • 8
  • 9
  • 15
Important Skinners: Please test PR13754
#91
(2018-04-22, 00:29)Wanilton Wrote: @ksooo 

I send private message, thanks.


Firstly, I don't want to get private messages for non-private information.

Secondly, you did not answer my question, where to download the skin that makes trouble.
Reply
#92
@ksooo

Let me try to explain that isue with container...when skiner set container without id, and use global from list in focus.
windows x86 Kodi

same image in focus , $INFO[Container.ListItem.Label] as $INFO[Container.ListItem.Label2]
Label is on image in bootom bar, outside from list Smile

https://github.com/Angelinas1/Aeonmq6-Le...o.xml#L867

version: KodiSetup-20180413-294d6a27-master-x86
$INFO[Container.ListItem.Label] = "Owen Wilson"
$INFO[Container.ListItem.Label2] = "Lightning McQueen (voice)"
Image

version: KodiSetup-20180421-121cd5ce-master-x86
$INFO[Container.ListItem.Label] = "Automobili 2" - name of evant in PVR
$INFO[Container.ListItem.Label2] = "Trkačka zvezda Munja...."  - plot for PVR

Image

Same isue is https://github.com/Angelinas1/Aeonmq6-Le...o.xml#L872
Always show
$INFO[Container.ListItem.Label] = "Automobili 2" - name of evant in PVR
Need to be like from version 13.4

version: KodiSetup-20180413-294d6a27-master-x86
Image
version: KodiSetup-20180421-121cd5ce-master-x86
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#93
@Angelinas I don't have any PVR recordings with cast data. Can't you provide something that demonstrates the problem with normal movies?
Reply
#94
For test you need to add in skin.estouchy just one code and to see what is isue.
This code doesent use def. skin and can't show example from github.

You can try to do similar, need to add
Code:
 - $INFO[Container.ListItem.Label]

in line
https://github.com/xbmc/xbmc/blob/master...fo.xml#L25
Code:
<label>$INFO[Listitem.Title] - $INFO[Container.ListItem.Label]</label>

resulats are similar like mine isue with PVR
version: KodiSetup-20180413-294d6a27-master-x86
Image
version: KodiSetup-20180421-121cd5ce-master-x86
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
#95
I seem to have had a problem where skin had a number of occurrences of boolean  !String.IsEqual(ListItem.PercentPlayed,0) which used to work but now ListItem.PercentPlayed is empty when it's 0%.  Not a big deal as ListItem.IsResumable accomplishes the same thing AFAIK.

scott s.
.
Reply
#96
(2018-04-22, 23:58)scott967 Wrote: I seem to have had a problem where skin had a number of occurrences of boolean  !String.IsEqual(ListItem.PercentPlayed,0) which used to work but now ListItem.PercentPlayed is empty when it's 0%.  Not a big deal as ListItem.IsResumable accomplishes the same thing AFAIK.

scott s.
.


You are comparing two integers with a string compare? And that actually did work? I thought, we have Integer.Is* for this...

EDIT: Okay, my fault. Listitem.PercentPlayed can be both an int and a string, depending on the call context. I found the issue and will fix it the next days.
Reply
#97
(2018-04-23, 07:36)ksooo Wrote:
(2018-04-22, 23:58)scott967 Wrote: I seem to have had a problem where skin had a number of occurrences of boolean  !String.IsEqual(ListItem.PercentPlayed,0) which used to work but now ListItem.PercentPlayed is empty when it's 0%.  Not a big deal as ListItem.IsResumable accomplishes the same thing AFAIK.

scott s.
.


You are comparing two integers with a string compare? And that actually did work? I thought, we have Integer.Is* for this...

EDIT: Okay, my fault. Listitem.PercentPlayed can be both an int and a string, depending on the call context. I found the issue and will fix it the next days.


Should be fixed with next nightly build (April 24+).
Reply
#98
(2018-04-22, 21:37)Angelinas Wrote: For test you need to add in skin.estouchy just one code and to see what is isue.
This code doesent use def. skin and can't show example from github.

You can try to do similar, need to add
Code:
 - $INFO[Container.ListItem.Label]

in line
https://github.com/xbmc/xbmc/blob/master...fo.xml#L25
Code:
<label>$INFO[Listitem.Title] - $INFO[Container.ListItem.Label]</label>

resulats are similar like mine isue with PVR
version: KodiSetup-20180413-294d6a27-master-x86
Image
version: KodiSetup-20180421-121cd5ce-master-x86
Image 
 Container.Listitem.Label issue should be solved with next nightly build (April 24+).
Reply
#99
(2018-04-23, 18:09)ksooo Wrote:
(2018-04-23, 07:36)ksooo Wrote: You are comparing two integers with a string compare? And that actually did work? I thought, we have Integer.Is* for this...

EDIT: Okay, my fault. Listitem.PercentPlayed can be both an int and a string, depending on the call context. I found the issue and will fix it the next days. 


Should be fixed with next nightly build (April 24+).  
  
Thanks

scott s.
.
Reply
@ksooo using the build on the 24th, it's all right around here now. Thank you.
------------------------------------------------------

Want to know more about the skin? Liked my work and want contribute?
Visit my website
XBMC Brazilian Community Forum
By making a donation, please do not post in the forum, send me an email or PM, thank you.
Reply
Edit: Sorry, lost track of what I was using. This issue was not introduced in the test build. It's in the nightlies as well.

Problem in MyPlaylist.

ListItem.Title and MusicPlayer.Title give me the same thing which is ListItem.Label rather than the value of the currently selected song and playing song.

Makes every track appear to be playing with this code:
Code:
<control type="image" description="playing">
    <visible>Player.HasAudio</visible>
    <visible>String.IsEqual(ListItem.Title,MusicPlayer.Title)</visible>
    <texture>img/NowPlayingNF.png</texture>
</control>
Reply
(2018-04-26, 09:54)nonJon Wrote: Problem in MyPlaylist.

ListItem.Title and MusicPlayer.Title give me the same thing which is ListItem.Label rather than the value of the currently selected song and playing song.

Makes every track appear to be playing with this code:
Code:
<control type="image" description="playing">
    <visible>Player.HasAudio</visible>
    <visible>String.IsEqual(ListItem.Title,MusicPlayer.Title)</visible>
    <texture>img/NowPlayingNF.png</texture>
</control>

Did that work before April 13 Kodi nightly build?

Please tell me how I can reproduce this, best is to tell me a skin and to give me step by step instructions.
Reply
(2018-04-26, 10:17)ksooo Wrote: Did that work before April 13 Kodi nightly build?

It did not work prior to the 13th. You responded before I could finish my edit. Please disregard.
Reply
@ksooo

Sorry but now I found new bug, can you check ?
Code:
Player.IsInternetStream
Player InfoBooleans  now is broken always is "false".Some music addons doesen't work.

This was working before your changes.....
version: KodiSetup-20180413-294d6a27-master-x86 was OK

now with KodiSetup-20180425-d233545c-master-x86   ....broken
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
(2018-04-27, 23:41)Angelinas Wrote: @ksooo

Sorry but now I found new bug, can you check ?
Code:
Player.IsInternetStream
Player InfoBooleans  now is broken always is "false".Some music addons doesen't work.

This was working before your changes.....
version: KodiSetup-20180413-294d6a27-master-x86 was OK

now with KodiSetup-20180425-d233545c-master-x86   ....broken


Is it only isinternetstream or also other player bools?
Reply
  • 1
  • 5
  • 6
  • 7(current)
  • 8
  • 9
  • 15

Logout Mark Read Team Forum Stats Members Help
Skinners: Please test PR137540