commit f8f963a3db6c631d125a793bb67dd16289823603 Author: Kalev Lember Date: Tue Sep 10 15:55:39 2013 +0200 Port rbzeitgeist plugin to Python 3 https://bugzilla.gnome.org/show_bug.cgi?id=707860 plugins/rbzeitgeist/rbzeitgeist.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) commit 4ecef708bc789ec802bb93ef7a2b3ae6beda8db6 Author: Bohuslav Kabrda Date: Mon Sep 23 13:14:53 2013 +0200 Fix remaining Python 3 issues. plugins/artsearch/lastfm.py | 10 +++++----- plugins/artsearch/oldcache.py | 4 ++-- plugins/context/AlbumTab.py | 2 +- plugins/context/ArtistTab.py | 2 +- plugins/context/LyricsTab.py | 2 +- plugins/magnatune/TrackListHandler.py | 2 +- plugins/magnatune/magnatune.py | 1 - remote/dbus/rb-print-playing.py | 2 +- 8 files changed, 12 insertions(+), 13 deletions(-) commit 63649b472f32745133d5006395d1228511060bf4 Author: Jonathan Matthew Date: Sun Oct 13 15:31:45 2013 +1000 start of 3.0.1 bits NEWS | 24 ++++++++++++++++++++++++ README | 2 +- configure.ac | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) commit aae76be4fe8877b4e149b7d24208efd0f7723172 Author: Jonathan Matthew Date: Thu Oct 10 09:21:25 2013 +1000 generic-player: handle eject better while still scanning Before ejecting, cancel the import job and wait for it to finish, so we're not still trying to access the device while ejecting it. plugins/generic-player/rb-generic-player-source.c | 43 +++++++++++++++++------ sources/rb-device-source.c | 14 ++++++-- sources/rb-device-source.h | 2 ++ 3 files changed, 46 insertions(+), 13 deletions(-) commit 706363ee58e2730b56991fc510b50b5bcd8605e9 Author: Jonathan Matthew Date: Tue Oct 8 07:28:09 2013 +1000 play-queue: update the page name in an idle handler GtkTreeView seems to do a lot of work when items in the display page model change, so only updating the name once after adding a set of tracks to the queue helps a bit. sources/rb-play-queue-source.c | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) commit d7764ad4ea9b33e770a1ac5daf05801cd769ae1d Author: Marek Černocký Date: Fri Oct 4 11:00:19 2013 +0200 Updated Czech translation po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 51db199252f44b4b07188c3d46407a06c135e750 Author: Jonathan Matthew Date: Tue Oct 1 22:46:10 2013 +1000 task-list-display: remove items that have been removed https://bugzilla.gnome.org/show_bug.cgi?id=708341 widgets/rb-task-list-display.c | 1 + 1 file changed, 1 insertion(+) commit c08c802a5fd4b77a4fae5782a6c056df142b184c Author: Jonathan Matthew Date: Tue Oct 1 22:45:45 2013 +1000 generic-player: g_str_has_suffix doesn't like NULL plugins/generic-player/rb-generic-player-source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit ad9061c654e3c3050346be97c60e7f6769799f58 Author: Maxime Villard Date: Tue Oct 1 21:00:54 2013 +1000 property-model: fix potential free of uninitialized pointer rhythmdb/rhythmdb-property-model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 754b152ffc8e210b1e5b3e0dba4824f284c56090 Author: Jonathan Matthew Date: Tue Oct 1 09:24:49 2013 +1000 source: make binding sort order to settings optional Binding the sort order for static playlists turns out to be a terrible idea, since it means they get the default sort order and there's no way to change it. Oops. https://bugzilla.gnome.org/show_bug.cgi?id=709143 plugins/audiocd/rb-audiocd-source.c | 2 +- plugins/audioscrobbler/rb-audioscrobbler-radio-source.c | 2 +- plugins/grilo/rb-grilo-source.c | 2 +- plugins/iradio/rb-iradio-source.c | 3 ++- podcast/rb-podcast-source.c | 3 ++- sources/rb-auto-playlist-source.c | 2 +- sources/rb-browser-source.c | 3 ++- sources/rb-source.c | 7 ++++--- sources/rb-source.h | 3 ++- sources/rb-static-playlist-source.c | 2 +- 10 files changed, 17 insertions(+), 12 deletions(-) commit 83845c78a6d58ad654bdd7196b27d32387632054 Author: David King Date: Fri Sep 20 17:52:49 2013 +0100 daap: Correctly fetch child schema https://bugzilla.gnome.org/show_bug.cgi?id=708476 plugins/daap/rb-daap-source.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit 91174780b559555aed749a47dbdcca5c39746f35 Author: Cheng-Chia Tseng Date: Mon Sep 30 19:50:10 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 3040 +++++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 3042 +++++++++++++++++++++++++++++------------------------------ 2 files changed, 3011 insertions(+), 3071 deletions(-) commit 4136c9464523d4bf4463d54365830187e9c52518 Author: Ville-Pekka Vainio Date: Sat Sep 14 23:03:22 2013 +0300 Finnish translation update by Jiri Grönroos po/fi.po | 1484 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 749 insertions(+), 735 deletions(-) commit 76540fdaa7baf56b01d8d269cbe482b1dbc58f09 Author: Jonathan Matthew Date: Fri Sep 13 22:19:13 2013 +1000 metadata: GDBusServer new-connection signal needs a return value Turns out this is kind of important and has been working mostly by luck until now. When compiled with gcc's -fstack-protector-strong, we ended up returning 0, which in this case means that the connection isn't interesting, so it stops processing messages on it. https://bugzilla.gnome.org/show_bug.cgi?id=706470 metadata/rb-metadata-dbus-service.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit 92d75eaac529015ffb996a9c4614a88b0ece4084 Author: W. Michael Petullo Date: Wed Sep 11 21:57:03 2013 -0400 daap: fix to compile against libdmapsharing 2.9.19+ Signed-off-by: W. Michael Petullo configure.ac | 2 +- plugins/daap/rb-dacp-player.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) commit c28820f97c59959a22f414bdf81451d8a644ca16 Author: Pavol Klačanský Date: Wed Sep 11 22:42:24 2013 +0200 Updated slovak translation po/sk.po | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) commit 182a9736cfb64f719b0125db18b6ade1198518ca Author: Мирослав Николић Date: Mon Sep 9 22:51:06 2013 +0200 Updated Serbian translation po/sr.po | 844 +++++++++++++++++++++++++++++---------------------------- po/sr@latin.po | 844 +++++++++++++++++++++++++++++---------------------------- 2 files changed, 858 insertions(+), 830 deletions(-) commit f21d15e17951797055fbef097e6bf5aaf74f8daf Author: Benjamin Steinwender Date: Sat Sep 7 12:02:10 2013 +0200 Updated German help translation help/de/de.po | 2087 ++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1177 insertions(+), 910 deletions(-) commit e3da11a1fab8ef218b40f5e30bc2c76805bf0a38