Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xapps for openSUSE:Factory checked 
in at 2021-11-27 00:51:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xapps (Old)
 and      /work/SRC/openSUSE:Factory/.xapps.new.1895 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xapps"

Sat Nov 27 00:51:24 2021 rev:20 rq:933953 version:2.2.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/xapps/xapps.changes      2021-08-01 
21:51:58.379212368 +0200
+++ /work/SRC/openSUSE:Factory/.xapps.new.1895/xapps.changes    2021-11-27 
00:52:13.074616958 +0100
@@ -1,0 +2,11 @@
+Mon Nov 22 16:54:03 UTC 2021 - andy great <andythe_gr...@pm.me>
+
+- Update to version 2.2.5.
+  * xapp-favorites: Fix introspection notation for _get_favorites().
+  * Fix a couple of build warnings.
+- Updates for version 2.2.4.
+  * meson gir: Export 'xapp' as a package
+  * xapp-gtk3-module.c: Apply window icon override to all windows
+    for an app.
+
+-------------------------------------------------------------------

Old:
----
  xapp-2.2.3.tar.gz

New:
----
  xapp-2.2.5.tar.gz

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

Other differences:
------------------
++++++ xapps.spec ++++++
--- /var/tmp/diff_new_pack.AiVcsJ/_old  2021-11-27 00:52:13.670614900 +0100
+++ /var/tmp/diff_new_pack.AiVcsJ/_new  2021-11-27 00:52:13.674614887 +0100
@@ -20,7 +20,7 @@
 %define soname  libxapp
 %define sover   1
 Name:           xapps
-Version:        2.2.3
+Version:        2.2.5
 Release:        0
 Summary:        XApp library and common files
 License:        GPL-3.0-or-later

