r43994 - in /desktop/unstable/gnome-flashback/debian: changelog patches/ patches/series patches/use_nonsymbolic_icons.patch

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Wed Dec 3 18:25:22 UTC 2014


Author: mitya57-guest
Date: Wed Dec  3 18:25:22 2014
New Revision: 43994

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=43994
Log:
Add upstream patch to use non-symbolic icons in volume applet
(closes: #734822).

Added:
    desktop/unstable/gnome-flashback/debian/patches/
    desktop/unstable/gnome-flashback/debian/patches/series
    desktop/unstable/gnome-flashback/debian/patches/use_nonsymbolic_icons.patch
Modified:
    desktop/unstable/gnome-flashback/debian/changelog

Modified: desktop/unstable/gnome-flashback/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-flashback/debian/changelog?rev=43994&op=diff
==============================================================================
--- desktop/unstable/gnome-flashback/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gnome-flashback/debian/changelog	[utf-8] Wed Dec  3 18:25:22 2014
@@ -1,6 +1,8 @@
 gnome-flashback (3.10.0-2) UNRELEASED; urgency=medium
 
   * Update Homepage URL.
+  * Add upstream patch to use non-symbolic icons in volume applet
+    (closes: #734822).
 
  -- Dmitry Shachnev <mitya57 at debian.org>  Fri, 17 Oct 2014 10:07:13 +0400
 

Added: desktop/unstable/gnome-flashback/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-flashback/debian/patches/series?rev=43994&op=file
==============================================================================
--- desktop/unstable/gnome-flashback/debian/patches/series	(added)
+++ desktop/unstable/gnome-flashback/debian/patches/series	[utf-8] Wed Dec  3 18:25:22 2014
@@ -0,0 +1 @@
+use_nonsymbolic_icons.patch

Added: desktop/unstable/gnome-flashback/debian/patches/use_nonsymbolic_icons.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-flashback/debian/patches/use_nonsymbolic_icons.patch?rev=43994&op=file
==============================================================================
--- desktop/unstable/gnome-flashback/debian/patches/use_nonsymbolic_icons.patch	(added)
+++ desktop/unstable/gnome-flashback/debian/patches/use_nonsymbolic_icons.patch	[utf-8] Wed Dec  3 18:25:22 2014
@@ -0,0 +1,80 @@
+Description: use non-symbolic icons in gvc applet, to make them visible
+Origin: upstream
+ https://git.gnome.org/browse/gnome-flashback/commit/?id=a7a54573453ac5d6
+ https://git.gnome.org/browse/gnome-flashback/commit/?id=d8679b7ccff2dd34
+Bug-Debian: https://bugs.debian.org/734822
+Last-Update: 2014-12-03
+
+--- a/gnome-flashback/libsound-applet/gvc-applet.c
++++ b/gnome-flashback/libsound-applet/gvc-applet.c
+@@ -38,18 +38,18 @@
+ #define SCALE_SIZE 128
+ 
+ static const char *output_icon_names[] = {
+-        "audio-volume-muted-symbolic",
+-        "audio-volume-low-symbolic",
+-        "audio-volume-medium-symbolic",
+-        "audio-volume-high-symbolic",
++        "audio-volume-muted",
++        "audio-volume-low",
++        "audio-volume-medium",
++        "audio-volume-high",
+         NULL
+ };
+ 
+ static const char *input_icon_names[] = {
+-        "audio-input-microphone-muted-symbolic",
+-        "audio-input-microphone-low-symbolic",
+-        "audio-input-microphone-medium-symbolic",
+-        "audio-input-microphone-high-symbolic",
++        "microphone-sensitivity-muted",
++        "microphone-sensitivity-low",
++        "microphone-sensitivity-medium",
++        "microphone-sensitivity-high",
+         NULL
+ };
+ 
+--- a/gnome-flashback/libsound-applet/gvc-channel-bar.c
++++ b/gnome-flashback/libsound-applet/gvc-channel-bar.c
+@@ -838,14 +838,14 @@
+                                          g_param_spec_string ("low-icon-name",
+                                                               "Icon Name",
+                                                               "Name of icon to display for this stream",
+-                                                              "audio-volume-low-symbolic",
++                                                              "audio-volume-low",
+                                                               G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+         g_object_class_install_property (object_class,
+                                          PROP_HIGH_ICON_NAME,
+                                          g_param_spec_string ("high-icon-name",
+                                                               "Icon Name",
+                                                               "Name of icon to display for this stream",
+-                                                              "audio-volume-high-symbolic",
++                                                              "audio-volume-high",
+                                                               G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+         g_object_class_install_property (object_class,
+                                          PROP_IS_AMPLIFIED,
+@@ -882,8 +882,8 @@
+         bar->priv = GVC_CHANNEL_BAR_GET_PRIVATE (bar);
+ 
+         bar->priv->base_volume = ADJUSTMENT_MAX_NORMAL;
+-        bar->priv->low_icon_name = g_strdup ("audio-volume-low-symbolic");
+-        bar->priv->high_icon_name = g_strdup ("audio-volume-high-symbolic");
++        bar->priv->low_icon_name = g_strdup ("audio-volume-low");
++        bar->priv->high_icon_name = g_strdup ("audio-volume-high");
+ 
+         bar->priv->orientation = GTK_ORIENTATION_VERTICAL;
+         bar->priv->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0,
+@@ -916,11 +916,11 @@
+         bar->priv->mute_box = gtk_alignment_new (0.5, 0.5, 0, 0);
+         gtk_container_add (GTK_CONTAINER (bar->priv->mute_box), bar->priv->mute_switch);
+ 
+-        bar->priv->low_image = gtk_image_new_from_icon_name ("audio-volume-low-symbolic",
++        bar->priv->low_image = gtk_image_new_from_icon_name ("audio-volume-low",
+                                                              GTK_ICON_SIZE_MENU);
+         gtk_style_context_add_class (gtk_widget_get_style_context (bar->priv->low_image), "dim-label");
+         gtk_widget_set_no_show_all (bar->priv->low_image, TRUE);
+-        bar->priv->high_image = gtk_image_new_from_icon_name ("audio-volume-high-symbolic",
++        bar->priv->high_image = gtk_image_new_from_icon_name ("audio-volume-high",
+                                                               GTK_ICON_SIZE_MENU);
+         gtk_style_context_add_class (gtk_widget_get_style_context (bar->priv->high_image), "dim-label");
+         gtk_widget_set_no_show_all (bar->priv->high_image, TRUE);




More information about the pkg-gnome-commits mailing list