• 1
  • 23
  • 24
  • 25(current)
  • 26
  • 27
  • 58
[Web Interface Addon] AWXi - Ajax Based Web Interface
I have an odd question, whenever I go to a specific season of a TV show, AWX reports nothing and just has a processing icon on the main part of the window. I can see the episodes if I go to the file location, I can see the episodes if I open the unwatched link, but whenever I go to the seasons section and try and select a season, I get nothing.
Reply
Mizaki...
Have you seen the HTPC Manager effort? http://forum.xbmc.org/showthread.php?tid=126297

It would be pretty cool if you combined efforts with that team to integrate AWX.
I'm not an expert but I play one at work.
Reply
@Livin Hee, copy, paste Wink

@Mykander That certainly is odd. The fact it's still showing the loading icon indicates it's had no reply from XBMC. That should be a pretty quick look up so I can't imagine it's a time out issue.

I know it's a bit involved but I've not found a better way yet, can you follow debugging and give me the command sent and the reply (if any)? Or use the simple xbmc.log method Smile
Image
AWXi - Ajax web interface. Wiki
Reply
(2012-04-08, 18:18)Mizaki Wrote: @Mykander That certainly is odd. The fact it's still showing the loading icon indicates it's had no reply from XBMC. That should be a pretty quick look up so I can't imagine it's a time out issue.

I know it's a bit involved but I've not found a better way yet, can you follow debugging and give me the command sent and the reply (if any)? Or use the simple xbmc.log method Smile

I tried both ways, my xbmc.log at the point reports the following:
Code:
16:43:26 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "VideoLibrary.GetSeasons", "params": { "tvshowid": 2, "properties": ["season", "playcount"]}, "id": 1}
16:43:26 T:140128274085632   DEBUG: JSONRPC: Calling videolibrary.getseasons
16:43:26 T:140128274085632   DEBUG: GetStackedTvShowList query: select idShow from tvshow where c00 like (select c00 from tvshow where idShow=2) order by idShow
16:43:26 T:140128274085632   DEBUG: RunQuery took 1 ms for 2 items query: select episode.c12,path.strPath,tvshow.c00,tvshow.c08,tvshow.c14,tvshow.c13,count(1),count(files.playCount) from episode join tvshowlinkepisode on tvshowlinkepisode.idEpisode=episode.idEpisode join tvshow on tvshow.idShow=tvshowlinkepisode.idShow join files on files.idFile=episode.idFile  join tvshowlinkpath on tvshowlinkpath.idShow = tvshow.idShow join path on path.idPath = tvshowlinkpath.idPath where tvshow.idShow = 2  group by episode.c12
16:43:26 T:140128274085632   DEBUG: RunQuery took 0 ms for 0 items query: select * from movieview join movielinktvshow on movielinktvshow.idMovie=movieview.idMovie where movielinktvshow.idShow = 2
16:43:27 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "VideoLibrary.GetEpisodes", "params": { "tvshowid": 2, "season" : 10, "properties": ["episode", "playcount", "fanart", "plot", "season", "showtitle", "thumbnail", "rating"], "sort": { "order": "ascending", "method": "episode" } }, "id": 1}
16:43:27 T:140128274085632   DEBUG: JSONRPC: Calling videolibrary.getepisodes
16:43:27 T:140128274085632   DEBUG: GetStackedTvShowList query: select idShow from tvshow where c00 like (select c00 from tvshow where idShow=2) order by idShow
16:43:27 T:140128274085632   DEBUG: RunQuery took 0 ms for 2 items query: select * from episodeview where idShow = 2 and (c12=10 or (c12=0 and (c15=0 or c15=10)))
16:43:28 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "Player.GetActivePlayers", "id": 1}
16:43:28 T:140128274085632   DEBUG: JSONRPC: Calling player.getactiveplayers
16:43:28 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "Application.GetProperties", "params": { "properties": [ "volume", "muted" ] }, "id": 1}
16:43:28 T:140128274085632   DEBUG: JSONRPC: Calling application.getproperties
16:43:33 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "Player.GetActivePlayers", "id": 1}
16:43:33 T:140128274085632   DEBUG: JSONRPC: Calling player.getactiveplayers
16:43:33 T:140128274085632   DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "method": "Application.GetProperties", "params": { "properties": [ "volume", "muted" ] }, "id": 1}
16:43:33 T:140128274085632   DEBUG: JSONRPC: Calling application.getproperties

