Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libadwaita for openSUSE:Factory 
checked in at 2023-09-06 18:56:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libadwaita (Old)
 and      /work/SRC/openSUSE:Factory/.libadwaita.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libadwaita"

Wed Sep  6 18:56:22 2023 rev:21 rq:1109062 version:1.3.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/libadwaita/libadwaita.changes    2023-08-09 
17:24:20.945042508 +0200
+++ /work/SRC/openSUSE:Factory/.libadwaita.new.1766/libadwaita.changes  
2023-09-06 18:57:44.850605263 +0200
@@ -1,0 +2,14 @@
+Mon Sep  4 19:10:58 UTC 2023 - Bjørn Lie <bjorn....@gmail.com>
+
+- Update to version 1.3.5:
+  + Set the correct gettext domain on all widgets.
+  + AdwExpanderRow: Accessibility fixes.
+  + AdwStyleManager: Fix over-releasing a string on macOS.
+  + Demo: Correctly dismiss the last toast in the dialogs demo.
+  + Stylesheet:
+    - Fix menubutton.card corners.
+    - Fix button.card focus ring transition.
+    - Avoid background overdraw in GtkColumnView.
+  + Updated translations.
+
+-------------------------------------------------------------------

Old:
----
  libadwaita-1.3.4.obscpio

New:
----
  libadwaita-1.3.5.obscpio

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

Other differences:
------------------
++++++ libadwaita.spec ++++++
--- /var/tmp/diff_new_pack.2nk8yV/_old  2023-09-06 18:57:46.226654316 +0200
+++ /var/tmp/diff_new_pack.2nk8yV/_new  2023-09-06 18:57:46.230654458 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libadwaita
-Version:        1.3.4
+Version:        1.3.5
 Release:        0
 Summary:        Building blocks for modern GNOME applications
 License:        LGPL-2.1-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.2nk8yV/_old  2023-09-06 18:57:46.254655314 +0200
+++ /var/tmp/diff_new_pack.2nk8yV/_new  2023-09-06 18:57:46.258655456 +0200
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="manual">
     <param name="url">https://gitlab.gnome.org/GNOME/libadwaita.git</param>
     <param name="scm">git</param>
-    <param name="revision">refs/tags/1.3.4</param>
+    <param name="revision">refs/tags/1.3.5</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ libadwaita-1.3.4.obscpio -> libadwaita-1.3.5.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/NEWS new/libadwaita-1.3.5/NEWS
--- old/libadwaita-1.3.4/NEWS   2023-08-04 23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/NEWS   2023-09-03 10:50:51.000000000 +0200
@@ -1,4 +1,22 @@
 =============
+Version 1.3.5
+=============
+
+- Set the correct gettext domain on all widgets
+- AdwExpanderRow
+  - Accessibility fixes
+- AdwStyleManager
+  - Fix over-releasing a string on macOS
+- Demo
+  - Correctly dismiss the last toast in the dialogs demo
+- Stylesheet
+  - Fix menubutton.card corners
+  - Fix button.card focus ring transition
+  - Avoid background overdraw in GtkColumnView
+- Translation updates
+  - Spanish
+
+=============
 Version 1.3.4
 =============
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.3.4/demo/pages/dialogs/adw-demo-page-dialogs.c 
new/libadwaita-1.3.5/demo/pages/dialogs/adw-demo-page-dialogs.c
--- old/libadwaita-1.3.4/demo/pages/dialogs/adw-demo-page-dialogs.c     
2023-08-04 23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/demo/pages/dialogs/adw-demo-page-dialogs.c     
2023-09-03 10:50:51.000000000 +0200
@@ -5,6 +5,8 @@
 struct _AdwDemoPageDialogs
 {
   AdwBin parent_instance;
+
+  AdwToast *last_toast;
 };
 
 G_DEFINE_FINAL_TYPE (AdwDemoPageDialogs, adw_demo_page_dialogs, ADW_TYPE_BIN)
@@ -17,12 +19,25 @@
 static guint signals[SIGNAL_LAST_SIGNAL];
 
 static void
