Date: Monday, October 20, 2014 @ 04:26:34 Author: bgyorgy Revision: 120999
upgpkg: guake 0.5.0-2 Fix restoring focus Added: guake/trunk/fix-hiding.patch Modified: guake/trunk/PKGBUILD ------------------+ PKGBUILD | 8 +++++++- fix-hiding.patch | 10 ++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-10-20 01:10:19 UTC (rev 120998) +++ PKGBUILD 2014-10-20 02:26:34 UTC (rev 120999) @@ -2,10 +2,11 @@ # Maintainer: Balló György <ballogyor+arch at gmail dot com> # Contributor: Angel Velasquez <[email protected]> # Contributor: Wilson Pinto Júnior (N3RD3X) <[email protected]> +# Contributor: Attila Bukor <[email protected]> pkgname=guake pkgver=0.5.0 -pkgrel=1 +pkgrel=2 pkgdesc='Drop-down terminal for GNOME' arch=('i686' 'x86_64') url="http://guake.org/" @@ -15,9 +16,11 @@ install=$pkgname.install source=($pkgname-$pkgver.tar.gz::https://github.com/Guake/$pkgname/archive/$pkgver.tar.gz fix-crasher.patch + fix-hiding.patch fix-hotkey.patch) md5sums=('4383b7fcf85a355b4b69dd5cf66ff78f' '12933c13aa1e7beb9431e3367cfaabd0' + '117f21da9744272d51d9e7d977382f27' '77050aeecb837d8c8109ab272f7277e2') prepare() { @@ -26,6 +29,9 @@ # Fix crasher - https://github.com/Guake/guake/issues/373 patch -Np1 -i ../fix-crasher.patch + # Fix restoring focus - https://github.com/Guake/guake/issues/384 + patch -Np1 -i ../fix-hiding.patch + # Fix frozen hotkey - https://github.com/Guake/guake/issues/378 patch -Np1 -i ../fix-hotkey.patch Added: fix-hiding.patch =================================================================== --- fix-hiding.patch (rev 0) +++ fix-hiding.patch 2014-10-20 02:26:34 UTC (rev 120999) @@ -0,0 +1,10 @@ +--- guake-0.5.0.orig/src/guake 2014-10-13 23:11:31.803523945 +0200 ++++ guake-0.5.0.orig/src/guake 2014-10-13 23:11:43.130502724 +0200 +@@ -1094,7 +1094,6 @@ + """Hides the main window of the terminal and sets the visible + flag to False. + """ +- self.window.set_keep_below(True) + self.window.hide() # Don't use hide_all here! + + def get_final_window_monitor(self):
