Open GoogleCodeExporter opened 8 years ago
I totally agree. Not having this feature is the main reason client175 is not
usable to me. I would really like to see this implemented so that I can use
this (otherwise awesome) client as my major music player.
Original comment by Chris.co...@gmail.com
on 6 Apr 2011 at 7:41
Original comment by cseic...@gmail.com
on 4 Mar 2012 at 6:26
I found a workaround hack to get me past this problem. I wasn't motivated to
figure out how to manipulate the GUI, but I did figure out how to cause the
current-title display to include the playlist position. That's good enough for
me, as it's easy to scroll right to that spot in the playlist. In
static/mpd.controls.js, at line 297, I made this modification:
mpd.events.on('title', function(){
var t = mpd.status.title
var b = mpd.status.pos
var num = Number(b)
var position = (num+1)
var c = mpd.status.playlistlength
Ext.getDom('txtTitle').innerHTML = t + ' (#' + position + '/' + c + ')' || 'Unknown'
})
Hope this helps someone.
Original comment by t4251...@gmail.com
on 28 Dec 2012 at 9:41
Original issue reported on code.google.com by
campbell...@gmail.com
on 16 Jan 2011 at 10:43