![]() |
|
[Web Interface Addon] AWXi - Ajax Based Web Interface - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Web Interfaces (/forumdisplay.php?fid=156) +---- Thread: [Web Interface Addon] AWXi - Ajax Based Web Interface (/showthread.php?tid=112956) |
- Mizaki - 2012-01-29 14:30 I did report a bug that Montellese fixed to do with genre ids. That was fixed on the 21st. It's strange you don't see the request though. Just make sure your build is older than the 21st to start with. - macchina - 2012-01-29 14:47 Strange... downloaded latest from git. Problem still occurs... Edit: very strange... copied the mymusic18.db from my htpc to my test-pc (also eden beta2).. and on my test-pc music-genres works ... - Mizaki - 2012-01-29 15:16 It would appear your not scrapping the genres then I would guess. Does the GUI show you the genres? - macchina - 2012-01-29 15:31 Hi, Genres are visible in GUI. XWMM also returns all genres correct. Tried the "AudioLibrary.GetGenres" via EventGhost + JSON-RPC (XBMC2). Works also perfect. Cleared also the awx-directory and copied all files from git in it. Problem still there.... Can you tell me in which line of lib.xbmc.js the fix was made? - Mizaki - 2012-01-29 17:26 The fix was made to XBMC, commit. What was happening in that case, it was returning the labels okay but they all had a genreid of 0. I added a check to the genre list afterwards to check the genreid and if it was 0 to not show it. Line 644 in jquery.awx.js: Code: if (artistGenres.genreid == 0) { return };Comment out that line with // and then look at the html to see if the class genre<number> are all zeros. Use firebug or chrome network console to check the returned JSONRPC query. I've never used eventghost but maybe you can do the same as above? I've not changed the genres list since putting in the albums by genre function. - macchina - 2012-01-29 19:47 Yepp... AudioLibrary.GetGenres via Eventghost returns also genre ids "0". Seems this fix is not included in Beta2 (21.01.2012) ... (on my test-system I have beta1, thats why it works on it) Thanks for searching the problem! Macchina - Mizaki - 2012-01-29 20:08 Nps Macchina ![]() Added play next to songs list. Because of the possible delay in submitting the song I've added a 15 second check. If a song has less than 15 seconds left when you "play next" it will be inserted 2 ahead. So, it may play next if the song has finished or it may play after the next song. It may be that can be reduced to 10 or even 5 seconds. I'll see by the feedback
- macchina - 2012-01-29 20:35 Hi, one little request/question: Is it possible, that you get also the artist-info from stored playlists? Example: Currently: "Beautiful girl - Type:song" Would be fine:-) "Beautiful girl / INXS - Type:song" - Mizaki - 2012-01-29 20:47 It looks like a yes ![]() Pushed to git. Give it a go. - macchina - 2012-01-30 11:42 Works great! Thanks! Macchina |