Hello community,

here is the log from the commit of package xfce4-panel-plugin-cpugraph for 
openSUSE:12.2 checked in at 2012-07-02 21:36:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.2/xfce4-panel-plugin-cpugraph (Old)
 and      /work/SRC/openSUSE:12.2/.xfce4-panel-plugin-cpugraph.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xfce4-panel-plugin-cpugraph", Maintainer is 
"[email protected]"

Changes:
--------
--- 
/work/SRC/openSUSE:12.2/xfce4-panel-plugin-cpugraph/xfce4-panel-plugin-cpugraph.changes
     2012-06-25 16:17:29.000000000 +0200
+++ 
/work/SRC/openSUSE:12.2/.xfce4-panel-plugin-cpugraph.new/xfce4-panel-plugin-cpugraph.changes
        2012-07-02 21:36:16.000000000 +0200
@@ -1,0 +2,17 @@
+Mon Jul  2 15:21:09 UTC 2012 - [email protected]
+
+- update to version 1.0.4
+  - fix build failure with xfce4-panel 4.8
+- added xfce4-panel-plugin-cpugrap-only-set-color-if-enabled.patch
+  in order to only set bar color if bars are enabled (bxo#907,
+  backported from upstream git)
+
+-------------------------------------------------------------------
+Sun Jul  1 07:21:14 UTC 2012 - [email protected]
+
+- update to version 1.0.3
+  - better compliance with panel plugin HIG
+  - add an option allowing to set the bar color
+  - fix transparency issues
+
+-------------------------------------------------------------------

Old:
----
  xfce4-cpugraph-plugin-1.0.2.tar.bz2

New:
----
  xfce4-cpugraph-plugin-1.0.4.tar.bz2
  xfce4-panel-plugin-cpugrap-only-set-color-if-enabled.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xfce4-panel-plugin-cpugraph.spec ++++++
--- /var/tmp/diff_new_pack.Eyaxnk/_old  2012-07-02 21:36:16.000000000 +0200
+++ /var/tmp/diff_new_pack.Eyaxnk/_new  2012-07-02 21:36:16.000000000 +0200
@@ -20,13 +20,15 @@
 %define plugin_name xfce4-cpugraph-plugin
 
 Name:           xfce4-panel-plugin-cpugraph
-Version:        1.0.2
+Version:        1.0.4
 Release:        0
 Summary:        CPU Graph Plugin for the Xfce Panel
 License:        GPL-2.0+
 Group:          System/GUI/XFCE
 Url:            
http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin
 Source0:        
http://archive.xfce.org/src/panel-plugins/%{plugin_name}/1.0/%{plugin_name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM 
xfce4-panel-plugin-cpugrap-only-set-color-if-enabled.patch bxo#9071 
[email protected] -- Only set bar color if bars are enabled (backported from 
upstream git)
+Patch0:         xfce4-panel-plugin-cpugrap-only-set-color-if-enabled.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gtk+-2.0)
@@ -44,6 +46,7 @@
 
 %prep
 %setup -q -n %{plugin_name}-%{version}
+%patch0 -p1
 
 %build
 %configure --disable-static

++++++ xfce4-cpugraph-plugin-1.0.2.tar.bz2 -> 
xfce4-cpugraph-plugin-1.0.4.tar.bz2 ++++++
++++ 2270 lines of diff (skipped)

++++++ xfce4-panel-plugin-cpugrap-only-set-color-if-enabled.patch ++++++
>From 25b2e1e8deec574201092559901d6154dc608ab7 Mon Sep 17 00:00:00 2001
From: Landry Breuil <[email protected]>
Date: Mon, 02 Jul 2012 15:12:03 +0000
Subject: Only set bar color if bars are enabled (bug #9071)

---
diff --git a/panel-plugin/cpu.c b/panel-plugin/cpu.c
index b1030c2..c454124 100644
--- a/panel-plugin/cpu.c
+++ b/panel-plugin/cpu.c
@@ -517,7 +517,7 @@ void set_color( CPUGraph *base, guint number, GdkColor 
color )
                gtk_widget_modify_bg( base->draw_area, GTK_STATE_INSENSITIVE, 
&base->colors[0] );
                gtk_widget_modify_bg( base->draw_area, GTK_STATE_NORMAL, 
&base->colors[0] );
        }
-       if( number == 4 )
+       if( number == 4 && base->has_bars )
        {
                n = nb_bars( base );
 
--
cgit v0.9.0.3
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to