And Chrome gives me the following from a capture of the action:

Form Data:
Code:
{"jsonrpc": "2.0", "method": "VideoLibrary.GetEpisodes", "params": { "tvshowid": 2, "season" : 10, "properties": ["episode", "playcount", "fanart", "plot", "season", "showtitle", "thumbnail", "rating"], "sort": { "order": "ascending", "method": "episode" } }, "id": 1}:

Response:
Code:
{"id":1,"jsonrpc":"2.0","result":{"episodes":[{"episode":1,"episodeid":71,"fanart":"special://masterprofile/Thumbnails/Video/Fanart/ffdb3379.tbn","label":"10x01. Duct Tape Island","playcount":0,"plot":"Adam and Jamie get abandoned on a Hawaiian island, armed with nothing but the sticky silver adhesive. Can they use it to source water, find food, build shelter, and even escape?","rating":8.0,"season":10,"showtitle":"MythBusters","thumbnail":"special://masterprofile/Thumbnails/Video/d/d5d87d92.tbn"},{"episode":2,"episodeid":68,"fanart":"special://masterprofile/Thumbnails/Video/Fanart/ffdb3379.tbn","label":"10x02. Fire vs Ice","playcount":0,"plot":"Adam and Jamie tackle an internet sensation about an epic duel between a flamethrower and a CO2 fire extinguisher, while Kari, Grant and Tory test if you can spy drone with a dust cloud and pull off a kidnapping as seen in the movie Body of Lies.","rating":7.6999998092651367188,"season":10,"showtitle":"MythBusters","thumbnail":"special://masterprofile/Thumbnails/Video/b/ba322e0c.tbn"}],"limits":{"end":2,"start":0,"total":2}}}

That is the last thing I get before the continual ActivePlayer/Properties like in the log file.

Edit:
Not sure if it matters or not, but I have no problem seeing season espisode lists through other interfaces, such as the official xbmc android remote and one of the ipad applications.
Reply
Okay so it did return the data... Did you notice an error in the web browser console? To reiterate this is for all TV programs? Also, just to make sure. Have you tried clearing your cache?
Image
AWXi - Ajax web interface. Wiki
Reply
(2012-04-05, 18:15)Mizaki Wrote: That is certainly strange if you can open the playlist and use the individual references. Can you follow debugging and post the command sent and the reply? Also, the same for when the playlist is listed.

Hi, hope this is the kind of info you're looking for. Here's IMO the relevant stuff if I try to enqueue the Playlist

