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


- liq456 - 2009-11-28

qualar Wrote:Re-download, I have changed the plot code.

Thank you for the extremely fast response and fix you are the best.Smile


- wannabegt4 - 2009-11-29

Awesome to see the themes in there. There was a problem with a button in the skin settings sub menu item that made it too light to read. You might download it again to get the newest version here:

http://www.mediafire.com/file/gwwmlym3iy1/Themes.zip

The only bug I've found is the top bar doesn't show what view type you have selected now.


- qualar - 2009-11-29

wannabegt4 Wrote:The only bug I've found is the top bar doesn't show what view type you have selected now.

M8 are you gonna look at fixing this or do you want me to do it?


- qualar - 2009-11-29

qualar Wrote:M8 are you gonna look at fixing this or do you want me to do it?

The label that deals with this is in includes_MenuBar.xml

Code:
<control type="button" id="400">
                <description>View As</description>
                <include>MenuBarArrowBigBtn</include>
                <label>$INFO[Control.GetLabel(2)]</label>
                <onclick>ActivateWindow(3002)</onclick>
                <onclick>SetFocus(500)</onclick>
            </control>

The label works fine in the music view but i cannot figure out why it is not working on Movies and TV Shows yet.

The line that is failing is:

Code:
<label>$INFO[Control.GetLabel(2)]</label>

If you just change this to static text that shows up so it is the Getlabel command is not getting info for Movies and TVShows views.


- qualar - 2009-11-29

qualar Wrote:M8 are you gonna look at fixing this or do you want me to do it?


FIXED IT. Will upload later. That took some tracking down.

If you want to fix yourself just open viewsvideos.xml

and change the last control at the end of the xml ID from 2 to 3.

Code:
<control type="videowindow" id="3">
               <posx>642</posx>
            <posy>118</posy>
            <width>550</width>
            <height>320</height>
            <aspectratio>stretch</aspectratio>    
            <align>center</align>
        </control>



- PolliSoft - 2009-11-29

I just found a bug that I have not seen in earlier versions. If you have some musicplaying and enter Movies or TV Shows, there is a big black window blocking about 20% of the screen. As soon as I stop the music playback it disappears.
http://i203.photobucket.com/albums/aa121/pollisoft/screenshot004.jpg


- qualar - 2009-11-29

I can see why this is happening, it is the black backdrop for movie trailers, working on a fix.


- wannabegt4 - 2009-11-29

qualar Wrote:FIXED IT. Will upload later. That took some tracking down.

If you want to fix yourself just open viewsvideos.xml

and change the last control at the end of the xml ID from 2 to 3.

Code:
<control type="videowindow" id="3">
               <posx>642</posx>
            <posy>118</posy>
            <width>550</width>
            <height>320</height>
            <aspectratio>stretch</aspectratio>    
            <align>center</align>
        </control>

This did indeed fix it but it broke the sort button next to it. I just deleted the id="3" it's not needed unless the control is to be referenced. If it needs to be referenced by a conditional statement somewhere you could use id="73" it doesn't seem to be used anywhere in the skin that could cause these problems.


- r1ctus - 2009-11-29

hi, i found a bug: my fanart is dimmed, even when I set 'Dim Fanart' to 'off' in the skin settings


- qualar - 2009-11-29

PolliSoft Wrote:I just found a bug that I have not seen in earlier versions. If you have some musicplaying and enter Movies or TV Shows, there is a big black window blocking about 20% of the screen. As soon as I stop the music playback it disappears.
http://i203.photobucket.com/albums/aa121/pollisoft/screenshot004.jpg

Fixed, will be in next update.


- pouldam - 2009-11-29

Thanks for your great work!

I have found a minor bug -- if I choose Artist Information in the music library the title says "Movie Information".


- qualar - 2009-11-29

r1ctus Wrote:hi, i found a bug: my fanart is dimmed, even when I set 'Dim Fanart' to 'off' in the skin settings

I cannot seem to find out why this is happening. Wannabegt can you figure this one out?


- qualar - 2009-11-29

pouldam Wrote:Thanks for your great work!

I have found a minor bug -- if I choose Artist Information in the music library the title says "Movie Information".

Fixed - will be uploaded in next release.


- wannabegt4 - 2009-11-30

qualar Wrote:I cannot seem to find out why this is happening. Wannabegt can you figure this one out?
I'll take a look at it a little later tonight. Did you have to add or change any conditionals affecting backgrounds as that's the only thing I can think of that could cause this. I know you've changed a ton of stuff so it's no big deal if you don't remember.


- qualar - 2009-11-30

wannabegt4 Wrote:I'll take a look at it a little later tonight. Did you have to add or change any conditionals affecting backgrounds as that's the only thing I can think of that could cause this. I know you've changed a ton of stuff so it's no big deal if you don't remember.

I have tried removing all Dim controls in includes_backgounds just to test but they still dim. Strange. Just thought a second pair of eyes may spot what I am missing. Also I have tried replacing this file with the one from the original Rapier and it still doesnt fix so it cannot be anything in that file.