Kodi Community Forum
[MOD] Rapier Qualar Mod incorporating Rapier 3.0 features - 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 incorporating Rapier 3.0 features (/showthread.php?tid=65922)

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


- bblauritzen - 2010-03-29

myrison Wrote:Qualar - your skin may already do this, but if so I'm looking in the wrong place. Would it be possible to add a sort to the movie library that sorts by date added to the library as opposed to sorting by year/title/etc. I realize there is a place where you can look for newly added movies, but usually that is limited to just the last ~15-20 titles. How hard would it be to add a sort to the list for "date added" to the library?

Thanks!

It can't be done at the moment

There's no "Data added" entry in the database.


- qualar - 2010-03-29

myrison Wrote:Thanks for the offer Qualar, as far as I know this would be something new as I haven't seen it in any other skin. Maybe the easier option is to allow customization of the # of movies shown in the "newly added" section, vs. accepting whatever the default is set to? Is this a variable that can be set?

I think you will have to search through the XBMC documentation to see if that is doable. If you find anything I will implement it for you.


- qualar - 2010-03-29

steelman1991 Wrote:Yep works great - though obviously not as sharp as your white one will look, but sizing etc seem ok to me. Thanks again.

Can you tell me in what parts of the skin you are seeing this icon?


- steelman1991 - 2010-03-29

qualar Wrote:Can you tell me in what parts of the skin you are seeing this icon?

All views - where I would expect to see the info on the audio codec (dts/dd etc), only they are replaced with the flac logo where a flac track exists obviously


- qualar - 2010-03-29

steelman1991 Wrote:All views - where I would expect to see the info on the audio codec (dts/dd etc), only they are replaced with the flac logo where a flac track exists obviously

Am I correct in saying that you only see them in Movie/Tv Views currently? What I am trying to say is for me no audio icons show up for music for me.


- steelman1991 - 2010-03-29

qualar Wrote:Am I correct in saying that you only see them in Movie/Tv Views currently?

Yes that's correct, I don't have music files - only video.


- qualar - 2010-03-29

steelman1991 Wrote:Yes that's correct, I don't have music files - only video.

OK it is done. I have also added the Audio Codec information to Music Views Now.


- steelman1991 - 2010-03-29

qualar Wrote:OK it is done. I have also added the Audio Codec information to Music Views Now.

Thanks that was quick. Any idea on an eta for the new release -not that I'm not happy with the way it works at the moment - just curious?


- qualar - 2010-03-29

steelman1991 Wrote:Thanks that was quick. Any idea on an eta for the new release -not that I'm not happy with the way it works at the moment - just curious?

It is already waiting for you on Post 1. Big Grin


- steelman1991 - 2010-03-29

qualar Wrote:It is already waiting for you on Post 1. Big Grin

Laugh and that was even quicker - great work Qualar.


<record> - rapidvelo - 2010-03-29

Qualar,

If you don't see any issues with this modification can you update this for the next release? ... when reading from the iphone app it labels <record></record> on each name.

Thanks..

http://forum.xbmc.org/showthread.php?tid=53824&page=21


- qualar - 2010-03-29

rapidvelo Wrote:Qualar,

If you don't see any issues with this modification can you update this for the next release? ... when reading from the iphone app it labels <record></record> on each name.

Thanks..

http://forum.xbmc.org/showthread.php?tid=53824&page=21

I am not sure what you are asking. They say you can fix the problem by using this format
Code:
http://10.1.1.8:8080/xbmcCmds/xbmcHttp?command=SetResponseFormat()



- rapidvelo - 2010-03-29

qualar Wrote:I am not sure what you are asking. They say you can fix the problem by using this format
Code:
http://10.1.1.8:8080/xbmcCmds/xbmcHttp?command=SetResponseFormat()

That one didn't work for me, but the fix within the script did work..

# format our records start and end
xbmc.executehttpapi( "SetResponseFormat()" )
xbmc.executehttpapi( "SetResponseFormat(OpenRecord,%s)" % ( "<record>", ) )
xbmc.executehttpapi( "SetResponseFormat(CloseRecord,%s)" % ( "</record>", ) )

by removing the xml tag within the quotes..


- qualar - 2010-03-29

rapidvelo Wrote:That one didn't work for me, but the fix within the script did work..

# format our records start and end
xbmc.executehttpapi( "SetResponseFormat()" )
xbmc.executehttpapi( "SetResponseFormat(OpenRecord,%s)" % ( "<record>", ) )
xbmc.executehttpapi( "SetResponseFormat(CloseRecord,%s)" % ( "</record>", ) )

by removing the xml tag within the quotes..

It just concerns me removing those lines because I am sure they are there for a reason. Have you tested that recently added entries still work correctly. Also I would think that this is an insure the iphone app team should fix because it happens in all skins.


- rapidvelo - 2010-03-30

qualar Wrote:It just concerns me removing those lines because I am sure they are there for a reason. Have you tested that recently added entries still work correctly. Also I would think that this is an insure the iphone app team should fix because it happens in all skins.

Qualar, you are right, the recently added entries no longer work, adding it back in the xml nodes back in after removing fixes it.

i suppose it's an iphone problem they need to address.