++++++ xapp-2.2.3.tar.gz -> xapp-2.2.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/debian/changelog 
new/xapp-2.2.5/debian/changelog
--- old/xapp-2.2.3/debian/changelog     2021-07-23 13:21:48.000000000 +0200
+++ new/xapp-2.2.5/debian/changelog     2021-11-22 13:30:44.000000000 +0100
@@ -1,3 +1,21 @@
+xapp (2.2.5) una; urgency=medium
+
+  [ Michael Webster ]
+  * xapp-favorites: Fix introspection notation for _get_favorites().
+  * Fix a couple of build warnings.
+
+ -- Clement Lefebvre <r...@linuxmint.com>  Mon, 22 Nov 2021 12:30:12 +0000
+
+xapp (2.2.4) uma; urgency=medium
+
+  [ Joshua Peisach ]
+  * meson gir: Export 'xapp' as a package
+
+  [ Michael Webster ]
+  * xapp-gtk3-module.c: Apply window icon override to all windows for an app.
+
+ -- Clement Lefebvre <r...@linuxmint.com>  Fri, 15 Oct 2021 15:43:58 +0100
+
 xapp (2.2.3) uma; urgency=medium
 
   [ Michael Webster ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/libxapp/meson.build 
new/xapp-2.2.5/libxapp/meson.build
--- old/xapp-2.2.3/libxapp/meson.build  2021-07-23 13:21:48.000000000 +0200
+++ new/xapp-2.2.5/libxapp/meson.build  2021-11-22 13:30:44.000000000 +0100
@@ -129,6 +129,7 @@
     sources: xapp_headers + xapp_sources + dbus_headers + xapp_enums,
     identifier_prefix: 'XApp',
     symbol_prefix: 'xapp_',
+    export_packages: 'xapp',
     includes: ['GObject-2.0', 'Gtk-3.0'],
     install: true
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/libxapp/xapp-favorites.c 
new/xapp-2.2.5/libxapp/xapp-favorites.c
--- old/xapp-2.2.3/libxapp/xapp-favorites.c     2021-07-23 13:21:48.000000000 
+0200
+++ new/xapp-2.2.5/libxapp/xapp-favorites.c     2021-11-22 13:30:44.000000000 
+0100
@@ -824,7 +824,7 @@
 /**
  * xapp_favorites_get_favorites:
  * @favorites: The #XAppFavorites
- * @mimetypes: (nullable): The mimetypes to filter by for results
+ * @mimetypes: (nullable) (array zero-terminated=1): The mimetypes to filter 
by for results
  *
  * Gets a list of all favorites.  If mimetype is not %NULL, the list will
  * contain only favorites with that mimetype.
@@ -835,8 +835,8 @@
  * Since: 2.0
  */
 GList *
-xapp_favorites_get_favorites (XAppFavorites  *favorites,
-                              const gchar   **mimetypes)
+xapp_favorites_get_favorites (XAppFavorites       *favorites,
+                              const gchar * const *mimetypes)
 {
     g_return_val_if_fail (XAPP_IS_FAVORITES (favorites), NULL);
     XAppFavoritesPrivate *priv = xapp_favorites_get_instance_private 
(favorites);
@@ -844,7 +844,7 @@
     MatchData data;
 
     data.items = NULL;
-    data.mimetypes = mimetypes;
+    data.mimetypes = (const gchar **) mimetypes;
     g_hash_table_foreach (priv->infos,
                           (GHFunc) match_mimetypes,
                           &data);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/libxapp/xapp-favorites.h 
new/xapp-2.2.5/libxapp/xapp-favorites.h
--- old/xapp-2.2.3/libxapp/xapp-favorites.h     2021-07-23 13:21:48.000000000 
+0200
+++ new/xapp-2.2.5/libxapp/xapp-favorites.h     2021-11-22 13:30:44.000000000 
+0100
@@ -16,8 +16,8 @@
 G_DECLARE_FINAL_TYPE (XAppFavorites, xapp_favorites, XAPP, FAVORITES, GObject)
 
 XAppFavorites        *xapp_favorites_get_default            (void);
-GList                *xapp_favorites_get_favorites          (XAppFavorites 
*favorites,
-                                                             const gchar  
**mimetypes);
+GList                *xapp_favorites_get_favorites          (XAppFavorites     
  *favorites,
+                                                             const gchar * 
const *mimetypes);
 gint                  xapp_favorites_get_n_favorites        (XAppFavorites 
*favorites);
 XAppFavoriteInfo     *xapp_favorites_find_by_display_name   (XAppFavorites 
*favorites,
                                                              const gchar   
*display_name);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/libxapp/xapp-gtk3-module.c 
new/xapp-2.2.5/libxapp/xapp-gtk3-module.c
--- old/xapp-2.2.3/libxapp/xapp-gtk3-module.c   2021-07-23 13:21:48.000000000 
+0200
+++ new/xapp-2.2.5/libxapp/xapp-gtk3-module.c   2021-11-22 13:30:44.000000000 
+0100
@@ -98,13 +98,12 @@
 {
     (* original_window_realize) (widget);
 
-    static gint already_applied = 0;
-    if (already_applied)
+    if (g_object_get_data (G_OBJECT (widget), "xapp-module-window-seen"))
     {
         return;
     }
 
-    already_applied = 1;
+    g_object_set_data (G_OBJECT (widget), "xapp-module-window-seen", 
GINT_TO_POINTER (1));
 
     DEBUG ("Realize overridden window (%p).", widget);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/libxapp/xapp-util.c 
new/xapp-2.2.5/libxapp/xapp-util.c
--- old/xapp-2.2.3/libxapp/xapp-util.c  2021-07-23 13:21:48.000000000 +0200
+++ new/xapp-2.2.5/libxapp/xapp-util.c  2021-11-22 13:30:44.000000000 +0100
@@ -112,7 +112,7 @@
  *
  * Converts a pango font description string to a string suitable for use with 
the css "font" tag. The font description must contain the font family and font 
size or conversion will fail and %NULL will be returned
  *
- * Returns: (transfer full) the css compatible font string or %NULL if the 
conversion failed.
+ * Returns: (transfer full): the css compatible font string or %NULL if the 
conversion failed.
  *
  * Since: 2.2
  */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xapp-2.2.3/meson.build new/xapp-2.2.5/meson.build
--- old/xapp-2.2.3/meson.build  2021-07-23 13:21:48.000000000 +0200
+++ new/xapp-2.2.5/meson.build  2021-11-22 13:30:44.000000000 +0100
@@ -1,6 +1,6 @@
 project('xapp',
     'c',
-    version : '2.2.3',
+    version : '2.2.5',
     default_options : [ 'buildtype=debugoptimized' ],
 )
 

Reply via email to