diff -Nru rhythmbox-plugin-desktopart-0.2.1/debian/changelog rhythmbox-plugin-desktopart-0.2.2/debian/changelog --- rhythmbox-plugin-desktopart-0.2.1/debian/changelog 2014-05-28 19:06:53.000000000 +0000 +++ rhythmbox-plugin-desktopart-0.2.2/debian/changelog 2014-10-25 09:45:43.000000000 +0000 @@ -1,3 +1,15 @@ +rhythmbox-plugin-desktopart (0.2.2-1~rb3ubuntu1) trusty; urgency=medium + + * amendment for issue #6 to also apply to trusty + + -- fossfreedom Sat, 25 Oct 2014 10:45:04 +0100 + +rhythmbox-plugin-desktopart (0.2.2-1~rb3) trusty; urgency=medium + + * fix crash in utopic - issue #6 + + -- fossfreedom Sat, 25 Oct 2014 10:32:00 +0100 + rhythmbox-plugin-desktopart (0.2.1-1~rb3) trusty; urgency=medium * minor update to fix unity launcher click issue diff -Nru rhythmbox-plugin-desktopart-0.2.1/debian/patches/issue6 rhythmbox-plugin-desktopart-0.2.2/debian/patches/issue6 --- rhythmbox-plugin-desktopart-0.2.1/debian/patches/issue6 1970-01-01 00:00:00.000000000 +0000 +++ rhythmbox-plugin-desktopart-0.2.2/debian/patches/issue6 2014-10-25 09:46:03.000000000 +0000 @@ -0,0 +1,36 @@ +Description: + TODO: Put a short summary on the line above and replace this paragraph + with a longer explanation of this change. Complete the meta-information + with other relevant fields (see below for details). To make it easier, the + information below has been extracted from the changelog. Adjust it or drop + it. + . + rhythmbox-plugin-desktopart (0.2.2-1~rb3ubuntu1) trusty; urgency=medium + . + * amendment for issue #6 to also apply to trusty +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-desktopart-0.2.2.orig/src/DesktopControl.py ++++ rhythmbox-plugin-desktopart-0.2.2/src/DesktopControl.py +@@ -299,7 +299,7 @@ class DesktopControl(Gtk.DrawingArea): + + try: + print (desktop_rb3compat.pygobject_version()) +- if desktop_rb3compat.pygobject_version() <= 3.12: ++ if desktop_rb3compat.pygobject_version() < 3.12: + region = Gdk.cairo_region_create_from_surface(surface) + self.get_parent().input_shape_combine_region(region) + except: diff -Nru rhythmbox-plugin-desktopart-0.2.1/debian/patches/series rhythmbox-plugin-desktopart-0.2.2/debian/patches/series --- rhythmbox-plugin-desktopart-0.2.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ rhythmbox-plugin-desktopart-0.2.2/debian/patches/series 2014-10-25 09:46:00.000000000 +0000 @@ -0,0 +1 @@ +issue6 diff -Nru rhythmbox-plugin-desktopart-0.2.1/src/DesktopControl.py rhythmbox-plugin-desktopart-0.2.2/src/DesktopControl.py --- rhythmbox-plugin-desktopart-0.2.1/src/DesktopControl.py 2014-04-21 21:35:31.000000000 +0000 +++ rhythmbox-plugin-desktopart-0.2.2/src/DesktopControl.py 2014-10-25 09:28:39.000000000 +0000 @@ -299,7 +299,7 @@ try: print (desktop_rb3compat.pygobject_version()) - if desktop_rb3compat.pygobject_version() != 3.12: + if desktop_rb3compat.pygobject_version() <= 3.12: region = Gdk.cairo_region_create_from_surface(surface) self.get_parent().input_shape_combine_region(region) except: