r43966 - in /packages/unstable/gnome-shell-extensions/debian: changelog patches/apps-center-labels.patch patches/menu-arrows-icons.patch patches/series patches/window-list-pointerInNotification.patch

joss at users.alioth.debian.org joss at users.alioth.debian.org
Sun Nov 30 15:07:11 UTC 2014


Author: joss
Date: Sun Nov 30 15:07:11 2014
New Revision: 43966

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=43966
Log:
* New upstream bugfix release.
* menu-arrows-icons: new patch. Make arrows consistent with the rest 
  of the shell.
* apps-center-labels.patch: patch from upstream git. Center labels 
  vertically in the applications menu.
* window-list-pointerInNotification.patch: patch from upstream git. 
  Update window-list extension for an older shell API change.

Added:
    packages/unstable/gnome-shell-extensions/debian/patches/apps-center-labels.patch
    packages/unstable/gnome-shell-extensions/debian/patches/menu-arrows-icons.patch
    packages/unstable/gnome-shell-extensions/debian/patches/window-list-pointerInNotification.patch
Modified:
    packages/unstable/gnome-shell-extensions/debian/changelog
    packages/unstable/gnome-shell-extensions/debian/patches/series

Modified: packages/unstable/gnome-shell-extensions/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-shell-extensions/debian/changelog?rev=43966&op=diff
==============================================================================
--- packages/unstable/gnome-shell-extensions/debian/changelog	[utf-8] (original)
+++ packages/unstable/gnome-shell-extensions/debian/changelog	[utf-8] Sun Nov 30 15:07:11 2014
@@ -1,3 +1,15 @@
+gnome-shell-extensions (3.14.2-1) unstable; urgency=medium
+
+  * New upstream bugfix release.
+  * menu-arrows-icons: new patch. Make arrows consistent with the rest 
+    of the shell.
+  * apps-center-labels.patch: patch from upstream git. Center labels 
+    vertically in the applications menu.
+  * window-list-pointerInNotification.patch: patch from upstream git. 
+    Update window-list extension for an older shell API change.
+
+ -- Josselin Mouette <joss at debian.org>  Sun, 30 Nov 2014 16:06:59 +0100
+
 gnome-shell-extensions (3.14.1-1) unstable; urgency=medium
 
   * New upstream release.