Code:
[18:23:15.622] POST http://xion:8080/jsonrpc?awx [HTTP/1.1 200 OK 328ms]
    Request URL:
    http://xion:8080/jsonrpc?awx

    Request Method:
    POST

    Status Code:
    HTTP/1.1 200 OK

    Request Headers
    18:23:15.604

  Accept:application/json, text/javascript, */*; q=0.01Accept-Encoding:gzip, deflateAccept-Language:en-us,de;q=0.7,en;q=0.3Authorization:Basic eGJveDp4Ym1jCache-Control:no-cacheConnection:keep-aliveContent-Length:255Content-Type:application/x-www-form-urlencoded; charset=UTF-8DNT:1Host:xion:8080Pragma:no-cacheReferer:http://xion:8080/User-Agent:Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0X-Requested-With:XMLHttpRequest

    Request Body
    {"jsonrpc": "2.0", "method": "Files.GetDirectory", "params" : { "directory" : "smb://SHARE/Music/Classical/Bach, Johann Sebastian/Brandenburg Concertos - 1985 I Musici.m3u", "media" : "music", "sort": { "order": "ascending", "method": "file" } }, "id": 1}

    Response Headers
    ?328ms

  Content-Length:4118Content-Type:application/jsonDate:Sat, 07 Apr 2012 16:23:16 GMT

      Response Body
      ?0ms

    {"id":1,"jsonrpc":"2.0","result":{"files":[{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 101 No1 in F.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 101 No1 in F.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 102 No1 in F Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 102 No1 in F Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 103 No1 in F Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 103 No1 in F Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 104 No1 in F Menuet.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 104 No1 in F Menuet.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 105 No2 in F.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 105 No2 in F.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 106 No2 in F Andante.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 106 No2 in F Andante.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 107 No2 in F Allegro Assai.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 107 No2 in F Allegro Assai.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 108 No3 in G.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 108 No3 in G.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 109 No3 in G Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 109 No3 in G Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 110 No3 in G Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 110 No3 in G Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 201 No4 in G Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 201 No4 in G Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 202 No4 in G Andante.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 202 No4 in G Andante.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 203 No5 in D Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 203 No5 in D Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 204 No5 in D Affettuoso.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 204 No5 in D Affettuoso.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 205 No5 in D Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 205 No5 in D Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 206 No6 in b.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 206 No6 in b.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 207 No6 in b Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 207 No6 in b Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 208 No6 in b Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 208 No6 in b Allegro.mp3","type":"unknown"}],"limits":{"end":18,"start":0,"total":18}}}

[18:23:15.951] POST http://xion:8080/jsonrpc?awx [HTTP/1.1 200 OK 265ms]
    Request URL:
    http://xion:8080/jsonrpc?awx

    Request Method:
    POST

    Status Code:
    HTTP/1.1 200 OK

    Request Headers
    18:23:15.932

  Accept:application/json, text/javascript, */*; q=0.01Accept-Encoding:gzip, deflateAccept-Language:en-us,de;q=0.7,en;q=0.3Authorization:Basic eGJveDp4Ym1jCache-Control:no-cacheConnection:keep-aliveContent-Length:201Content-Type:application/x-www-form-urlencoded; charset=UTF-8DNT:1Host:xion:8080Pragma:no-cacheReferer:http://xion:8080/User-Agent:Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0X-Requested-With:XMLHttpRequest

    Request Body
    {"jsonrpc": "2.0", "method": "Playlist.Add", "params": {"item": {"directory": "smb://SHARE/Music/Classical/Bach, Johann Sebastian/Brandenburg Concertos - 1985 I Musici.m3u"}, "playlistid": 0}, "id": 1}

    Response Headers
    ?265ms

  Content-Length:76Content-Type:application/jsonDate:Sat, 07 Apr 2012 16:23:16 GMT

      Response Body
      ?0ms

    {"error":{"code":-32602,"message":"Invalid params."},"id":1,"jsonrpc":"2.0"}

And here if I "open" the Playlist (split into two posta as board moans aout too big message)

