Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libadwaita for openSUSE:Factory 
checked in at 2022-07-13 14:31:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libadwaita (Old)
 and      /work/SRC/openSUSE:Factory/.libadwaita.new.1523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libadwaita"

Wed Jul 13 14:31:55 2022 rev:10 rq:988644 version:1.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/libadwaita/libadwaita.changes    2022-06-09 
14:09:48.400368276 +0200
+++ /work/SRC/openSUSE:Factory/.libadwaita.new.1523/libadwaita.changes  
2022-07-13 14:32:08.977269956 +0200
@@ -1,0 +2,9 @@
+Sun Jul 10 15:28:15 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com>
+
+- Update to version 1.1.3:
+  + AdwLeaflet: Fix a broken link in docs.
+  + AdwPreferencesGroup: Fix accessibility labels.
+  + AdwToast: Fix the example in docs.
+  + Stylesheet: Add missing borders in high contrast version.
+
+-------------------------------------------------------------------

Old:
----
  libadwaita-1.1.2.obscpio

New:
----
  libadwaita-1.1.3.obscpio

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

Other differences:
------------------
++++++ libadwaita.spec ++++++
--- /var/tmp/diff_new_pack.xVzGbZ/_old  2022-07-13 14:32:09.465270586 +0200
+++ /var/tmp/diff_new_pack.xVzGbZ/_new  2022-07-13 14:32:09.465270586 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libadwaita
-Version:        1.1.2
+Version:        1.1.3
 Release:        0
 Summary:        Building blocks for modern GNOME applications
 License:        LGPL-2.1-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.xVzGbZ/_old  2022-07-13 14:32:09.489270617 +0200
+++ /var/tmp/diff_new_pack.xVzGbZ/_new  2022-07-13 14:32:09.493270623 +0200
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="disabled">
     <param name="url">https://gitlab.gnome.org/GNOME/libadwaita.git</param>
     <param name="scm">git</param>
-    <param name="revision">refs/tags/1.1.2</param>
+    <param name="revision">refs/tags/1.1.3</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ libadwaita-1.1.2.obscpio -> libadwaita-1.1.3.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/NEWS new/libadwaita-1.1.3/NEWS
--- old/libadwaita-1.1.2/NEWS   2022-06-01 12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/NEWS   2022-07-03 02:01:35.000000000 +0200
@@ -1,4 +1,17 @@
 =============
+Version 1.1.3
+=============
+
+- AdwLeaflet
+  - Fix a broken link in docs
+- AdwPreferencesGroup
+  - Fix accessibility labels
+- AdwToast
+  - Fix the example in docs
+- Stylesheet
+  - Add missing borders in high contrast version
+
+=============
 Version 1.1.2
 =============
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/meson.build 
new/libadwaita-1.1.3/meson.build
--- old/libadwaita-1.1.2/meson.build    2022-06-01 12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/meson.build    2022-07-03 02:01:35.000000000 +0200
@@ -1,5 +1,5 @@
 project('libadwaita', 'c',
-          version: '1.1.2',
+          version: '1.1.3',
           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.1.4'
+libversion = '0.1.5'
 # The so major version of the library
 soversion = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/src/adw-leaflet.c 
new/libadwaita-1.1.3/src/adw-leaflet.c
--- old/libadwaita-1.1.2/src/adw-leaflet.c      2022-06-01 12:44:36.000000000 
+0200
+++ new/libadwaita-1.1.3/src/adw-leaflet.c      2022-07-03 02:01:35.000000000 
+0200
@@ -2224,9 +2224,9 @@
    * The widget currently visible when the leaflet is folded.
    *
    * The transition is determined by [property@Leaflet:transition-type] and
-   * [Leaflet:child-transition-duration]. The transition can be cancelled by 
the
-   * user, in which case visible child will change back to the previously
-   * visible child.
+   * [property@Leaflet:child-transition-params]. The transition can be
+   * cancelled by the user, in which case visible child will change back to the
+   * previously visible child.
    *
    * Since: 1.0
    */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/src/adw-preferences-group.ui 
new/libadwaita-1.1.3/src/adw-preferences-group.ui
--- old/libadwaita-1.1.2/src/adw-preferences-group.ui   2022-06-01 
12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/adw-preferences-group.ui   2022-07-03 
02:01:35.000000000 +0200
@@ -50,13 +50,13 @@
         <child>
           <object class="GtkBox" id="listbox_box">
             <property name="orientation">vertical</property>
-            <accessibility>
-              <relation name="labelled-by">title</relation>
-            </accessibility>
             <child>
               <object class="GtkListBox" id="listbox">
                 <property name="visible">False</property>
                 <property name="selection_mode">none</property>
+                <accessibility>
+                  <relation name="labelled-by">title</relation>
+                </accessibility>
                 <signal name="keynav-failed" 
handler="listbox_keynav_failed_cb" swapped="yes"/>
                 <style>
                   <class name="boxed-list"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/src/adw-toast.c 
new/libadwaita-1.1.3/src/adw-toast.c
--- old/libadwaita-1.1.2/src/adw-toast.c        2022-06-01 12:44:36.000000000 
+0200
+++ new/libadwaita-1.1.3/src/adw-toast.c        2022-07-03 02:01:35.000000000 
+0200
@@ -31,7 +31,7 @@
  * follows:
  *
  * ```c
- * adw_toast_overlay_add_toast (overlay, adw_toast_new (_("Simple Toast"));
+ * adw_toast_overlay_add_toast (overlay, adw_toast_new (_("Simple Toast")));
  * ```
  *
  * <picture>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.1.2/src/stylesheet/widgets/_dialogs.scss 
new/libadwaita-1.1.3/src/stylesheet/widgets/_dialogs.scss
--- old/libadwaita-1.1.2/src/stylesheet/widgets/_dialogs.scss   2022-06-01 
12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/stylesheet/widgets/_dialogs.scss   2022-07-03 
02:01:35.000000000 +0200
@@ -38,6 +38,10 @@
 
       &.highlight {
         background-color: $view_selected_color;
+
+        @if $contrast == 'high' {
+          box-shadow: inset 0 0 0 1px $border_color;
+        }
       }
     }
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.1.2/src/stylesheet/widgets/_emoji-chooser.scss 
new/libadwaita-1.1.3/src/stylesheet/widgets/_emoji-chooser.scss
--- old/libadwaita-1.1.2/src/stylesheet/widgets/_emoji-chooser.scss     
2022-06-01 12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/stylesheet/widgets/_emoji-chooser.scss     
2022-07-03 02:01:35.000000000 +0200
@@ -33,6 +33,14 @@
   &:active {
     background: $view_active_color;
   }
