diff -Nru rhythmbox-plugin-albumartsearch-0.1/debian/changelog rhythmbox-plugin-albumartsearch-0.1/debian/changelog --- rhythmbox-plugin-albumartsearch-0.1/debian/changelog 2012-08-27 10:31:44.000000000 +0000 +++ rhythmbox-plugin-albumartsearch-0.1/debian/changelog 2012-09-22 12:56:50.000000000 +0000 @@ -1,3 +1,9 @@ +rhythmbox-plugin-albumartsearch (0.1-5) precise; urgency=low + + * fix issue #1 - set the correct defaults + + -- fossfreedom Sat, 22 Sep 2012 13:55:58 +0100 + rhythmbox-plugin-albumartsearch (0.1-4ubuntu1) precise; urgency=low * fixed song folder art to be 'cover' diff -Nru rhythmbox-plugin-albumartsearch-0.1/debian/patches/issue-#1 rhythmbox-plugin-albumartsearch-0.1/debian/patches/issue-#1 --- rhythmbox-plugin-albumartsearch-0.1/debian/patches/issue-#1 1970-01-01 00:00:00.000000000 +0000 +++ rhythmbox-plugin-albumartsearch-0.1/debian/patches/issue-#1 2012-09-22 12:57:49.000000000 +0000 @@ -0,0 +1,58 @@ +Description: fix for issue #1 + . + rhythmbox-plugin-albumartsearch (0.1-5) precise; urgency=low + . + * fix issue #1 - set the correct defaults +Author: fossfreedom + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: , +Bug: +Bug-Debian: http://bugs.debian.org/ +Bug-Ubuntu: https://launchpad.net/bugs/ +Forwarded: +Reviewed-By: +Last-Update: + +--- rhythmbox-plugin-albumartsearch-0.1.orig/AlbumArtSearch/AlbumArtSearch.py ++++ rhythmbox-plugin-albumartsearch-0.1/AlbumArtSearch/AlbumArtSearch.py +@@ -35,16 +35,16 @@ class AlbumArtSearchPlugin(GObject.Objec + self.current_album = None + self.current_song = None + self.current_location = None +- self.visible = True ++ self.visible = False + +- self.mode = self.MODE_PICTURES ++ self.mode = self.MODE_FOLDER + + self.init_gui() + self.connect_signals() + + self.action = ('ToggleAlbumArtSearch', Gtk.STOCK_DND_MULTIPLE, _('Album Art'), + None, _('Change the visibility of album art search pane'), +- self.toggle_visibility, True) ++ self.toggle_visibility, False) + self.action_group = Gtk.ActionGroup('AlbumArtSearchActions') + self.action_group.add_toggle_actions([self.action]) + uim = self.shell.props.ui_manager +@@ -186,7 +186,7 @@ class AlbumArtSearchPlugin(GObject.Objec + self.pictureslocradio = Gtk.RadioButton.new_from_widget(self.folderlocradio) + self.pictureslocradio.set_label("Pictures Folder") + +- self.pictureslocradio.set_active(True) ++ self.folderlocradio.set_active(True) + + self.rhythmlocradio.connect("toggled", self.toggled_rhythm_radio) + self.folderlocradio.connect("toggled", self.toggled_folder_radio) +@@ -206,5 +206,5 @@ class AlbumArtSearchPlugin(GObject.Objec + #---- pack everything into side panel ----# + self.vbox.show_all() + self.vbox.set_size_request(200, -1) +- self.shell.add_widget (self.vbox, RB.ShellUILocation.RIGHT_SIDEBAR, True, True) ++ #self.shell.add_widget (self.vbox, RB.ShellUILocation.RIGHT_SIDEBAR, True, True) + diff -Nru rhythmbox-plugin-albumartsearch-0.1/debian/patches/series rhythmbox-plugin-albumartsearch-0.1/debian/patches/series --- rhythmbox-plugin-albumartsearch-0.1/debian/patches/series 2012-08-27 10:32:18.000000000 +0000 +++ rhythmbox-plugin-albumartsearch-0.1/debian/patches/series 2012-09-22 12:57:38.000000000 +0000 @@ -3,3 +3,4 @@ removedepend rb2.97fixes songfolder-cover +issue-#1