• 1
  • 145
  • 146
  • 147(current)
  • 148
  • 149
  • 759
Release Aeon Nox: SiLVO
yes i have placed ... the theme's and tested silvo music same thing... and i get a popup skin shotscuts can not build up home menu or somting like this...
don't know whats up with skin shortcuts... it not in the kodi repo anymore :/
Reply
i think you ask in the skin shortcuts thread !!!
http://forum.kodi.tv/showthread.php?tid=178294&page=38
Reply
What do you need to get the labels on the rolling disc in the showcase view. The disc labels show up in the right list view but not when the disc is rolling in the showcase view.

Thanks
Reply
Love the new colored PCM media flag! Thanks for adding it!
Reply
Sweet... new views for Advanced Launcher!

Dammit. Now I have to install Isengard... was happy that everything was working so well in Helix. First world problems. Big Grin

Really, really appreciate all the time and effort you put into the skin mikesilvo164 -especially your willingness to tweak and add to your vision of the skin for those of us less code-y users!

Looks like I'll be upgrading this weekend.
Reply
hello can anyone tell me if i can put the view from bell skin .

the view is the shelf in 3d??
Reply
(2015-07-24, 17:48)Warez Wrote: Mike just instal your skin from git:
http://imgur.com/a/JCWyb

Don't konw whats up?

How can i fix this?

Looks like missing textures. Perhaps missing some thing when downloading or extracting Huh

(2015-07-24, 18:52)Warez Wrote: yes i have placed ... the theme's and tested silvo music same thing... and i get a popup skin shotscuts can not build up home menu or somting like this...
don't know whats up with skin shortcuts... it not in the kodi repo anymore :/

Are you using Isengard? Try checking for updates in the addon manager, I think that is how you force refresh now.

(2015-07-24, 21:08)AL8782 Wrote: What do you need to get the labels on the rolling disc in the showcase view. The disc labels show up in the right list view but not when the disc is rolling in the showcase view.

Thanks

I only added it in RightList cause it still is WIP and I will add it to other views in the future.

(2015-07-24, 23:45)andrezpt Wrote: hello can anyone tell me if i can put the view from bell skin .

the view is the shelf in 3d??

Not without altering the xml to work with this skin. Then adding it to includes, myvideonav, the view selection dialog, adding and positioning any images like mediaflags. Not possible to just add the one file without some modification spread throughout a few other of the skin xmls.
Reply
(2015-07-24, 01:03)manfeed Wrote: Hi Mike! Great work! I see you're on fire, adding more and more things! Nod Thanks...

I share your feelings about relying on addons, but at the same time I really loved the idea of seeing the movie duration in hours-minutes, so I tried to implement that through variables.xml and finally I got it! The code is this...

