Kodi Community Forum
[MOD] Rapier Qualar MOD - Dharma Version - 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 - Dharma Version (/showthread.php?tid=82284)

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


- Hirs - 2011-02-01

qualar Wrote:What XBMC version are you using because it should ot look like that. In saying that I have made changes that may fix your problems anyway.

I'm using ubuntu maverick with xbmc 10.00~svn35648-maverick1


- Hirs - 2011-02-01

qualar Wrote:Tried refocus and not sure what option you are refereing to.

Settings->skin->homescreen->use fanart slideshow, this will change fanart every 5 seconds, and will be respected no matter you change the section

Is like a global multiimage instead of section centered.


- qualar - 2011-02-01

Hirs Wrote:Settings->skin->homescreen->use fanart slideshow, this will change fanart every 5 seconds, and will be respected no matter you change the section

Is like a global multiimage instead of section centered.

It will not be something I will add but should be easy to do so. I just feel fanart belongs in it own section, Movie fanart in movies, Tv fanart in TV Shows etc not on the home screen.


- rapidvelo - 2011-02-01

qualar Wrote:I don't understand. On my TV and my version of XBMC the please wait dialog is easy to see and read. If you can provide a screenshot of what you mean I will have a look.

I will take a pic and attach when I get home.

Question though, when going to Movies-> then Genres .. If I change the view to either to Icon or Big Icon it just shows me Folder Icon. Is it not supposed to show your genre images in media/moviegenre folder?

Thanks.


- qualar - 2011-02-01

rapidvelo Wrote:I will take a pic and attach when I get home.

Question though, when going to Movies-> then Genres .. If I change the view to either to Icon or Big Icon it just shows me Folder Icon. Is it not supposed to show your genre images in media/moviegenre folder?

Thanks.

No those genre images are not used. But if you prefer them I could look at implementing them.


- rapidvelo - 2011-02-01

qualar Wrote:No those genre images are not used. But if you prefer them I could look at implementing them.

Yes this would be great, it would have nice look when searching this way for a movie as opposed to a folder icon.

Thank you!


- qualar - 2011-02-01

rapidvelo Wrote:Yes this would be great, it would have nice look when searching this way for a movie as opposed to a folder icon.

Thank you!

Can you think of any skins that use genre images?


- rapidvelo - 2011-02-01

qualar Wrote:Can you think of any skins that use genre images?

I see some example screenshots here, but not sure which skins they are..

http://forum.xbmc.org/showthread.php?tid=45361&page=6

http://forum.xbmc.org/showthread.php?tid=45361&page=7

Also take a look at digitalhigh comment here:
http://forum.xbmc.org/showthread.php?tid=45361&page=2

I didn't try this yet, but this maybe my answer -- But then again I'm not sure where exactly to try and add this..lol


- qualar - 2011-02-01

rapidvelo Wrote:I see some example screenshots here, but not sure which skins they are..

http://forum.xbmc.org/showthread.php?tid=45361&page=6

http://forum.xbmc.org/showthread.php?tid=45361&page=7

Also take a look at digitalhigh comment here:
http://forum.xbmc.org/showthread.php?tid=45361&page=2

I didn't try this yet, but this maybe my answer -- But then again I'm not sure where exactly to try and add this..lol

Just looked at the genre idea. But it would require a ton of work. You would need to add code to every movie view. For me at the moment the amount of work required far outweighs the gains. Sorry.


- rapidvelo - 2011-02-01

qualar Wrote:Just looked at the genre idea. But it would require a ton of work. You would need to add code to every movie view. For me at the moment the amount of work required far outweighs the gains. Sorry.

Not a problem, do appreciate the response back. Out of curiousity could you point me to direction of making this change? Lets say I only wanted to apply it to 1 movie view?

Thanks ,


- qualar - 2011-02-01

rapidvelo Wrote:Not a problem, do appreciate the response back. Out of curiousity could you point me to direction of making this change? Lets say I only wanted to apply it to 1 movie view?

Thanks ,

Basically just find the code that is displaying the folder for that view then add a visibility tag to hide that if you are in Genre View.

Then add this code something like the below, obviously you will need to change the sizes and positions.

Code:
<control type="image">
    <visible>Container.Content(genres) + !Window.IsActive(musiclibrary)</visible>
        <posy>513</posy>
        <posx>100</posx>
    <width>346</width>
    <height>511</height>
    <texture  fallback="moviegenre/default.jpg">moviegenre/$INFO[ListItem.Label].jpg</texture>
</control>

If you do make the changes I will be happy to add to the main mod.


- rapidvelo - 2011-02-02

qualar Wrote:Basically just find the code that is displaying the folder for that view then add a visibility tag to hide that if you are in Genre View.

Then add this code something like the below, obviously you will need to change the sizes and positions.

Code:
<control type="image">
    <visible>Container.Content(genres) + !Window.IsActive(musiclibrary)</visible>
        <posy>513</posy>
        <posx>100</posx>
    <width>346</width>
    <height>511</height>
    <texture  fallback="moviegenre/default.jpg">moviegenre/$INFO[ListItem.Label].jpg</texture>
</control>

If you do make the changes I will be happy to add to the main mod.

Qualar,

Thank you, I gave it many attempts, I couldn't even get it working in 1 view, I came close in the Big Icon view, but I reverted everything. I tried to take a look how the Night Skin did it in the poster wrap view.. but alot of work as you mentioned.

I can live with your MOD without it! Smile


- qualar - 2011-02-03

rapidvelo Wrote:Qualar,

Thank you, I gave it many attempts, I couldn't even get it working in 1 view, I came close in the Big Icon view, but I reverted everything. I tried to take a look how the Night Skin did it in the poster wrap view.. but alot of work as you mentioned.

I can live with your MOD without it! Smile

No need to live without it. I have just done it for you. Uploading now.


- rapidvelo - 2011-02-03

qualar Wrote:No need to live without it. I have just done it for you. Uploading now.

Wow your the best! Thank you soo much!


- qualar - 2011-02-03

Unfortunately my connection is so darn slow. I am afraid you will have to wait about 15mins for the upload to be ready.