+
+  @if $contrast == 'high' {
+    &:focus,
+    &:hover,
+    &:active {
+      box-shadow: inset 0 0 0 1px $border_color;
+    }
+  }
 }
 
 popover.emoji-picker scrolledwindow.view {
@@ -77,4 +85,12 @@
   &:active {
     background-color: $view_active_color; // matching buttons
   }
+
+  @if $contrast == 'high' {
+    &:focus,
+    &:hover,
+    &:active {
+      box-shadow: inset 0 0 0 1px $border_color;
+    }
+  }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/src/stylesheet/widgets/_menus.scss 
new/libadwaita-1.1.3/src/stylesheet/widgets/_menus.scss
--- old/libadwaita-1.1.2/src/stylesheet/widgets/_menus.scss     2022-06-01 
12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/stylesheet/widgets/_menus.scss     2022-07-03 
02:01:35.000000000 +0200
@@ -136,6 +136,14 @@
       background-color: $view_selected_active_color; // matching buttons
     }
 
+    @if $contrast == 'high' {
+      &:hover,
+      &:selected,
+      &:active {
+        box-shadow: inset 0 0 0 1px $border_color;
+      }
+    }
+
     arrow {
       background: none;
       min-width: 16px;
@@ -191,6 +199,14 @@
         }
       }
 
+      @if $contrast == 'high' {
+        &:hover,
+        &:active,
+        &.has-open-popup {
+          box-shadow: inset 0 0 0 1px $border_color;
+        }
+      }
+
       > box {
         border-spacing: 6px;
       }
@@ -225,6 +241,10 @@
 
     &:selected { //Seems like it :hover even with keyboard focus
       background-color: $view_selected_color;
+
+      @if $contrast == 'high' {
+        box-shadow: inset 0 0 0 1px $border_color;
+      }
     }
 
     //nested submenus
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libadwaita-1.1.2/src/stylesheet/widgets/_sidebars.scss 
new/libadwaita-1.1.3/src/stylesheet/widgets/_sidebars.scss
--- old/libadwaita-1.1.2/src/stylesheet/widgets/_sidebars.scss  2022-06-01 
12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/stylesheet/widgets/_sidebars.scss  2022-07-03 
02:01:35.000000000 +0200
@@ -69,6 +69,15 @@
     padding: 0 8px;
     border-radius: $menu_radius;
     margin: 0 $menu_margin 2px;
+
+    @if $contrast == 'high' {
+      &.activatable:hover,
+      &.activatable:active,
+      &.activatable.has-open-popup,
+      &:selected {
+        box-shadow: inset 0 0 0 1px $border_color;
+      }
+    }
   }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libadwaita-1.1.2/src/stylesheet/widgets/_views.scss 
new/libadwaita-1.1.3/src/stylesheet/widgets/_views.scss
--- old/libadwaita-1.1.2/src/stylesheet/widgets/_views.scss     2022-06-01 
12:44:36.000000000 +0200
+++ new/libadwaita-1.1.3/src/stylesheet/widgets/_views.scss     2022-07-03 
02:01:35.000000000 +0200
@@ -38,6 +38,12 @@
 iconview {
   @extend %view;
 
+  @if $contrast == 'high' {
+    &:selected {
+      box-shadow: inset 0 0 0 1px $border_color;
+    }
+  }
+
   @include focus-ring();
 
   &:drop(active) {
@@ -66,6 +72,10 @@
 
   &:selected {
     background-color: $view_selected_color;
+
+    @if $contrast == 'high' {
+      box-shadow: inset 0 0 0 1px $border_color;
+    }
   }
 }
 
@@ -79,4 +89,10 @@
 
     &:active { background-color: $view_selected_active_color; }
   }
+
+  @if $contrast == 'high' {
+    &:hover, &:active {
+      box-shadow: inset 0 0 0 1px $border_color;
+    }
+  }
 }

++++++ libadwaita.obsinfo ++++++
--- /var/tmp/diff_new_pack.xVzGbZ/_old  2022-07-13 14:32:09.785270999 +0200
+++ /var/tmp/diff_new_pack.xVzGbZ/_new  2022-07-13 14:32:09.785270999 +0200
@@ -1,5 +1,5 @@
 name: libadwaita
-version: 1.1.2
-mtime: 1654080276
-commit: 284e8e698b8438ea6b02a4a46e5531137efc4c89
+version: 1.1.3
+mtime: 1656806495
+commit: 53de9a9972e60a9c53ec2ff5cce4e4d327206cf0
 

Reply via email to