litemotiv Wrote:I'm using an ipad (ios 4.2) with xbmc dharma on arch linux here. While i can browse normally, the Genre list shows nothing in wTouch. I can see it fetching data like the other listings (spinning icon), but nothing is shown on the screen. Genres are browsing okay on xbmc itself.
I did a little bit of debugging, webkit is crashing here:
Code:
#535 Cannot call method 'getElementsByTagName' of null
You are retrieving an xml object:
Code:
#534 var resp=httpRequest.responseXML;
#535 var fields=resp.getElementsByTagName('field');
But are receiving html:
Code:
<html>
<field>MyGenre</field>
<field>...</field>
</html>
Maybe this is a problem? Can you also receive this list through json like the other data?
I'm not sure, as I'm expecting the result data is something like this:
Code:
<html>
<field>0</field><field>Classical</field>
<field>1</field><field>Holiday</field>
<field>2</field><field>Pop</field>
(.... etc .....)
</html>
My test is on Dharma (Final), Mac Os X 10.6.5, and iOS 4.2
Sorry still have no idea to help
litemotiv Wrote:One other issue is that tapping the media info (bottom panel) to show Player Control doesn't seem to do anything.
Really confused on these case. The Tap and Hold is sending 'C' (uppercase) to XBMC and the tap on Medio Info is sending 'M' (Uppercase) too.
On normal usage we use 'c' and 'm' on keyboard to get the actions.
On my test case XBMC run on Mac Os X (Dharma) and Fedora (compiled from svn), sending 'c' and 'm' from wTouch is not work and only work with 'C' and 'M'.
If you are willing to try, try to use the Soft Keyboard (tap the keyboard Icon) and use combination 'M' and 'm', as it will send the keys as keypress to XBMC, and see the result, which one work to open the Player Control in XBMC.
litemotiv Wrote:And one last question: do you accept skins for the interface, or are there ways to change the skin ourselves?
Hope to have it, but as web addon I do not think we can have server side script. Please correct me on this, as I do not touch the XBMC source code.
Anyway, what kind of 'skins' that you want to change?
As the main view, is actually just the gesture pad, and have image of the played media.
The Media Browser is about mimicking (although not entirely) the iOS UI.
litemotiv Wrote:One last question: can you make showing the artwork optional in listview? I have a very big collection and on the ipad this takes about 1 minute to parse for the artist view. Another (nicer) option would be to make a combination of alphabetizing and pagination for the lists, but this is obviously more work.
I was try to avoid make some option as that need storage to save the option/preferences. But I'll see on future for the possibility.
And about alphabetizing and pagination, do mean it's something like the Contacs and Song List in iOS and iOS's iTunes?