+toast_dismissed_cb (AdwToast           *toast,
+                    AdwDemoPageDialogs *self)
+{
+  if (toast == self->last_toast)
+    self->last_toast = NULL;
+}
+
+static void
 message_cb (AdwMessageDialog   *dialog,
             GAsyncResult       *result,
             AdwDemoPageDialogs *self)
 {
   const char *response = adw_message_dialog_choose_finish (dialog, result);
   AdwToast *toast = adw_toast_new_format (_("Dialog response: %s"), response);
+  g_signal_connect_object (toast, "dismissed", G_CALLBACK 
(toast_dismissed_cb), self, 0);
+
+  if (self->last_toast)
+    adw_toast_dismiss (self->last_toast);
+  self->last_toast = toast;
 
   g_signal_emit (self, signals[SIGNAL_ADD_TOAST], 0, toast);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/meson.build 
new/libadwaita-1.3.5/meson.build
--- old/libadwaita-1.3.4/meson.build    2023-08-04 23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/meson.build    2023-09-03 10:50:51.000000000 +0200
@@ -1,5 +1,5 @@
 project('libadwaita', 'c',
-          version: '1.3.4',
+          version: '1.3.5',
           license: 'LGPL-2.1-or-later',
     meson_version: '>= 0.59.0',
   default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 
'c_std=gnu11' ],
@@ -29,7 +29,7 @@
 # to 0. When bumping the second version, set the third one to zero.
 #
 # A lot easier than libtool, right?
-libversion = '0.3.4'
+libversion = '0.3.5'
 # The so major version of the library
 soversion = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/po/es.po 
new/libadwaita-1.3.5/po/es.po
--- old/libadwaita-1.3.4/po/es.po       2023-08-04 23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/po/es.po       2023-09-03 10:50:51.000000000 +0200
@@ -5,14 +5,15 @@
 # FULL NAME <EMAIL@ADDRESS>, 2020.
 # Miguel Ángel Nieto <cor...@miguelangelnieto.net>, 2021.
 # Daniel Mustieles <daniel.mustie...@gmail.com>, 2022-2023.
+# Daniel Mustieles García <daniel.mustie...@gmail.com>, 2023.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: libhandy master\n"
 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/libadwaita/issues\n";
-"POT-Creation-Date: 2023-03-06 12:53+0000\n"
-"PO-Revision-Date: 2023-03-13 10:46+0100\n"
-"Last-Translator: Daniel Mustieles <daniel.mustie...@gmail.com>\n"
+"POT-Creation-Date: 2023-08-05 08:39+0000\n"
+"PO-Revision-Date: 2023-08-08 08:56+0200\n"
+"Last-Translator: Daniel Mustieles García <daniel.mustie...@gmail.com>\n"
 "Language-Team: Spanish - Spain <gnome-es-l...@gnome.org>\n"
 "Language: es_ES\n"
 "MIME-Version: 1.0\n"
@@ -21,133 +22,133 @@
 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "X-Generator: Gtranslator 42.0\n"
 
-#: src/adw-about-window.c:203
+#: src/adw-about-window.c:206
 msgid "GNU General Public License, version 2 or later"
 msgstr "Licencia Pública General GNU, versión 2 o posterior"
 
-#: src/adw-about-window.c:204
+#: src/adw-about-window.c:207
 msgid "GNU General Public License, version 3 or later"
 msgstr "Licencia Pública General de GNU, versión 3 o posterior"
 
-#: src/adw-about-window.c:205
+#: src/adw-about-window.c:208
 msgid "GNU Lesser General Public License, version 2.1 or later"
 msgstr "Licencia Pública General Reducida de GNU, versión 2.1 o posterior"
 
-#: src/adw-about-window.c:206
+#: src/adw-about-window.c:209
 msgid "GNU Lesser General Public License, version 3 or later"
 msgstr "Licencia Pública General Reducida de GNU, versión 3 o posterior"
 
-#: src/adw-about-window.c:207
+#: src/adw-about-window.c:210
 msgid "BSD 2-Clause License"
 msgstr "Licencia BSD modificada (de 2 cláusulas)"
 
-#: src/adw-about-window.c:208
+#: src/adw-about-window.c:211
 msgid "The MIT License (MIT)"
 msgstr "La licencia MIT (MIT)"
 
-#: src/adw-about-window.c:209
+#: src/adw-about-window.c:212
 msgid "Artistic License 2.0"
 msgstr "Licencia artística 2.0"
 
-#: src/adw-about-window.c:210
+#: src/adw-about-window.c:213
 msgid "GNU General Public License, version 2 only"
 msgstr "Licencia Pública General de GNU, sólo versión 2"
 
-#: src/adw-about-window.c:211
+#: src/adw-about-window.c:214
 msgid "GNU General Public License, version 3 only"
 msgstr "Licencia Pública General de GNU, sólo versión 3"
 
-#: src/adw-about-window.c:212
+#: src/adw-about-window.c:215
 msgid "GNU Lesser General Public License, version 2.1 only"
 msgstr "Licencia Pública General Reducida de GNU, sólo versión 2.1"
 
-#: src/adw-about-window.c:213
+#: src/adw-about-window.c:216
 msgid "GNU Lesser General Public License, version 3 only"
 msgstr "Licencia Pública General Reducida de GNU, sólo versión 3"
 
-#: src/adw-about-window.c:214
+#: src/adw-about-window.c:217
 msgid "GNU Affero General Public License, version 3 or later"
 msgstr "Licencia Pública General Affero de GNU, versión 3 o posterior"
 
-#: src/adw-about-window.c:215
+#: src/adw-about-window.c:218
 msgid "GNU Affero General Public License, version 3 only"
 msgstr "Licencia Pública General Affero de GNU, sólo versión 3"
 
-#: src/adw-about-window.c:216
+#: src/adw-about-window.c:219
 msgid "BSD 3-Clause License"
 msgstr "Licencia BSD modificada (de 3 cláusulas)"
 
-#: src/adw-about-window.c:217
+#: src/adw-about-window.c:220
 msgid "Apache License, Version 2.0"
 msgstr "Licencia Apache, versión 2.0"
 
-#: src/adw-about-window.c:218
+#: src/adw-about-window.c:221
 msgid "Mozilla Public License 2.0"
 msgstr "Licencia pública de Mozilla 2.0"
 
-#: src/adw-about-window.c:529
+#: src/adw-about-window.c:535
 msgid "Code by"
 msgstr "Código fuente por"
 
-#: src/adw-about-window.c:530
+#: src/adw-about-window.c:536
 msgid "Design by"
 msgstr "Diseño por"
 
-#: src/adw-about-window.c:531
+#: src/adw-about-window.c:537
 msgid "Artwork by"
 msgstr "Arte por"
 
-#: src/adw-about-window.c:532
+#: src/adw-about-window.c:538
 msgid "Documentation by"
 msgstr "Documentación por"
 
-#: src/adw-about-window.c:533
+#: src/adw-about-window.c:539
 msgid "Translated by"
 msgstr "Traducido por"
 
 #. Translators: this is the license preamble; the string at the end
 #. * contains the name of the license as link text.
 #.
-#: src/adw-about-window.c:562
+#: src/adw-about-window.c:568
 #, c-format
 msgid ""
-"This application comes with absolutely no warranty. See the <a "
-"href=\"%s\">%s</a> for details."
+"This application comes with absolutely no warranty. See the <a href=\"%s\">"
+"%s</a> for details."
 msgstr ""
 "Este programa viene SIN NINGUNA GARANTÍA. Consulte la <a href=\"%s\">%s</a> "
 "para obtener más detalles."
 
-#: src/adw-about-window.c:640
+#: src/adw-about-window.c:646
 msgid "This Application"
 msgstr "Esta aplicación"
 
-#: src/adw-about-window.c:942
+#: src/adw-about-window.c:948
 #, c-format
 msgid "Version %s"
 msgstr "Versión %s"
 
-#: src/adw-about-window.c:968
+#: src/adw-about-window.c:974
 msgid "Unable to parse release notes:"
 msgstr "No se pueden analizar las notas de publicación:"
 
-#: src/adw-about-window.c:974
+#: src/adw-about-window.c:980
 #, c-format
 msgid "Line: %d, character: %d"
 msgstr "Línea %d carácter: %d"
 
-#: src/adw-about-window.c:1267
+#: src/adw-about-window.c:1256
 msgid "Copied to clipboard"
 msgstr "Copiado al portapapeles"
 
-#: src/adw-about-window.c:1301
+#: src/adw-about-window.c:1284
 msgid "Unable to save debugging information"
 msgstr "No se puede guardar la información de depuración"
 
-#: src/adw-about-window.c:1306
+#: src/adw-about-window.c:1289
 msgid "Close"
 msgstr "Cerrar"
 
-#: src/adw-about-window.c:1322
+#: src/adw-about-window.c:1305
 msgid "Save debugging information"
 msgstr "Guardar información de depuración"
 
@@ -155,62 +156,55 @@
 msgid "About"
 msgstr "Acerca de"
 
-#: src/adw-about-window.ui:123
+#: src/adw-about-window.ui:91
 msgid "_What’s New"
 msgstr "_Novedades"
 
-#: src/adw-about-window.ui:138
+#: src/adw-about-window.ui:106
 msgid "_Details"
 msgstr "_Detalles"
 
-#: src/adw-about-window.ui:153 src/adw-about-window.ui:395
+#: src/adw-about-window.ui:121 src/adw-about-window.ui:331
 msgid "_Website"
 msgstr "Página _Web"
 
-#: src/adw-about-window.ui:176
+#: src/adw-about-window.ui:144
 msgid "_Support Questions"
 msgstr "Preguntas de _soporte"
 
-#: src/adw-about-window.ui:192
+#: src/adw-about-window.ui:160
 msgid "_Report an Issue"
 msgstr "Infor_mar de un problema"
 
-#: src/adw-about-window.ui:207
+#: src/adw-about-window.ui:175
 msgid "_Troubleshooting"
 msgstr "_Resolución de problemas"
 
-#: src/adw-about-window.ui:226
+#: src/adw-about-window.ui:194
 msgid "_Credits"
 msgstr "_Créditos"
 
-#: src/adw-about-window.ui:241
+#: src/adw-about-window.ui:209
 msgid "_Legal"
 msgstr "_Legal"
 
-#: src/adw-about-window.ui:256
+#: src/adw-about-window.ui:224
 msgid "_Acknowledgements"
 msgstr "A_gradecimientos"
 
-#: src/adw-about-window.ui:295
+#: src/adw-about-window.ui:253
 msgid "What’s New"
 msgstr "Novedades"
 
-#: src/adw-about-window.ui:300 src/adw-about-window.ui:356
-#: src/adw-about-window.ui:437 src/adw-about-window.ui:512
-#: src/adw-about-window.ui:559 src/adw-about-window.ui:606
-#: src/adw-about-window.ui:653
-msgid "Back"
-msgstr "Atrás"
-
-#: src/adw-about-window.ui:351
+#: src/adw-about-window.ui:293
 msgid "Details"
 msgstr "Detalles"
 
-#: src/adw-about-window.ui:432
+#: src/adw-about-window.ui:358
 msgid "Troubleshooting"
 msgstr "Resolución de problemas"
 
-#: src/adw-about-window.ui:461
+#: src/adw-about-window.ui:381
 msgid ""
 "To assist in troubleshooting, you can view your debugging information. "
 "Providing this information to the application developers can help diagnose "
@@ -221,35 +215,43 @@
 "aplicaciones puede ayudar a diagnosticar cualquier problema que encuentre "
 "cuando informe de un problema."
 
-#: src/adw-about-window.ui:472
+#: src/adw-about-window.ui:392
 msgid "_Debugging Information"
 msgstr "_Información de depuración"
 
-#: src/adw-about-window.ui:507
+#: src/adw-about-window.ui:418
+msgid "Debugging Information"
+msgstr "Información de depuración"
+
+#: src/adw-about-window.ui:460
+msgid "_Copy Text"
+msgstr "_Copiar texto"
+
+#: src/adw-about-window.ui:468
+msgid "_Save as…"
+msgstr "_Guardar como…"
+
+#: src/adw-about-window.ui:481
 msgid "Credits"
 msgstr "Créditos"
 
-#: src/adw-about-window.ui:554
+#: src/adw-about-window.ui:512
 msgid "Legal"
 msgstr "Legal"
 
-#: src/adw-about-window.ui:601
+#: src/adw-about-window.ui:543
 msgid "Acknowledgements"
 msgstr "Agradecimientos"
 
-#: src/adw-about-window.ui:648
-msgid "Debugging Information"
-msgstr "Información de depuración"
+#: src/adw-back-button.c:444
+msgid "Back"
+msgstr "Atrás"
 
-#: src/adw-about-window.ui:696
-msgid "_Copy Text"
-msgstr "_Copiar texto"
+#: src/adw-combo-row.ui:50
+msgid "Search…"
+msgstr "Buscar…"
 
-#: src/adw-about-window.ui:703
-msgid "_Save as…"
-msgstr "_Guardar como…"
-
-#: src/adw-entry-row.ui:95
+#: src/adw-entry-row.ui:97
 msgid "Apply"
 msgstr "Aplicar"
 
@@ -286,31 +288,31 @@
 msgid "System Supports Color Schemes"
 msgstr "El sistema admite esquemas de color"
 
-#: src/adw-inspector-page.ui:26
+#: src/adw-inspector-page.ui:20
 msgid "Preferred Color Scheme"
 msgstr "Esquema de color preferido"
 
-#: src/adw-inspector-page.ui:43
+#: src/adw-inspector-page.ui:37
 msgid "High Contrast"
 msgstr "Alto contraste"
 
 #: src/adw-password-entry-row.c:70
-msgid "Hide Text"
-msgstr "Ocultar texto"
+msgid "Hide Password"
+msgstr "Ocultar la contraseña"
 
 #: src/adw-password-entry-row.c:74
-msgid "Show Text"
-msgstr "Mostrar texto"
+msgid "Show Password"
+msgstr "Mostrar la contraseña"
 
 #: src/adw-password-entry-row.c:168
 msgid "Caps Lock is on"
 msgstr "Bloq Mayús está activada"
 
 #: src/adw-password-entry-row.c:176
-msgid "_Show Text"
-msgstr "_Mostrar texto"
+msgid "_Show Password"
+msgstr "_Mostrar la contraseña"
 
-#: src/adw-preferences-window.c:243
+#: src/adw-preferences-window.c:259
 msgid "Untitled page"
 msgstr "Página sin título"
 
@@ -318,19 +320,23 @@
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: src/adw-preferences-window.ui:69
+#: src/adw-preferences-window.ui:81
+msgid "Search preferences"
+msgstr "Preferencias de búsqueda"
+
+#: src/adw-preferences-window.ui:96
 msgid "Search"
 msgstr "Buscar"
 
-#: src/adw-preferences-window.ui:139
+#: src/adw-preferences-window.ui:163
 msgid "No Results Found"
 msgstr "No se han encontrado resultados"
 
-#: src/adw-preferences-window.ui:140 src/adw-tab-overview.ui:113
+#: src/adw-preferences-window.ui:164 src/adw-tab-overview.ui:111
 msgid "Try a different search."
 msgstr "Pruebe a hacer una búsqueda diferente."
 
-#: src/adw-split-button.c:495 src/adw-split-button.c:957
+#: src/adw-split-button.c:519 src/adw-split-button.c:1033
 msgid "More Options"
 msgstr "Más opciones"
 
@@ -338,37 +344,47 @@
 msgid "View Open Tabs"
 msgstr "Ver pestañas abiertas"
 
-#: src/adw-tab-overview.c:899
+#. Translators: Tab overview title, %u is the number of open tabs
+#: src/adw-tab-overview.c:922
 #, c-format
 msgid "%u Tab"
 msgid_plural "%u Tabs"
 msgstr[0] "%u pestaña"
 msgstr[1] "%u pestañas"
 
-#: src/adw-tab-overview.ui:23
+#: src/adw-tab-overview.ui:21
 msgid "Search Tabs"
 msgstr "Buscar pestañas"
 
-#: src/adw-tab-overview.ui:53
+#: src/adw-tab-overview.ui:51
 msgid "Search tabs"
 msgstr "Buscar pestañas"
 
-#: src/adw-tab-overview.ui:99
+#: src/adw-tab-overview.ui:97
 msgid "No Open Tabs"
 msgstr "No hay pestañas abiertas"
 
-#: src/adw-tab-overview.ui:112
+#: src/adw-tab-overview.ui:110
 msgid "No Tabs Found"
 msgstr "No se han encontrado pestañas"
 
-#: src/adw-tab-overview.ui:133
+#: src/adw-tab-overview.ui:131
 msgid "New _Tab"
 msgstr "Pestaña _nueva"
 
-#: src/adw-tab-thumbnail.ui:39 src/adw-tab.ui:91
+#: src/adw-tab-thumbnail.ui:39 src/adw-tab.ui:95
 msgid "Close Tab"
 msgstr "Cerrar pestaña"
 
+#~ msgid "Hide Text"
+#~ msgstr "Ocultar texto"
+
+#~ msgid "Show Text"
+#~ msgstr "Mostrar texto"
+
+#~ msgid "_Show Text"
+#~ msgstr "_Mostrar texto"
+
 #~ msgid "_Save"
 #~ msgstr "_Guardar"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-expander-row.ui 
new/libadwaita-1.3.5/src/adw-expander-row.ui
--- old/libadwaita-1.3.4/src/adw-expander-row.ui        2023-08-04 
23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/adw-expander-row.ui        2023-09-03 
10:50:51.000000000 +0200
@@ -48,12 +48,17 @@
                     <property name="active" bind-source="AdwExpanderRow" 
bind-property="enable-expansion" bind-flags="bidirectional|sync-create"/>
                     <property name="valign">center</property>
                     <property name="visible" bind-source="AdwExpanderRow" 
bind-property="show-enable-switch" bind-flags="bidirectional|sync-create"/>
+                    <accessibility>
+                      <relation name="labelled-by">AdwExpanderRow</relation>
+                      <relation name="described-by">AdwExpanderRow</relation>
+                    </accessibility>
                   </object>
                 </child>
                 <child>
                   <object class="GtkImage" id="image">
                     <property 
name="icon-name">adw-expander-arrow-symbolic</property>
                     <property name="sensitive" bind-source="AdwExpanderRow" 
bind-property="enable-expansion" bind-flags="sync-create"/>
+                    <property name="accessible-role">presentation</property>
                     <style>
                       <class name="expander-row-arrow"/>
                     </style>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-settings-impl-macos.c 
new/libadwaita-1.3.5/src/adw-settings-impl-macos.c
--- old/libadwaita-1.3.4/src/adw-settings-impl-macos.c  2023-08-04 
23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/adw-settings-impl-macos.c  2023-09-03 
10:50:51.000000000 +0200
@@ -57,8 +57,6 @@
      */
 #endif
 
-    [style release];
-
     return isDark ?
       ADW_SYSTEM_COLOR_SCHEME_PREFER_DARK :
       ADW_SYSTEM_COLOR_SCHEME_DEFAULT;
@@ -95,7 +93,7 @@
 
   if (@available(*, macOS 10.14)) {
     static ThemeChangedObserver *observer;
-    
+
     observer = [[ThemeChangedObserver alloc] initWithSettings:(AdwSettingsImpl 
*)self];
 
     [[NSDistributedNotificationCenter defaultCenter]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-tab-button.ui 
new/libadwaita-1.3.5/src/adw-tab-button.ui
--- old/libadwaita-1.3.4/src/adw-tab-button.ui  2023-08-04 23:47:11.000000000 
+0200
+++ new/libadwaita-1.3.5/src/adw-tab-button.ui  2023-09-03 10:50:51.000000000 
+0200
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<interface>
+<interface domain="libadwaita">
   <requires lib="gtk" version="4.0"/>
   <template class="AdwTabButton" parent="GtkWidget">
     <child>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-tab-overview.c 
new/libadwaita-1.3.5/src/adw-tab-overview.c
--- old/libadwaita-1.3.4/src/adw-tab-overview.c 2023-08-04 23:47:11.000000000 
+0200
+++ new/libadwaita-1.3.5/src/adw-tab-overview.c 2023-09-03 10:50:51.000000000 
+0200
@@ -904,7 +904,7 @@
   n_pages = adw_tab_view_get_n_pages (self->view);
 
   /* Translators: Tab overview title, %u is the number of open tabs */
-  title_str = g_strdup_printf (ngettext ("%u Tab", "%u Tabs", n_pages), 
n_pages);
+  title_str = g_strdup_printf (dngettext (GETTEXT_PACKAGE, "%u Tab", "%u 
Tabs", n_pages), n_pages);
 
   adw_window_title_set_title (ADW_WINDOW_TITLE (self->title), title_str);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-tab-overview.ui 
new/libadwaita-1.3.5/src/adw-tab-overview.ui
--- old/libadwaita-1.3.4/src/adw-tab-overview.ui        2023-08-04 
23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/adw-tab-overview.ui        2023-09-03 
10:50:51.000000000 +0200
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<interface>
+<interface domain="libadwaita">
   <requires lib="gtk" version="4.0"/>
   <template class="AdwTabOverview" parent="GtkWidget">
     <child>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.3.4/src/adw-toast-widget.ui 
new/libadwaita-1.3.5/src/adw-toast-widget.ui
--- old/libadwaita-1.3.4/src/adw-toast-widget.ui        2023-08-04 
23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/adw-toast-widget.ui        2023-09-03 
10:50:51.000000000 +0200
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<interface>
+<interface domain="libadwaita">
   <requires lib="gtk" version="4.0"/>
   <template class="AdwToastWidget">
     <property name="hexpand">False</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.3.4/src/stylesheet/widgets/_buttons.scss 
new/libadwaita-1.3.5/src/stylesheet/widgets/_buttons.scss
--- old/libadwaita-1.3.4/src/stylesheet/widgets/_buttons.scss   2023-08-04 
23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/stylesheet/widgets/_buttons.scss   2023-09-03 
10:50:51.000000000 +0200
@@ -312,7 +312,7 @@
     font-weight: inherit;
     padding: 0;
 
-    transition: $button_transition;
+    @include focus-ring($offset: -1px, $transition: $button_transition);
 
     &:hover {
       background-image: image($view_hover_color);
@@ -422,6 +422,10 @@
     padding-right: 5px;
   }
 
+  &.card > button {
+    border-radius: $card_radius;
+  }
+
   arrow {
     min-height: 16px;
     min-width: 16px;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.3.4/src/stylesheet/widgets/_column-view.scss 
new/libadwaita-1.3.5/src/stylesheet/widgets/_column-view.scss
--- old/libadwaita-1.3.4/src/stylesheet/widgets/_column-view.scss       
2023-08-04 23:47:11.000000000 +0200
+++ new/libadwaita-1.3.5/src/stylesheet/widgets/_column-view.scss       
2023-09-03 10:50:51.000000000 +0200
@@ -58,6 +58,14 @@
     }
   }
 
+  // Remove the default background of the internal list view
+  // since we already apply a background to the column view
+  // with the .view class. Doing this will avoid overdraw.
+  &.view > listview.view {
+    background: none;
+    color: inherit;
+  }
+
   // move padding to child cells
   > listview > row {
     padding: 0;

++++++ libadwaita.obsinfo ++++++
--- /var/tmp/diff_new_pack.2nk8yV/_old  2023-09-06 18:57:46.606667863 +0200
+++ /var/tmp/diff_new_pack.2nk8yV/_new  2023-09-06 18:57:46.606667863 +0200
@@ -1,5 +1,5 @@
 name: libadwaita
-version: 1.3.4
-mtime: 1691185631
-commit: 29846fbd8d1a589e526043a9dc5ed14b69308d48
+version: 1.3.5
+mtime: 1693731051
+commit: e006737320804ddeba28eb00228fe2c25d545a6a
 

Reply via email to