Code:
[18:32:01.173] POST http://xion:8080/jsonrpc?awx [HTTP/1.1 200 OK 250ms]

    Request URL:
    http://xion:8080/jsonrpc?awx

    Request Method:
    POST

    Status Code:
    HTTP/1.1 200 OK

    Request Headers
    18:32:01.150

  Accept:application/json, text/javascript, */*; q=0.01Accept-Encoding:gzip, deflateAccept-Language:en-us,de;q=0.7,en;q=0.3Authorization:Basic eGJveDp4Ym1jCache-Control:no-cacheConnection:keep-aliveContent-Length:255Content-Type:application/x-www-form-urlencoded; charset=UTF-8DNT:1Host:xion:8080Pragma:no-cacheReferer:http://xion:8080/User-Agent:Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0X-Requested-With:XMLHttpRequest

    Request Body
    {"jsonrpc": "2.0", "method": "Files.GetDirectory", "params" : { "directory" : "smb://SHARE/Music/Classical/Bach, Johann Sebastian/Brandenburg Concertos - 1985 I Musici.m3u", "media" : "music", "sort": { "order": "ascending", "method": "file" } }, "id": 1}

    Response Headers
    ?250ms

  Content-Length:4118Content-Type:application/jsonDate:Sat, 07 Apr 2012 16:32:01 GMT

      Response Body
      ?0ms

    {"id":1,"jsonrpc":"2.0","result":{"files":[{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 101 No1 in F.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 101 No1 in F.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 102 No1 in F Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 102 No1 in F Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 103 No1 in F Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 103 No1 in F Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 104 No1 in F Menuet.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 104 No1 in F Menuet.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 105 No2 in F.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 105 No2 in F.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 106 No2 in F Andante.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 106 No2 in F Andante.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 107 No2 in F Allegro Assai.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 107 No2 in F Allegro Assai.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 108 No3 in G.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 108 No3 in G.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 109 No3 in G Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 109 No3 in G Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 110 No3 in G Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 110 No3 in G Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 201 No4 in G Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 201 No4 in G Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 202 No4 in G Andante.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 202 No4 in G Andante.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 203 No5 in D Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 203 No5 in D Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 204 No5 in D Affettuoso.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 204 No5 in D Affettuoso.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 205 No5 in D Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 205 No5 in D Allegro.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 206 No6 in b.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 206 No6 in b.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 207 No6 in b Adagio.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 207 No6 in b Adagio.mp3","type":"unknown"},{"file":"smb://SHARE/Music/Classical/Bach, Johann Sebastian/mp3/Brandenburg Concertos - I Musici 208 No6 in b Allegro.mp3","filetype":"file","label":"Brandenburg Concertos - I Musici 208 No6 in b Allegro.mp3","type":"unknown"}],"limits":{"end":18,"start":0,"total":18}}}
Reply
(2012-04-08, 19:42)Mizaki Wrote: Okay so it did return the data... Did you notice an error in the web browser console? To reiterate this is for all TV programs? Also, just to make sure. Have you tried clearing your cache?

Cleared the cache, and it is for all TV programs. I'm not familiar with using the browser console/debugging in the browser, but as far as analyzing what came out of the network capture per that wiki page that is all I get. Assuming I start from the "Seasons" page of a TV Show, where I can select which season I want to look at, then I click on a season to open up the folder, what I get is that line that I reported above and then a constant series of getactiveplayers and getproperties requests which are identical and happen every few seconds.
Reply
@odoll That all looks fine. If you can get the reply from the play or enqueue command that should tell us the problem. It should be the "method": "Playlist.Add" and the reply with the error.
(2012-04-08, 20:41)Mykander Wrote:
(2012-04-08, 19:42)Mizaki Wrote: Okay so it did return the data... Did you notice an error in the web browser console? To reiterate this is for all TV programs? Also, just to make sure. Have you tried clearing your cache?

Cleared the cache, and it is for all TV programs. I'm not familiar with using the browser console/debugging in the browser, but as far as analyzing what came out of the network capture per that wiki page that is all I get. Assuming I start from the "Seasons" page of a TV Show, where I can select which season I want to look at, then I click on a season to open up the folder, what I get is that line that I reported above and then a constant series of getactiveplayers and getproperties requests which are identical and happen every few seconds.

When you bring up the console (F12) there is a "console" tab. If you open that one and then click on a season. See if anything comes up.
Image
AWXi - Ajax web interface. Wiki
Reply
(2012-04-08, 20:56)Mizaki Wrote: When you bring up the console (F12) there is a "console" tab. If you open that one and then click on a season. See if anything comes up.

When I do that, I get this error message:
Code:
Uncaught TypeError: Object #<Object> has no method 'TVThumbnailList'    jquery.awx.js:1470
$.fn.defaultEpisodesViewer                                                jquery.awx.js:1470
$.extend.SeasonEpisodes.xbmc.getEpisodes.onSuccess                        ui.views.js:869
$.extend.getEpisodes                                                    lib.xbmc.js:1962
$.extend.sendCommand.$.ajax.success                                        lib.xbmc.js:181
f.Callbacks.n                                                            jquery-1.7.1.min.js:2
f.Callbacks.o.fireWith                                                    jquery-1.7.1.min.js:2
w                                                                        jquery-1.7.1.min.js:4
f.support.ajax.f.ajaxTransport.send.d                                    jquery-1.7.1.min.js:4
Reply
Can you change the episode view to list and see if it does the same thing? Going by that you are currently using the thumbnail view and I'd just like to rule out anything to do with the view.
Image
AWXi - Ajax web interface. Wiki
Reply
(2012-04-09, 03:27)Mizaki Wrote: Can you change the episode view to list and see if it does the same thing? Going by that you are currently using the thumbnail view and I'd just like to rule out anything to do with the view.

That worked. Under list view I can see them and the list pops up nearly instantly. That will work for me to, I'm not picky about list or thumbnail.
Reply
Hi Mizaki,

The new ui is looking good, and the new lazyload seem to be working better on my Ipad, my only concern with the uni ui is that I feel that the joy stick icon doesn't seem to blend in with the others, could perhaps be the red, and it some how remind me of gaming Blush

Did you say something in an earlier post about this skin be editable, for my need I would like to remove the next and playlist total, also for my big fingers would like the popup remote to be a little bigger, one last suggestion is the green line meant to be at the side on the now playing image, presume its to draw attention to the popup, I think due to the other back ground thumbs would you consider putting the now play image on a black background with perhaps a boarder


Image

Uploaded with ImageShack.us

Hope you don't mind my ideas Big Grin Thanks for all your great work

Reply
(2012-04-09, 07:40)Mykander Wrote: That worked. Under list view I can see them and the list pops up nearly instantly. That will work for me to, I'm not picky about list or thumbnail.

Well that's good in a way. I'll compare the views and see if I can see a reason for it.

(2012-04-09, 11:46)m0v1em4n Wrote: Hi Mizaki,

The new ui is looking good, and the new lazyload seem to be working better on my Ipad, my only concern with the uni ui is that I feel that the joy stick icon doesn't seem to blend in with the others, could perhaps be the red, and it some how remind me of gaming Blush

Did you say something in an earlier post about this skin be editable, for my need I would like to remove the next and playlist total, also for my big fingers would like the popup remote to be a little bigger, one last suggestion is the green line meant to be at the side on the now playing image, presume its to draw attention to the popup, I think due to the other back ground thumbs would you consider putting the now play image on a black background with perhaps a boarder

Hope you don't mind my ideas Big Grin Thanks for all your great work

The joystick is also a little confusing because you have a remote at the bottom as well!

The views can be messed with quite easily by changing the layout.css in the UIs dirs. What I'm planning to do it be able to load different layouts so you can just mod the current layout to suit. What would you do with the space from removing next? Bigger buttons!? They're quite big already Smile How much bigger are you thinking? They're 48px atm. I need to add a FF and RW on there as well mind. The green bar is the volume. It was originally above the mute button but because of album and fanart being shorter I moved it. I can see how without the mute button below it you have nfi what it is Smile I also realised that there is no progress bar either. I'll put it above the controls I think.

Something like?
Image
I'm thinking I could also put some more controls there. Left, right, etc.
Image
AWXi - Ajax web interface. Wiki
Reply
(2012-04-09, 15:01)Mizaki Wrote:
(2012-04-09, 11:46)m0v1em4n Wrote: Hi Mizaki,

The new ui is looking good, and the new lazyload seem to be working better on my Ipad, my only concern with the uni ui is that I feel that the joy stick icon doesn't seem to blend in with the others, could perhaps be the red, and it some how remind me of gaming Blush

Did you say something in an earlier post about this skin be editable, for my need I would like to remove the next and playlist total, also for my big fingers would like the popup remote to be a little bigger, one last suggestion is the green line meant to be at the side on the now playing image, presume its to draw attention to the popup, I think due to the other back ground thumbs would you consider putting the now play image on a black background with perhaps a boarder

Hope you don't mind my ideas Thanks for all your great work

The joystick is also a little confusing because you have a remote at the bottom as well!

What would you do with the space from removing next? Bigger buttons!? They're quite big already Smile How much bigger are you thinking? They're 48px atm. I need to add a FF and RW on there as well mind. The green bar is the volume. It was originally above the mute button but because of album and fanart being shorter I moved it. I can see how without the mute button below it you have nfi what it is Smile I also realised that there is no progress bar either. I'll put it above the controls I think.

Something like?
Image
I'm thinking I could also put some more controls there. Left, right, etc.

Hi Mizaki,

Quote:What would you do with the space from removing next?

All I would do is even it out between the bar also the remaining.

Quote: Bigger buttons!? They're quite big already Smile How much bigger are you thinking? They're 48px atm. I need to add a FF and RW on there as well mind

What size are the buttons at the top, search, setting etc they seem like a nice size, and because they are on a popup panel you have plenty of room

Quote:I can see how without the mute button below it you have nfi what it is

Blush Sorry

Your doing a great job


Reply
(2012-04-09, 07:40)Mykander Wrote:
(2012-04-09, 03:27)Mizaki Wrote: Can you change the episode view to list and see if it does the same thing? Going by that you are currently using the thumbnail view and I'd just like to rule out anything to do with the view.

That worked. Under list view I can see them and the list pops up nearly instantly. That will work for me to, I'm not picky about list or thumbnail.

Another thought. If you click the info button for the episode in list view does it show?
Image
AWXi - Ajax web interface. Wiki
Reply
  • 1
  • 23
  • 24
  • 25(current)
  • 26
  • 27
  • 58

Logout Mark Read Team Forum Stats Members Help
[Web Interface Addon] AWXi - Ajax Based Web Interface3