• 1
  • 36
  • 37
  • 38(current)
  • 39
  • 40
  • 88
v17 Horizon - Krypton
jurialmunkey:

Regarding your blur response from last night...

Other than your own personal preference there is no good answer. The old blur works perfect as a background color for dialogvideoinfo but may not be as great for fanart as you browse through movies.

Same could be said about the new blur, it blurs but you kind of see the fanart. And if you can see the fanart, you might as well turn it off and enjoy the fanart.

My opinion is based on movies / tvshows, I don't have music in kodi yet...
Reply
@Edworld -- I think you might've misunderstood me. I definitely prefer the *more blurred* "old" version. In fact, I never changed the settings for that - blur size has always been set at "5". The settings I changed related to the new colour matching features in the *github* version of colorbox. However, what happened was that these new setting values caused an error in the *repo* version of colorbox. This error in the code caused it to use its inbuilt default values which is a lower blur size instead of the value I was setting it at. I wasn't seeing this error because I was using the github version of colorbox and so the blur looked like the normal *more blurred* version.

TL;DR -- The intended value has always been the *more blurred* value. New color matching settings used for the github version of colorbox caused an error in the repo version of colorbox. This error caused the repo version of colorbox to override my settings with its own defaults.
Arctic Fuse 2 - Alpha now available. Support me on Ko-fi.
Reply
(2017-08-17, 02:16)jurialmunkey Wrote: @Edworld -- I think you might've misunderstood me. I definitely prefer the *more blurred* "old" version. In fact, I never changed the settings for that - blur size has always been set at "5". The settings I changed related to the new colour matching features in the *github* version of colorbox. However, what happened was that these new setting values caused an error in the *repo* version of colorbox. This error in the code caused it to use its inbuilt default values which is a lower blur size instead of the value I was setting it at. I wasn't seeing this error because I was using the github version of colorbox and so the blur looked like the normal *more blurred* version.

TL;DR -- The intended value has always been the *more blurred* value. New color matching settings used for the github version of colorbox caused an error in the repo version of colorbox. This error caused the repo version of colorbox to override my settings with its own defaults.

got it!

A number higher than 5 increases blur?
Reply
Yeah higher numbers increase blur.

You should be able to tweak it by changing the value in Startup.xml
Code:
<onfocus>Skin.SetString(colorbox_blursize,5)</onfocus>

You have to restart kodi for it to take effect.
Arctic Fuse 2 - Alpha now available. Support me on Ko-fi.
Reply
I must say your skins are rocking! Currently using fuse(neue) and its great but this promises to be even better. Just a quick question...do you plan on incorporating hubs? I think that would expand its capabilities greatly
Reply
(2017-08-17, 13:11)Bad_Juju Wrote: I must say your skins are rocking! Currently using fuse(neue) and its great but this promises to be even better. Just a quick question...do you plan on incorporating hubs? I think that would expand its capabilities greatly

This question has been already answered by jurialmunkey, please use the search box there is in the top corner of the threat.
Reply
My bad. I'm a newbie on the forum....hadn't seen the search box.
Reply
(2017-08-17, 02:49)jurialmunkey Wrote: Yeah higher numbers increase blur.

You should be able to tweak it by changing the value in Startup.xml
Code:
<onfocus>Skin.SetString(colorbox_blursize,5)</onfocus>

You have to restart kodi for it to take effect.

You can change blur size anytime with (and same for quality/pixels/bits etc.):

Code:
SetProperty(NINE_manual_set,"var=blursize,set=5",home)

This will change it without restart, you can force it to fire on unfocus or w/e by (or whichever daemon multi number you are using):

Code:
<onunfocus>SetProperty(FIVE_daemon_fire,True,home)</onunfocus>