Added: packages/unstable/gnome-shell-extensions/debian/patches/apps-center-labels.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-shell-extensions/debian/patches/apps-center-labels.patch?rev=43966&op=file
==============================================================================
--- packages/unstable/gnome-shell-extensions/debian/patches/apps-center-labels.patch	(added)
+++ packages/unstable/gnome-shell-extensions/debian/patches/apps-center-labels.patch	[utf-8] Sun Nov 30 15:07:11 2014
@@ -0,0 +1,27 @@
+From 79f263d1edbd6f7cfe13cf89933941b439325cee Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner at gnome.org>
+Date: Wed, 26 Nov 2014 19:03:49 +0100
+Subject: apps-menu: Center app labels
+
+Currently labels are not vertically centered, unlike icons.
+Fix this.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=740724
+
+diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
+index a8fb74d..f8438fd 100644
+--- a/extensions/apps-menu/extension.js
++++ b/extensions/apps-menu/extension.js
+@@ -58,7 +58,8 @@ const ApplicationMenuItem = new Lang.Class({
+         this._iconBin = new St.Bin();
+         this.actor.add_child(this._iconBin);
+ 
+-        let appLabel = new St.Label({ text: app.get_name() });
++        let appLabel = new St.Label({ text: app.get_name(), y_expand: true,
++                                      y_align: Clutter.ActorAlign.CENTER });
+         this.actor.add_child(appLabel, { expand: true });
+         this.actor.label_actor = appLabel;
+ 
+-- 
+cgit v0.10.1
+

Added: packages/unstable/gnome-shell-extensions/debian/patches/menu-arrows-icons.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-shell-extensions/debian/patches/menu-arrows-icons.patch?rev=43966&op=file
==============================================================================
--- packages/unstable/gnome-shell-extensions/debian/patches/menu-arrows-icons.patch	(added)
+++ packages/unstable/gnome-shell-extensions/debian/patches/menu-arrows-icons.patch	[utf-8] Sun Nov 30 15:07:11 2014
@@ -0,0 +1,45 @@
+Index: gnome-shell-extensions-3.14.2/extensions/apps-menu/extension.js
+===================================================================
+--- gnome-shell-extensions-3.14.2.orig/extensions/apps-menu/extension.js	2014-10-07 13:54:01.000000000 +0200
++++ gnome-shell-extensions-3.14.2/extensions/apps-menu/extension.js	2014-11-30 15:59:57.300620972 +0100
+@@ -283,9 +283,7 @@ const ApplicationsButton = new Lang.Clas
+                                      y_expand: true,
+                                      y_align: Clutter.ActorAlign.CENTER });
+         hbox.add_child(this._label);
+-        hbox.add_child(new St.Label({ text: '\u25BE',
+-                                      y_expand: true,
+-                                      y_align: Clutter.ActorAlign.CENTER }));
++        hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM));
+ 
+         this.actor.add_actor(hbox);
+         this.actor.name = 'panelApplications';
+Index: gnome-shell-extensions-3.14.2/extensions/drive-menu/extension.js
+===================================================================
+--- gnome-shell-extensions-3.14.2.orig/extensions/drive-menu/extension.js	2014-11-30 15:59:14.629264311 +0100
++++ gnome-shell-extensions-3.14.2/extensions/drive-menu/extension.js	2014-11-30 15:59:32.344997226 +0100
+@@ -128,9 +128,7 @@ const DriveMenu = new Lang.Class({
+                                  style_class: 'system-status-icon' });
+ 
+         hbox.add_child(icon);
+-        hbox.add_child(new St.Label({ text: '\u25BE',
+-                                      y_expand: true,
+-                                      y_align: Clutter.ActorAlign.CENTER }));
++        hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM));
+         this.actor.add_child(hbox);
+ 
+ 	this._monitor = Gio.VolumeMonitor.get();
+Index: gnome-shell-extensions-3.14.2/extensions/places-menu/extension.js
+===================================================================
+--- gnome-shell-extensions-3.14.2.orig/extensions/places-menu/extension.js	2014-10-07 13:54:01.000000000 +0200
++++ gnome-shell-extensions-3.14.2/extensions/places-menu/extension.js	2014-11-30 15:57:44.382624700 +0100
+@@ -82,9 +82,7 @@ const PlacesMenu = new Lang.Class({
+                                    y_expand: true,
+                                    y_align: Clutter.ActorAlign.CENTER });
+         hbox.add_child(label);
+-        hbox.add_child(new St.Label({ text: '\u25BE',
+-                                      y_expand: true,
+-                                      y_align: Clutter.ActorAlign.CENTER }));
++        hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM));
+         this.actor.add_actor(hbox);
+ 
+         this.placesManager = new PlaceDisplay.PlacesManager();

Modified: packages/unstable/gnome-shell-extensions/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-shell-extensions/debian/patches/series?rev=43966&op=diff
==============================================================================
--- packages/unstable/gnome-shell-extensions/debian/patches/series	[utf-8] (original)
+++ packages/unstable/gnome-shell-extensions/debian/patches/series	[utf-8] Sun Nov 30 15:07:11 2014
@@ -1,2 +1,5 @@
 dont-require-nautilus-classic.patch
 gnome-session-classic-wrapper-script.patch
+menu-arrows-icons.patch
+apps-center-labels.patch
+window-list-pointerInNotification.patch

Added: packages/unstable/gnome-shell-extensions/debian/patches/window-list-pointerInNotification.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-shell-extensions/debian/patches/window-list-pointerInNotification.patch?rev=43966&op=file
==============================================================================
--- packages/unstable/gnome-shell-extensions/debian/patches/window-list-pointerInNotification.patch	(added)
+++ packages/unstable/gnome-shell-extensions/debian/patches/window-list-pointerInNotification.patch	[utf-8] Sun Nov 30 15:07:11 2014
@@ -0,0 +1,24 @@
+From 2f49d77931b57d20ba37f03b9a0733f18cbba5c8 Mon Sep 17 00:00:00 2001
+From: Sylvain Pasche <sylvain.pasche at gmail.com>
+Date: Sat, 1 Nov 2014 22:03:43 +0100
+Subject: window-list: _pointerInTray was renamed to _pointerInNotification in
+ bug 695800
+
+https://bugzilla.gnome.org/show_bug.cgi?id=737486
+
+diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js
+index 5115a68..0cee654 100644
+--- a/extensions/window-list/extension.js
++++ b/extensions/window-list/extension.js
+@@ -1188,7 +1188,7 @@ function enable() {
+ 
+     windowList.actor.connect('notify::hover', Lang.bind(Main.messageTray,
+         function() {
+-            this._pointerInTray = windowList.actor.hover;
++            this._pointerInNotification = windowList.actor.hover;
+             this._updateState();
+         }));
+ 
+-- 
+cgit v0.10.1
+




More information about the pkg-gnome-commits mailing list