Code:
<variable name="Durat_min">
        <value condition="[SubString(ListItem.Duration,1,Right)]">1 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,2,Right)]">2 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,3,Right)]">3 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,4,Right)]">4 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,5,Right)]">5 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,6,Right)]">6 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,7,Right)]">7 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,8,Right)]">8 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,9,Right)]">9 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,0,Right)    + !StringCompare(ListItem.Duration,60) + !StringCompare(ListItem.Duration,120) + !StringCompare(ListItem.Duration,180) + !StringCompare(ListItem.Duration,240)]">0 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value> </value>
    </variable>
    <variable name="Durat_mov">
        <value condition="[!IntegerGreaterThan(ListItem.Duration,60)]">$INFO[ListItem.Duration,, $LOCALIZE[12391]]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,6,Left)]">1 h $VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,7,Left)]">1 h 1$VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,8,Left)]">1 h 2$VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,9,Left)]">1 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,10,Left)]">1 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,11,Left)]">1 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,12,Left)]">2 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,13,Left)]">2 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,14,Left)]">2 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,15,Left)]">2 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,16,Left)]">2 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,17,Left)]">2 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,18,Left)]">3 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,19,Left)]">3 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,20,Left)]">3 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,21,Left)]">3 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,22,Left)]">3 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,23,Left)]">3 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,24,Left)]">4 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,25,Left)]">4 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,26,Left)]">4 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,27,Left)]">4 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,28,Left)]">4 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,29,Left)]">4 h 5$VAR[Durat_min]</value>
        <value>$INFO[ListItem.Duration] [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
    </variable>

...it returns the movie duration in the variable "Durat_mov" in the format "1 h 53 minutes" and it works up to a duration of 5 hours (more than enough, I think Wink) I have checked it in my skin and it works flawlessly... maybe you'd like to have a look at it...

Regards

I was wondering if it isn't a problem could you explain how you implemented this. I looked in the variable.xml and couldn't figure out where to insert the new code.

Thanks.
Reply
I have added MyFlix view to both Isengard and mr.v_widgets branches.

----------------------------------------------------------------------------------------------

(2015-07-20, 17:10)bsoriano Wrote: Good morning Mike,

Would you be willing to look at BigNoids master branch of Nox 5, which is being dveloped for Kodi 16 already, and do something similar (perhaps in a new branch) for Nox Silvo? Two reasons for my asking:

1. As of today, the Kodi nightlies are based on Kodi 16, not Isengard.
2. In my testing of Nox Silvo with Kodi 16, there is a problem with side menus (like when you want to change viewtype options), in which the keyboard becomes unresponsive and some of the menu remains on the screen even after you leave the menu. Latest Nox 5 from GitHub does not exhibit this issue.

Thank you for considering my request.

Regards,

Bart

(2015-07-23, 21:52)Warez Wrote: Mike i think i found a bug... tested: 5.7.2-2.0.5 and 5.7.2-2.0.4 and skin.aeon.nox.music view settings dont work.... and get stuk on screen.
I have to reboot my pi2 to get rid of the setting in my screen. running Millhouse #722

Shit!! Millhouse #722 is kodi 16 and on Millhouse #701 (kodi 15) it's oke Sad

Master branch is now updated to Kodi v16 Jarvis

Thanks Warez and bsoriano for the bug reports it should be fixed now. Smile

FYI If you do not use the colored mod you must download the new resource addon images for the white studios and white record labels. If you install from zip they should be installed automatically.
Reply
so much branches on github RoflHuh
Reply
If i get it right i can test your skin on kodi16 now? from your repo?
Reply
(2015-07-25, 02:03)mikesilvo164 Wrote:
(2015-07-24, 17:48)Warez Wrote: [quote='AL8782' pid='2061542' dateline='1437764893']
What do you need to get the labels on the rolling disc in the showcase view. The disc labels show up in the right list view but not when the disc is rolling in the showcase view.

Thanks

I only added it in RightList cause it still is WIP and I will add it to other views in the future.


Ok, thanks

Another question. Is the rolling disc only on the isengard? I installed your Helix build and notice that there's no rolling disc or any disc in rightlist also.

Thanks Again
Reply
(2015-07-25, 10:49)Mario S. Wrote: so much branches on github RoflHuh

Yeah... Rolleyes
helix
isengard
master (jarvis)
mrv_widgets
mr.v_widgets
flix_view
development

I made a mistake when merging branches so I decided to create a cleaner mr.v_widgets branch without duplicate entries but helix, isengard, and master are necessary.

the flix_view is a testing playground using the original view I made for MyFlix and development is for experimental stuff and both will most likely not have any future updates because they are local branches for ideas and things that will not be pushed to GitHub but I wanted a clean "save" to reset to for when things go badly or my HD fails.

(2015-07-25, 10:52)Warez Wrote: If i get it right i can test your skin on kodi16 now? from your repo?

If by repo you mean the master branch on GitHub then yes but if you mean my release repo then it is for Isengard not Jarvis.

Keep in mind there will be bugs that have nothing to do with the skin (it is an alpha) so test things out using Confluence first before reporting them to me and if Confluence does not have the function then it may still be a bug in Kodi that I cannot fix.

(2015-07-25, 11:00)AL8782 Wrote: Ok, thanks

Another question. Is the rolling disc only on the isengard? I installed your Helix build and notice that there's no rolling disc or any disc in rightlist also.

Thanks Again

Many improvements and additions are for Isengard. The helix branch will not be updated by myself any longer (bugs I will continue to fix but no new features). I will gladly accept pull request from anyone who would like to keep that version alive but I am all about the shiny and new so once a beta is released for the next Kodi version development will slow and work will begin for the next Kodi version. The new ReRo policy of Kodi development has changed that for Jarvis so might as well start early and keep up with changes now, otherwise it can get out of control pretty fast.
Reply
Ok thx for the Info Mike Wink
Reply
(2015-07-25, 02:37)smw6230 Wrote:
(2015-07-24, 01:03)manfeed Wrote: Hi Mike! Great work! I see you're on fire, adding more and more things! Nod Thanks...

I share your feelings about relying on addons, but at the same time I really loved the idea of seeing the movie duration in hours-minutes, so I tried to implement that through variables.xml and finally I got it! The code is this...

Code:
<variable name="Durat_min">
        <value condition="[SubString(ListItem.Duration,1,Right)]">1 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,2,Right)]">2 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,3,Right)]">3 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,4,Right)]">4 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,5,Right)]">5 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,6,Right)]">6 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,7,Right)]">7 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,8,Right)]">8 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,9,Right)]">9 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value condition="[SubString(ListItem.Duration,0,Right)    + !StringCompare(ListItem.Duration,60) + !StringCompare(ListItem.Duration,120) + !StringCompare(ListItem.Duration,180) + !StringCompare(ListItem.Duration,240)]">0 [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
        <value> </value>
    </variable>
    <variable name="Durat_mov">
        <value condition="[!IntegerGreaterThan(ListItem.Duration,60)]">$INFO[ListItem.Duration,, $LOCALIZE[12391]]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,6,Left)]">1 h $VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,7,Left)]">1 h 1$VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,8,Left)]">1 h 2$VAR[Durat_min]</value>
        <value condition="[!IntegerGreaterThan(ListItem.Duration,99) + SubString(ListItem.Duration,9,Left)]">1 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,10,Left)]">1 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,11,Left)]">1 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,12,Left)]">2 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,13,Left)]">2 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,14,Left)]">2 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,15,Left)]">2 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,16,Left)]">2 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,17,Left)]">2 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,18,Left)]">3 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,19,Left)]">3 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,20,Left)]">3 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,21,Left)]">3 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,22,Left)]">3 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,23,Left)]">3 h 5$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,24,Left)]">4 h $VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,25,Left)]">4 h 1$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,26,Left)]">4 h 2$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,27,Left)]">4 h 3$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,28,Left)]">4 h 4$VAR[Durat_min]</value>
        <value condition="[SubString(ListItem.Duration,29,Left)]">4 h 5$VAR[Durat_min]</value>
        <value>$INFO[ListItem.Duration] [LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</value>
    </variable>

...it returns the movie duration in the variable "Durat_mov" in the format "1 h 53 minutes" and it works up to a duration of 5 hours (more than enough, I think Wink) I have checked it in my skin and it works flawlessly... maybe you'd like to have a look at it...

Regards

I was wondering if it isn't a problem could you explain how you implemented this. I looked in the variable.xml and couldn't figure out where to insert the new code.

Thanks.

It's not really meant to be implemented by the final user, Mike is the one who knows best how to implement this code across the skin. Anyway if you want to test it, you can have it working only for movies and showcase view (information panel) doing this:

-Make a backup of variables.xml

-Open variables.xml and search for the variable InfoPanelLabel4Var

-Change the second line in the variable from...
Code:
<value condition="[Container.Content(movies) | Container.Content(episodes) | Container.Content(sets)]">[COLOR labelheader]$LOCALIZE[2050]:[/COLOR][CR]$INFO[ListItem.Duration,, $LOCALIZE[12391]]</value>
...to...
Code:
<value condition="[Container.Content(movies) | Container.Content(episodes) | Container.Content(sets)]">[COLOR labelheader]$LOCALIZE[2050]:[/COLOR][CR]$VAR[Durat_mov]</value>

-Insert the code that I posted in line 3 of variables.xml (after the line <includes>) and save variables.xml
If I have helped you or increased your knowledge, please click the 'thumbs up' button to give thanks :)
Reply
  • 1
  • 145
  • 146
  • 147(current)
  • 148
  • 149
  • 759

Logout Mark Read Team Forum Stats Members Help
Aeon Nox: SiLVO55