• 1
  • 50
  • 51
  • 52(current)
  • 53
  • 54
  • 60
Release ATv Style Skin >> SiO2 <<
(2015-03-26, 23:13)pmerta Wrote: I have an alternate set of images that I would like to use to display the weather on the home page. Everything I've tried thus far hasn't worked. Any tips?

You need to replace these bits in

Includes_Shelf.xml

find:

$INFO[Window(Weather).Property(Day0.OutlookIcon)]

and replace it with:

$INFO[Window(Weather).Property(Day0.FanartCode),LOCATIONOFYOURFILES/,.png]

hope you succeed.

PS: would be easier if you used Sio2-X. Since it already uses a different set, so You could just replace those icons.

Cheers.
Image Image
Did I Help? Add to my reputation
Reply
Hi Fastcolors,
any update related to the wide view on SiO2?
Looking forward to this, mate...

Best regards.
Reply
i'm currently pushing ATV3 into official repo, need to make it happen in order to fix some issue, then I'll add wide view to sio2 soon. please bear with me. i'm perfecting it in sio2x.

of course b4 make it to official kodi repo, the view will be available for testing in manual installs.

please be patient, i do this in my free time. Smile

cheers and thanks for the support!!
Image Image
Did I Help? Add to my reputation
Reply
Hey Fast,
I saw an update from you skin and noticed the blank icon was fixed.. Are there more fixes?

Can you still fix these things:
* Programs to addon popup (on home screen)
* OpenElec settings to settings
* Some settings of add ons still have problems where there is a big black space where you have to scroll (Like in tvheadend)
* In for example pulsar when you click on choose streams the links on the right are not scrolling (this is also on other addons)
* also in pulsar when opening the context menu you can't see movie information


Small thing:
When streaming a blu-ray and you open the context menu there is sometimes a show blu-ray menu option this one is outside the box. Minor thing doesn't really bother me.

I think that's it :-)
Reply
(2015-04-14, 22:11)rridder Wrote: Hey Fast,
I saw an update from you skin and noticed the blank icon was fixed.. Are there more fixes?

Can you still fix these things:
* Programs to addon popup (on home screen)
* OpenElec settings to settings
* Some settings of add ons still have problems where there is a big black space where you have to scroll (Like in tvheadend)
* In for example pulsar when you click on choose streams the links on the right are not scrolling (this is also on other addons)
* also in pulsar when opening the context menu you can't see movie information


Small thing:
When streaming a blu-ray and you open the context menu there is sometimes a show blu-ray menu option this one is outside the box. Minor thing doesn't really bother me.

I think that's it :-)


sorry
I will fix all of this, but I wanted to update to ATV3 since I got some requests about it, and I needed to push the fix for keyboard, which seemed to be very annoying for many.
Image Image
Did I Help? Add to my reputation
Reply
@rridder
apart from them "pulsar" fixes

check if everything else is working on master branch github:

HERE

cheers.
Image Image
Did I Help? Add to my reputation
Reply
Thanks for the quick update, but i don't see any changes Undecided.
Could it be because i come from an install from ATV3 branch?
Reply
https://github.com/fastcolors/skin.sio2/

please download the latest master NO ATV3 branch.

I pushed the update on git 20 hrs ago.. no idea why that happens. Try removing the skin completely, since they might end up with 2 different skin folder names and create confusion. (i would totally wipe the skin folders)
Image Image
Did I Help? Add to my reputation
Reply
Have started my media center to day, everything looks good now. youtube plugins settings are working and program button and openelec settings added.
Great work!
Reply
Hi fast,
LiveTV popup is not working for me.
Pressing LiveTV button sends me directly o the EPG page.
Is it normal?
Reply
(2015-07-08, 23:27)blashman Wrote: Hi fast,
LiveTV popup is not working for me.
Pressing LiveTV button sends me directly o the EPG page.
Is it normal?

Yep, live popup was dropped with recent PVR window changes. not sure if I will introduce it back,

if you want to go to channels change this 2 lines of code in Home.xml (found in skin folder)


Code:
<item id="355">
                    <thumb>icons/LiveTV.png</thumb>
                    <label>31059</label>
                    <property name="color">icons/green3.png</property>

                    <onclick>ActivateWindow(TVGuide)</onclick>

                    <visible>!Pvr.IsRecording + System.GetBool(pvrmanager.enabled) + !Skin.HasSetting(PVRhide)</visible>
                </item>
                <item id="355">
                    <thumb>icons/LiveTVrec.png</thumb>
                    <label>$INFO[Pvr.NowRecordingTitle]</label>
                    <property name="color">icons/green3.png</property>

                    <onclick>ActivateWindow(TVGuide)</onclick>

                    <visible>Pvr.IsRecording + System.GetBool(pvrmanager.enabled) + !Skin.HasSetting(PVRhide)</visible>
                </item>

into

Code:
<item id="355">
                    <thumb>icons/LiveTV.png</thumb>
                    <label>31059</label>
                    <property name="color">icons/green3.png</property>

                    <onclick>ActivateWindow(TVChannels)</onclick>

                    <visible>!Pvr.IsRecording + System.GetBool(pvrmanager.enabled) + !Skin.HasSetting(PVRhide)</visible>
                </item>
                <item id="355">
                    <thumb>icons/LiveTVrec.png</thumb>
                    <label>$INFO[Pvr.NowRecordingTitle]</label>
                    <property name="color">icons/green3.png</property>

                    <onclick>ActivateWindow(TVChannels)</onclick>

                    <visible>Pvr.IsRecording + System.GetBool(pvrmanager.enabled) + !Skin.HasSetting(PVRhide)</visible>
                </item>

basically change the word TVGuide into TVChannels in home.xml

hope that works for you!

cheers!!!
and thanks for the support.

actually on second thought, I might reintroduce the popup menu... expect it for Isengard.
Image Image
Did I Help? Add to my reputation
Reply
Changing the word TVGuide into TVChannels worked for me Fastcolors.

Thanks a lot
Reply
(2015-07-12, 23:56)blashman Wrote: Changing the word TVGuide into TVChannels worked for me Fastcolors.

Thanks a lot

You're welcome! :-)
Image Image
Did I Help? Add to my reputation
Reply
I love the new update to the skin. It's super slick and just like the Apple TV (pre new Apple TV). The only issue that I have is with the shelf items on the "Favorites" section. The items appear as posters, which is OK if your favorites are mostly movies and TV shows, but not if they are add-ons. Is there an option or tweak to change these shelf items so as to make them appear as a square thumbnails just like the shelf thumbnails on the "Add-ons" section? That would be great.

Keep up the great work!
Reply
ATV4 update is coming...

possibly for jarvis and possibly for xmas ;-)

Image
Image Image
Did I Help? Add to my reputation
Reply
  • 1
  • 50
  • 51
  • 52(current)
  • 53
  • 54
  • 60

Logout Mark Read Team Forum Stats Members Help
ATv Style Skin >> SiO2 <<19