diff -Nru dockbarx-0.91.3/CHANGELOG dockbarx-0.91.4/CHANGELOG --- dockbarx-0.91.3/CHANGELOG 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/CHANGELOG 2014-06-24 17:26:54.000000000 +0000 @@ -1,4 +1,7 @@ Changelog: +0.91.4 +- Fixed issue #4 (bug): DockbarX froze when minimizing applications if certain themes were used. + 0.91.3 - Fixed bug that broke DockX in 0.91.2 diff -Nru dockbarx-0.91.3/debian/changelog dockbarx-0.91.4/debian/changelog --- dockbarx-0.91.3/debian/changelog 2014-06-20 09:01:33.000000000 +0000 +++ dockbarx-0.91.4/debian/changelog 2014-06-25 09:05:40.000000000 +0000 @@ -1,3 +1,9 @@ +dockbarx (0.91.4-1~webupd8~trusty0) trusty; urgency=medium + + * new upstream release bugfix release + + -- Alin Andrei Wed, 25 Jun 2014 12:05:24 +0200 + dockbarx (0.91.3-1~webupd8~trusty0) trusty; urgency=medium * new upstream release bugfix release diff -Nru dockbarx-0.91.3/dockbarx/dockbar.py dockbarx-0.91.4/dockbarx/dockbar.py --- dockbarx-0.91.3/dockbarx/dockbar.py 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/dockbarx/dockbar.py 2014-06-24 17:26:54.000000000 +0000 @@ -37,7 +37,7 @@ import i18n _ = i18n.language.gettext -VERSION = "0.91.3" +VERSION = "0.91.4" ATOM_WM_CLASS = gtk.gdk.atom_intern("WM_CLASS") diff -Nru dockbarx-0.91.3/dockbarx/iconfactory.py dockbarx-0.91.4/dockbarx/iconfactory.py --- dockbarx-0.91.3/dockbarx/iconfactory.py 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/dockbarx/iconfactory.py 2014-06-24 17:26:54.000000000 +0000 @@ -712,6 +712,8 @@ pixels[x, y] = (r, g, b, a) return self.__pil2surface(im) else: + w = surface.get_width() + h = surface.get_height() new = cairo.ImageSurface(cairo.FORMAT_ARGB32, w, h) ctx = gtk.gdk.CairoContext(cairo.Context(new)) ctx.set_source_surface(surface) diff -Nru dockbarx-0.91.3/README dockbarx-0.91.4/README --- dockbarx-0.91.3/README 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/README 2014-06-24 17:26:54.000000000 +0000 @@ -1,5 +1,5 @@ # DockbarX -### Version 0.91.3 +### Version 0.91.4 ## About DockbarX DockBarX is a lightweight taskbar / panel replacement for Linux which works as a stand-alone dock (called DockX), as an an Avant Window Navigator applet, as a Xfce4 panel applet[^1], as a matepanel applet[^2] or as a legacy gnome2 panel applet. DockbarX is a fork of dockbar made by Aleksey Shaferov. DockbarX branch is developed by Matias Särs. diff -Nru dockbarx-0.91.3/README.md dockbarx-0.91.4/README.md --- dockbarx-0.91.3/README.md 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/README.md 2014-06-24 17:26:54.000000000 +0000 @@ -1,5 +1,5 @@ # DockbarX -### Version 0.91.3 +### Version 0.91.4 ## About DockbarX DockBarX is a lightweight taskbar / panel replacement for Linux which works as a stand-alone dock (called DockX), as an an Avant Window Navigator applet, as a Xfce4 panel applet[^1], as a matepanel applet[^2] or as a legacy gnome2 panel applet. DockbarX is a fork of dockbar made by Aleksey Shaferov. DockbarX branch is developed by Matias Särs. diff -Nru dockbarx-0.91.3/setup.py dockbarx-0.91.4/setup.py --- dockbarx-0.91.3/setup.py 2014-06-20 07:34:51.000000000 +0000 +++ dockbarx-0.91.4/setup.py 2014-06-24 17:26:54.000000000 +0000 @@ -27,7 +27,7 @@ import os import sys -VERSION = "0.91.3" +VERSION = "0.91.4" class build_trans(cmd.Command): description = "Compile .po files into .mo files"