Hello community,

here is the log from the commit of package xfce4-panel-plugin-weather for 
openSUSE:12.3 checked in at 2013-02-19 13:41:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.3/xfce4-panel-plugin-weather (Old)
 and      /work/SRC/openSUSE:12.3/.xfce4-panel-plugin-weather.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xfce4-panel-plugin-weather", Maintainer is 
"xfce-maintain...@suse.de"

Changes:
--------
--- 
/work/SRC/openSUSE:12.3/xfce4-panel-plugin-weather/xfce4-panel-plugin-weather.changes
       2013-01-31 01:45:50.000000000 +0100
+++ 
/work/SRC/openSUSE:12.3/.xfce4-panel-plugin-weather.new/xfce4-panel-plugin-weather.changes
  2013-02-19 13:41:27.000000000 +0100
@@ -1,0 +2,38 @@
+Tue Feb 19 09:26:32 UTC 2013 - g...@opensuse.org
+
+- update to version 0.8.3
+  - replace internal HTTP implementation by libsoup; this gets the
+    search dialog working again and makes the plugin future-proof
+  - fix timezone issues by putting the plugin into the timezone of the
+    chosen location
+  - cache and interpolate data
+    - possibly improves current weather
+    - keeps plugin going for a while without internet connection
+  - support icon themes (see README for using and creating themes!)
+    - add brand new icon theme "Simplistic" by Simon Steinbeiß
+    - add small variation of the "Liquid" theme for dark panels
+    - improvements to existing icons
+  - rework configuration dialog
+    - settings are applied instantaneous
+    - tooltips provide encyclopedic information about weather-related
+      stuff, enhancing user-experience
+    - the Location tab lets you tweak latitude, longitude, altitude and
+      timezone (autodetection powered by GeoNames)
+    - the Units page does away with the insufficient imperial/metric
+      checkbox and empowers you to choose the units used in your
+      country
+    - useful appearance tweaks
+  - improve the scrollbox (font, color, multiple lines)
+  - add new (calculated) values: dew point and apparent temperature
+  - optimize CPU usage and power-save mode using upower
+  - improve download handling and widget updates
+  - improve UI feedback by making the main plugin container a panel
+    toggle button
+  - improve support for RTL languages
+  - many translation updates
+  - update README with important and useful information
+- added
+  xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch
+  which returns a bogus value in case of an unhandled switch case
+
+-------------------------------------------------------------------

Old:
----
  xfce4-weather-plugin-0.8.2.tar.bz2

New:
----
  xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch
  xfce4-weather-plugin-0.8.3.tar.bz2

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

Other differences:
------------------
++++++ xfce4-panel-plugin-weather.spec ++++++
--- /var/tmp/diff_new_pack.wfyjho/_old  2013-02-19 13:41:28.000000000 +0100
+++ /var/tmp/diff_new_pack.wfyjho/_new  2013-02-19 13:41:28.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xfce4-panel-plugin-weather
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,21 +20,25 @@
 %define plugin_name xfce4-weather-plugin
 
 Name:           xfce4-panel-plugin-weather
-Version:        0.8.2
+Version:        0.8.3
 Release:        0
 Summary:        Weather Condition Monitoring Plugin for the Xfce Panel
 License:        GPL-2.0+
 Group:          System/GUI/XFCE
 Url:            
http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin
 Source0:        
http://archive.xfce.org/src/panel-plugins/%{plugin_name}/0.8/%{plugin_name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM 
xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch 
g...@opensuse.org -- Return bogus value in case of an unhandled switch case
+Patch0:         
xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gthread-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(libsoup-2.4)
 BuildRequires:  pkgconfig(libxfce4panel-1.0)
 BuildRequires:  pkgconfig(libxfce4ui-1)
 BuildRequires:  pkgconfig(libxfce4util-1.0)
 BuildRequires:  pkgconfig(libxml-2.0)
+BuildRequires:  pkgconfig(upower-glib)
 Requires:       xfce4-panel >= %{panel_version}
 # uses exo-open
 Requires:       exo-tools
@@ -48,6 +52,7 @@
 
 %prep
 %setup -q -n %{plugin_name}-%{version}
+%patch0 -p1
 
 %build
 %configure --disable-static

++++++ xfce4-panel-plugin-weather-fix-no-return-in-nonvoid-function.patch ++++++
Index: xfce4-weather-plugin-0.8.3/panel-plugin/weather-data.c
===================================================================
--- xfce4-weather-plugin-0.8.3.orig/panel-plugin/weather-data.c
+++ xfce4-weather-plugin-0.8.3/panel-plugin/weather-data.c
@@ -260,6 +260,8 @@ calc_apparent_temperature(const xml_loca
         return 1.41 - 1.162 * windspeed + 0.980 * temp
             + 0.0124 * windspeed * windspeed + 0.0185 * windspeed * temp;
     }
+    /* error */
+    return -1000.0;
 }
 
 
++++++ xfce4-weather-plugin-0.8.2.tar.bz2 -> xfce4-weather-plugin-0.8.3.tar.bz2 
++++++
++++ 138113 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to