[Rhythmbox-devel] Artist sortnames

2009-12-06 Thread Jamie Nicol
I've managed to successfully change rb's code to sort artist names properly, taking advantage of the artist_sortname field (and i fixed album_sortname while i was at it). I think it is a bug that rb doesn't take advantage of these fields but before opening a bug report and attaching a patch i'd lik

[Rhythmbox-devel] DAAP patches

2009-12-06 Thread Jay L. T. Cornwall
Hi, Been a little while since I put these two patches together to resolve a couple of shortcomings in the DAAP plugin: https://bugzilla.gnome.org/show_bug.cgi?id=484881 https://bugzilla.gnome.org/show_bug.cgi?id=470711 The former patch addressed poor seek support with GStreamer's "push" mode

[Rhythmbox-devel] How to import RBIRadioSource reference

2009-12-06 Thread Jannik Heller
Hi, I want to get a reference to the "Radio" source in my plugin. I want to use this code: for group in shell.props.sourcelist_model: for source in group.iterchildren(): for props in source: if isinstance(props, RBIRadioSource): radio_source = props H