Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libshumate for openSUSE:Factory 
checked in at 2023-10-24 20:07:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libshumate (Old)
 and      /work/SRC/openSUSE:Factory/.libshumate.new.24901 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libshumate"

Tue Oct 24 20:07:17 2023 rev:9 rq:1119671 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/libshumate/libshumate.changes    2023-09-20 
13:23:11.857765454 +0200
+++ /work/SRC/openSUSE:Factory/.libshumate.new.24901/libshumate.changes 
2023-10-24 20:07:24.870468182 +0200
@@ -1,0 +2,8 @@
+Sun Oct 22 00:42:25 UTC 2023 - Bjørn Lie <bjorn....@gmail.com>
+
+- Update to version 1.1.1:
+  + Fix null reference map source, avoid critical log message when
+    setting a null map source with
+    shumate_viewport_set_reference_map_source().
+
+-------------------------------------------------------------------

Old:
----
  libshumate-1.1.0.obscpio

New:
----
  libshumate-1.1.1.obscpio

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

Other differences:
------------------
++++++ libshumate.spec ++++++
--- /var/tmp/diff_new_pack.ilAaA4/_old  2023-10-24 20:07:26.362522427 +0200
+++ /var/tmp/diff_new_pack.ilAaA4/_new  2023-10-24 20:07:26.366522572 +0200
@@ -22,7 +22,7 @@
 %bcond_with profiling
 
 Name:           libshumate
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        C library providing a GtkWidget to display maps
 License:        LGPL-2.1-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.ilAaA4/_old  2023-10-24 20:07:26.398523736 +0200
+++ /var/tmp/diff_new_pack.ilAaA4/_new  2023-10-24 20:07:26.402523881 +0200
@@ -4,7 +4,7 @@
     <param name="url">https://gitlab.gnome.org/GNOME/libshumate.git</param>
     <param name="scm">git</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
-    <param name="revision">refs/tags/1.1.0</param>
+    <param name="revision">refs/tags/1.1.1</param>
     <param name="versionrewrite-pattern">(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>
   </service>

++++++ libshumate-1.1.0.obscpio -> libshumate-1.1.1.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libshumate-1.1.0/NEWS new/libshumate-1.1.1/NEWS
--- old/libshumate-1.1.0/NEWS   2023-09-16 08:37:03.000000000 +0200
+++ new/libshumate-1.1.1/NEWS   2023-10-21 22:26:34.000000000 +0200
@@ -1,4 +1,10 @@
 =====================
+Version 1.1.1
+=====================
+ - Fix null reference map source, avoid critical log message when setting
+   a null map source with shumate_viewport_set_reference_map_source()
+
+=====================
 Version 1.1.0
 =====================
  - Fix grey background on sprites
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libshumate-1.1.0/meson.build 
new/libshumate-1.1.1/meson.build
--- old/libshumate-1.1.0/meson.build    2023-09-16 08:37:03.000000000 +0200
+++ new/libshumate-1.1.1/meson.build    2023-10-21 22:26:34.000000000 +0200
@@ -1,6 +1,6 @@
 project(
   'libshumate', 'c',
-  version: '1.1.0',
+  version: '1.1.1',
   license: 'LGPLv2.1+',
   meson_version: '>= 0.53.0',
   default_options: [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libshumate-1.1.0/shumate/shumate-viewport.c 
new/libshumate-1.1.1/shumate/shumate-viewport.c
--- old/libshumate-1.1.0/shumate/shumate-viewport.c     2023-09-16 
08:37:03.000000000 +0200
+++ new/libshumate-1.1.1/shumate/shumate-viewport.c     2023-10-21 
22:26:34.000000000 +0200
@@ -452,12 +452,19 @@
                                            ShumateMapSource *map_source)
 {
   g_return_if_fail (SHUMATE_IS_VIEWPORT (self));
-
-  shumate_viewport_set_max_zoom_level (self, 
shumate_map_source_get_max_zoom_level (map_source));
-  shumate_viewport_set_min_zoom_level (self, 
shumate_map_source_get_min_zoom_level (map_source));
+  g_return_if_fail (map_source == NULL || SHUMATE_IS_MAP_SOURCE (map_source));
 
   if (g_set_object (&self->ref_map_source, map_source))
-    g_object_notify_by_pspec (G_OBJECT (self), 
obj_properties[PROP_REFERENCE_MAP_SOURCE]);
+    {
+      if (map_source != NULL)
+        {
+          shumate_viewport_set_max_zoom_level (self, 
shumate_map_source_get_max_zoom_level (map_source));
+          shumate_viewport_set_min_zoom_level (self, 
shumate_map_source_get_min_zoom_level (map_source));
+        }
+
+      g_object_notify_by_pspec (G_OBJECT (self), 
obj_properties[PROP_REFERENCE_MAP_SOURCE]);
+    }
+
 }
 
 /**

++++++ libshumate.obsinfo ++++++
--- /var/tmp/diff_new_pack.ilAaA4/_old  2023-10-24 20:07:26.614531589 +0200
+++ /var/tmp/diff_new_pack.ilAaA4/_new  2023-10-24 20:07:26.618531735 +0200
@@ -1,5 +1,5 @@
 name: libshumate
-version: 1.1.0
-mtime: 1694846223
-commit: 18587662286d0f551e33e3411b3a0c1375507564
+version: 1.1.1
+mtime: 1697919994
+commit: 07ca1e45c3deea741ef3f46717adf8949e06ec03
 

Reply via email to