I use a button like so in settings:
Code:
        <control type="button" id="11117">
            <description>widget</description>
            <include>ButtonCommonValues</include>
            <label>32000</label>
            <label2>$INFO[Skin.String(colorbox_blursize)]</label2>
            <onclick>SetProperty(RefreshItem,$LOCALIZE[32000],home)</onclick>
            <onclick>SetProperty(Dialog.NumItems,10)</onclick>
            <onclick>SetProperty(Dialog.1.Label,1)</onclick>
            <onclick>SetProperty(Dialog.1.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=1",home))</onclick>
            <onclick>SetProperty(Dialog.2.Label,2)</onclick>
            <onclick>SetProperty(Dialog.2.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=2",home))</onclick>
            <onclick>SetProperty(Dialog.3.Label,3)</onclick>
            <onclick>SetProperty(Dialog.3.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=3",home))</onclick>
            <onclick>SetProperty(Dialog.4.Label,4)</onclick>
            <onclick>SetProperty(Dialog.4.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=4",home))</onclick>
            <onclick>SetProperty(Dialog.5.Label,5)</onclick>
            <onclick>SetProperty(Dialog.5.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=5",home))</onclick>
            <onclick>SetProperty(Dialog.6.Label,6)</onclick>
            <onclick>SetProperty(Dialog.6.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=6",home))</onclick>
            <onclick>SetProperty(Dialog.7.Label,7)</onclick>
            <onclick>SetProperty(Dialog.7.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=7",home))</onclick>
            <onclick>SetProperty(Dialog.8.Label,8)</onclick>
            <onclick>SetProperty(Dialog.8.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=8",home))</onclick>
            <onclick>SetProperty(Dialog.9.Label,9)</onclick>
            <onclick>SetProperty(Dialog.9.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=9",home))</onclick>
            <onclick>SetProperty(Dialog.10.Label,10)</onclick>
            <onclick>SetProperty(Dialog.10.BuiltIn,SetProperty(NINE_manual_set,"var=blursize,set=10",home))</onclick>
            <onclick>RunScript(script.toolbox,info=selectdialog,header=Select Blur Quality Colorbox)</onclick>
            <onunfocus>SetProperty(FIVE_daemon_fire,True,home)</onunfocus>
            <visible>String.IsEqual(Window(home).Property(cfa_daemon_set),blur) | String.IsEqual(Window(home).Property(FIVE_daemon_set),blur)</visible>
        </control>

for quality:
Code:
        <control type="button" id="11116">
            <description>widget</description>
            <include>ButtonCommonValues</include>
            <label>31999</label>
            <label2>$INFO[Skin.String(colorbox_quality)]</label2>
            <onclick>SetProperty(RefreshItem,$LOCALIZE[31999],home)</onclick>
            <onclick>SetProperty(Dialog.NumItems,10)</onclick>
            <onclick>SetProperty(Dialog.1.Label,1)</onclick>
            <onclick>SetProperty(Dialog.1.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=1",home))</onclick>
            <onclick>SetProperty(Dialog.2.Label,2)</onclick>
            <onclick>SetProperty(Dialog.2.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=2",home))</onclick>
            <onclick>SetProperty(Dialog.3.Label,3)</onclick>
            <onclick>SetProperty(Dialog.3.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=3",home))</onclick>
            <onclick>SetProperty(Dialog.4.Label,4)</onclick>
            <onclick>SetProperty(Dialog.4.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=4",home))</onclick>
            <onclick>SetProperty(Dialog.5.Label,5)</onclick>
            <onclick>SetProperty(Dialog.5.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=5",home))</onclick>
            <onclick>SetProperty(Dialog.6.Label,6)</onclick>
            <onclick>SetProperty(Dialog.6.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=6",home))</onclick>
            <onclick>SetProperty(Dialog.7.Label,7)</onclick>
            <onclick>SetProperty(Dialog.7.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=7",home))</onclick>
            <onclick>SetProperty(Dialog.8.Label,8)</onclick>
            <onclick>SetProperty(Dialog.8.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=8",home))</onclick>
            <onclick>SetProperty(Dialog.9.Label,9)</onclick>
            <onclick>SetProperty(Dialog.9.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=9",home))</onclick>
            <onclick>SetProperty(Dialog.10.Label,10)</onclick>
            <onclick>SetProperty(Dialog.10.BuiltIn,SetProperty(NINE_manual_set,"var=quality,set=10",home))</onclick>
            <onclick>RunScript(script.toolbox,info=selectdialog,header=Select Quality Colorbox)</onclick>
            <onunfocus>SetProperty(FIVE_daemon_fire,True,home)</onunfocus>
        </control>

The colorbox_* strings get set by python for future use (BUT they have to be initialised by XML first, python cant create strings afaik). All settings are done via daemon startup RunScript code, and then by propertys, colorbox_* aren't checked, they are merely used to save settings for future use by skins.

ie.
Code:
            <onfocus condition="!Skin.HasSetting(colorbox_blursize)">Skin.SetString(colorbox_blursize,5)</onfocus>

or allow user sizes, ie pixelsize:
Code:
        <control type="button" id="11119">
            <description>widget</description>
            <include>ButtonCommonValues</include>
            <label>32001</label>
            <label2>$INFO[Skin.String(colorbox_pixelsize)]</label2>
            <onclick>SetProperty(RefreshItem,$LOCALIZE[32001],home)</onclick>
            <onclick>Skin.SetNumeric(colorbox_pixelsize)</onclick>
            <onunfocus>SetProperty(NINE_manual_set,"var=pixelsize,set=$INFO[Skin.String(colorbox_pixelsize)]",home)</onunfocus>
            <onunfocus>SetProperty(FIVE_daemon_fire,True,home)</onunfocus>
            <visible>String.IsEqual(Window(home).Property(cfa_daemon_set),pixelate) | String.IsEqual(Window(home).Property(FIVE_daemon_set),pixelate)</visible>
        </control>

I will try to update kodi repo once I feel latest changes are stable, I don't want to waste kodi devs time re-submitting bugfixes Smile
Or you can add my repo, and I will try to keep that updated regular @ https://github.com/BADMS/repository.BADM...-1.0.0.zip

caveat emptor: before installing off my repo ensure jurial approves it, and is upto date with any changes I have made! o-)
Reply
Hi jurialmunkey,

I must admit this skin is slowly growing on me Smile

Feature Request:


Would it be possible to add an option to control the occupancy or disable the lower half of the box?


Image


Thanks
Setup: LG OLED65B7 | Onkyo TX-RZ50 | OPPO UDP-203 4K Blu-Ray player | Nvidia Shield TV | Dune HD Homatics Box R 4K Plus | KEF T205
My Favourite Skin: Arctic Fuse mod
Reply
(2017-08-16, 14:44)komplex Wrote:
(2017-08-16, 14:25)jurialmunkey Wrote: Turn off show discart. I've got to update the label for the setting to include character art
Ah i thought they were independent of each other, i liked having movies show discart and tvshows show logos
I've now added an option to toggle character art with the other settings.

(2017-08-18, 11:45)Blurayx Wrote: Hi jurialmunkey,
I must admit this skin is slowly growing on me Smile
Feature Request:
Would it be possible to add an option to control the occupancy or disable the lower half of the box?
Thanks
With the way the widget code currently works, this is actually quite difficult to achieve and I would basically have to rewrite the code for it, so its a no for now unfortunately.
Arctic Fuse 2 - Alpha now available. Support me on Ko-fi.
Reply
@jurialmunkey,

No problem, I had a feeling that would be the case.

Would it be possible to have an option for the artist name to be included in the info box, to make more use of the unused space?

Image

Thanks Smile
Setup: LG OLED65B7 | Onkyo TX-RZ50 | OPPO UDP-203 4K Blu-Ray player | Nvidia Shield TV | Dune HD Homatics Box R 4K Plus | KEF T205
My Favourite Skin: Arctic Fuse mod
Reply
Is there any way to do a chapter skip using the OSD or seek bar? If not, how do you feel about adding some chapter skip buttons to the OSD?
Reply
Think I found a bug: ff you resume a movie from a widget, the Extended Info is greyed out in the OSD. I have tried from the script helper 'recently added' and 'now playing' widgets

If you resume from the 'all movies' list, Extended Info is selectable.
Reply
(2017-08-18, 16:25)Blurayx Wrote: @jurialmunkey,
No problem, I had a feeling that would be the case.
Would it be possible to have an option for the artist name to be included in the info box, to make more use of the unused space?
The problem is that if you have a longer artist name it can push the album title off:
e.g. The Velvet Underground - White Light / White Heat
Image

(2017-08-18, 21:08)foghat Wrote: Is there any way to do a chapter skip using the OSD or seek bar? If not, how do you feel about adding some chapter skip buttons to the OSD?
You can view chapters and skip from the BOOKMARKS osd item.

(2017-08-18, 21:50)foghat Wrote: Think I found a bug: ff you resume a movie from a widget, the Extended Info is greyed out in the OSD. I have tried from the script helper 'recently added' and 'now playing' widgets

If you resume from the 'all movies' list, Extended Info is selectable.

Works fine for me. Sounds like whatever is supplying your content is not setting the videoplayer content type correctly. The button will only show if content type of videoplayer is movies or episodes.
Arctic Fuse 2 - Alpha now available. Support me on Ko-fi.
Reply
(2017-08-19, 00:04)jurialmunkey Wrote:
(2017-08-18, 16:25)Blurayx Wrote: @jurialmunkey,
No problem, I had a feeling that would be the case.
Would it be possible to have an option for the artist name to be included in the info box, to make more use of the unused space?
The problem is that if you have a longer artist name it can push the album title off:
e.g. The Velvet Underground - White Light / White Heat
Image
OK, Thanks for trying Smile
Setup: LG OLED65B7 | Onkyo TX-RZ50 | OPPO UDP-203 4K Blu-Ray player | Nvidia Shield TV | Dune HD Homatics Box R 4K Plus | KEF T205
My Favourite Skin: Arctic Fuse mod
Reply
  • 1
  • 36
  • 37
  • 38(current)
  • 39
  • 40
  • 88

Logout Mark Read Team Forum Stats Members Help
Horizon - Krypton13