Kodi Community Forum
[MOD] Rapier Qualar Mod - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Rapier (https://forum.kodi.tv/forumdisplay.php?fid=120)
+---- Thread: [MOD] Rapier Qualar Mod (/showthread.php?tid=61126)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42


- wannabegt4 - 2009-11-18

Looking good Qualar. This skin is like a fine wine; it keeps getting better with age.

I did notice the plot area was a little small in the 3D view. could be bigger since there is all that room there.


- qualar - 2009-11-18

scarfa Wrote:Excellent work qualar. Cool

Scarfa your excellent skin makes modding a pleasure. A lot of the other skins are a nightmare to work with.


- wannabegt4 - 2009-11-18

This fixes the media flags alignment:
(just change posx to 700)
PHP Code:
                <control type="grouplist">
                    <
description>Media Flags Area</description>
                    <
posx>700</posx>
                    <
posy>455</posy>
                    <
width>640</width>
                    <
height>60</height>
                    <
itemgap>0</itemgap>
                    <
align>left</align>
                    <
orientation>horizontal</orientation>
                    <
visible>!Container.OnNext + !Container.OnPrevious + [[!System.Platform.Xbox + !Skin.HasSetting(HideMediaFlags)] | [System.Platform.Xbox Skin.HasSetting(ShowMediaFlagsXbox)]]</visible>
                    <include>
VideoMediaFlags</include>
                    <include>
AudioMediaFlags</include>
                    <include>
AspectMediaFlags</include>
                </
control

This fixes the plot being too short:

(just double it's height)
PHP Code:
                <control type="textbox">
                    <
description>Plot</description>            
                    <
posy>266</posy>
                    <
width>540</width>
                    <
height>164</height>
                    <
font>default</font>
                    <
textcolor>ff999999</textcolor>
                    <
align>justify</align>
                    <
label>$INFO[ListItem.PlotOutline]</label>
                    <
wrapmultiline>true</wrapmultiline>
                    <
autoscroll time="2000" delay="3000" repeat="10000">!Skin.HasSetting(DoNotAutoScrollMoviesWrapListInfoPlot)</autoscroll>
                    <
visible>!IsEmpty(ListItem.PlotOutline) + !Skin.HasSetting(HideMoviesWrapListInfoPlot)</visible>
                </
control

Studio was flickering when changing listitems, just remove the onnext and onprevious conditionals from the studio visibility to let it cross-fade without flicker.


- AsMoBhosca - 2009-11-18

New 3D Wrap View is fantastic, keep up the good work Big Grin


- igotdvds - 2009-11-18

FANTASTIC!!

One request. Can we get a scroll bar on the 3D view and maybe a view where the bottom bar is "flat" but the top layout is the same?


- AsMoBhosca - 2009-11-18

I noticed an issue with the "Title and Year" label when a movie has an exceptionally long name such as:

Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006)

Image

I fixed the issue with the following code changes

Code:
<control type="label">
    <description>Title and Year</description>
    [b]<posx>0</posx>[/b]
    <posy>111</posy>
    [b]<width>545</width>[/b]
    <font>Font_NewRapierBoldCaps_26</font>
    <textcolor>MediaInfoHeadColor</textcolor>
    <shadowcolor>ShadowColor</shadowcolor>
    <align>center</align>
    <label>$INFO[ListItem.Title] ($INFO[ListItem.Year])</label>
    <scroll>yes</scroll>
</control>



- AsMoBhosca - 2009-11-18

After checking I see that very long movie titles cause problems in some of the other views as well, in particular with the bottom info bar.

I'll try and rectify tomorrow.

Have to say it again... great mod & skin!!


- Tbtf - 2009-11-18

hey qualar just wanted to let you know your mod for the recently added tv shows and movies fixed Sranshafts, recently added as well. I dont know how it did but it did. Also awesome work loving the new movie view!


- qualar - 2009-11-18

Tbtf Wrote:hey qualar just wanted to let you know your mod for the recently added tv shows and movies fixed Sranshafts, recently added as well. I dont know how it did but it did. Also awesome work loving the new movie view!

It is because Scranshaft used my recently added mod in his mod.


- qualar - 2009-11-18

wannabegt4 Wrote:This fixes the media flags alignment:
(just change posx to 700)
PHP Code:
                <control type="grouplist">
                    <
description>Media Flags Area</description>
                    <
posx>700</posx>
                    <
posy>455</posy>
                    <
width>640</width>
                    <
height>60</height>
                    <
itemgap>0</itemgap>
                    <
align>left</align>
                    <
orientation>horizontal</orientation>
                    <
visible>!Container.OnNext + !Container.OnPrevious + [[!System.Platform.Xbox + !Skin.HasSetting(HideMediaFlags)] | [System.Platform.Xbox Skin.HasSetting(ShowMediaFlagsXbox)]]</visible>
                    <include>
VideoMediaFlags</include>
                    <include>
AudioMediaFlags</include>
                    <include>
AspectMediaFlags</include>
                </
control

This fixes the plot being too short:

(just double it's height)
PHP Code:
                <control type="textbox">
                    <
description>Plot</description>            
                    <
posy>266</posy>
                    <
width>540</width>
                    <
height>164</height>
                    <
font>default</font>
                    <
textcolor>ff999999</textcolor>
                    <
align>justify</align>
                    <
label>$INFO[ListItem.PlotOutline]</label>
                    <
wrapmultiline>true</wrapmultiline>
                    <
autoscroll time="2000" delay="3000" repeat="10000">!Skin.HasSetting(DoNotAutoScrollMoviesWrapListInfoPlot)</autoscroll>
                    <
visible>!IsEmpty(ListItem.PlotOutline) + !Skin.HasSetting(HideMoviesWrapListInfoPlot)</visible>
                </
control

Studio was flickering when changing listitems, just remove the onnext and onprevious conditionals from the studio visibility to let it cross-fade without flicker.

I knew the animation man would fix this. Thank m8. My head was spinning with xml tags.


- frater - 2009-11-18

I have mixed feelings about this "animation". It makes things become less static but it is really making me feel a bit awkward if I'm watching it. I don't know the right word for it. Are others experiencing this as well? I know I can turn it off, but are there other effects possible?
I really don't want to sound ungrateful as I appreciate all this work being done on these skins.


- qualar - 2009-11-18

frater Wrote:I have mixed feelings about this "animation". It makes things become less static but it is really making me feel a bit awkward if I'm watching it. I don't know the right word for it. Are others experiencing this as well? I know I can turn it off, but are there other effects possible?
I really don't want to sound ungrateful as I appreciate all this work being done on these skins.

Just disable it in the skin settings or maybe you would prefer it if I slowed down the animation or it good make you less sea sick if I removed the rotation part from the animation.


- qualar - 2009-11-18

igotdvds Wrote:FANTASTIC!!

One request. Can we get a scroll bar on the 3D view and maybe a view where the bottom bar is "flat" but the top layout is the same?

I am sure someone could add a standard flat list but there are already 2 views that use a flat view.


- qualar - 2009-11-18

Version 2.4.1 released

Fixes all the issues since last release. Thanks to Wannabegt for info. Also removed rotation from animated background.


- qualar - 2009-11-18

Now is the time for requests. If people prefer Scranshaft's colours I can look into that or anything else. I cannot guarantee that I can implement everything but I will see what I can do.