Hello community,

here is the log from the commit of package gnome-weather for openSUSE:Factory 
checked in at 2020-04-11 23:47:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-weather (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-weather.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-weather"

Sat Apr 11 23:47:38 2020 rev:39 rq:793206 version:3.34.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-weather/gnome-weather.changes      
2020-04-05 20:53:27.729179777 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-weather.new.3248/gnome-weather.changes    
2020-04-11 23:48:25.403175008 +0200
@@ -1,0 +2,7 @@
+Fri Apr 10 09:55:37 UTC 2020 - Bjørn Lie <bjorn....@gmail.com>
+
+- Update to version 3.34.2:
+  + Bugs fixed: Unknown temperature and cloud conditions when using
+    autolocation.
+
+-------------------------------------------------------------------

Old:
----
  gnome-weather-3.34.1.tar.xz

New:
----
  gnome-weather-3.34.2.tar.xz

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

Other differences:
------------------
++++++ gnome-weather.spec ++++++
--- /var/tmp/diff_new_pack.h38QkB/_old  2020-04-11 23:48:26.303175693 +0200
+++ /var/tmp/diff_new_pack.h38QkB/_new  2020-04-11 23:48:26.307175696 +0200
@@ -18,7 +18,7 @@
 
 %define _name org.gnome.Weather
 Name:           gnome-weather
-Version:        3.34.1
+Version:        3.34.2
 Release:        0
 Summary:        Weather App for GNOME
 License:        GPL-2.0-or-later

++++++ gnome-weather-3.34.1.tar.xz -> gnome-weather-3.34.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-weather-3.34.1/NEWS 
new/gnome-weather-3.34.2/NEWS
--- old/gnome-weather-3.34.1/NEWS       2020-04-03 20:22:47.996798300 +0200
+++ new/gnome-weather-3.34.2/NEWS       2020-04-10 02:46:38.602450100 +0200
@@ -1,3 +1,9 @@
+3.34.2
+======
+
+* Bugs fixed:
+  - #95 Unknown temperature and cloud conditions when using autolocation 
(Michael Catanzaro)
+
 3.34.1
 ======
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-weather-3.34.1/data/org.gnome.Weather.appdata.xml.in.in 
new/gnome-weather-3.34.2/data/org.gnome.Weather.appdata.xml.in.in
--- old/gnome-weather-3.34.1/data/org.gnome.Weather.appdata.xml.in.in   
2020-04-03 20:22:47.997798200 +0200
+++ new/gnome-weather-3.34.2/data/org.gnome.Weather.appdata.xml.in.in   
2020-04-10 02:46:38.604450200 +0200
@@ -46,6 +46,8 @@
     <id>org.gnome.Weather.desktop</id>
   </provides>
   <releases>
+    <release date="2020-04-09" version="3.34.2"/>
+    <release date="2020-04-03" version="3.34.1"/>
     <release date="2019-09-24" version="3.34.0">
       <description>
         <p>GNOME Weather 3.34 includes bug fixes and general improvements:</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-weather-3.34.1/meson.build 
new/gnome-weather-3.34.2/meson.build
--- old/gnome-weather-3.34.1/meson.build        2020-04-03 20:22:48.025799000 
+0200
+++ new/gnome-weather-3.34.2/meson.build        2020-04-10 02:46:38.626450800 
+0200
@@ -1,5 +1,5 @@
 project('gnome-weather', 'c',
-  version: '3.34.1',
+  version: '3.34.2',
   meson_version: '>= 0.50.0',
   license: 'GPL2+'
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gnome-weather-3.34.1/src/app/currentLocationController.js 
new/gnome-weather-3.34.2/src/app/currentLocationController.js
--- old/gnome-weather-3.34.1/src/app/currentLocationController.js       
2020-04-03 20:22:48.033799200 +0200
+++ new/gnome-weather-3.34.2/src/app/currentLocationController.js       
2020-04-10 02:46:38.634451000 +0200
@@ -87,10 +87,11 @@
     _onLocationUpdated(simple) {
         let geoclueLocation = simple.get_location();
 
-        this.currentLocation = 
GWeather.Location.new_detached(geoclueLocation.description,
-                                                              null,
-                                                              
geoclueLocation.latitude,
-                                                              
geoclueLocation.longitude);
+        this.currentLocation = GWeather.Location.get_world()
+                                                .find_nearest_city(
+                                                    geoclueLocation.latitude,
+                                                    geoclueLocation.longitude
+                                                );
         this._world.currentLocationChanged(this.currentLocation);
     }
 


Reply via email to