git: a26a1bf68d60 - main - x11-toolkits/libadwaita: update to 0.0.20210812

Jan Beich jbeich at FreeBSD.org
Tue Aug 24 14:25:09 UTC 2021


The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a26a1bf68d602ec87c0988bca26ccccad99a7dbd

commit a26a1bf68d602ec87c0988bca26ccccad99a7dbd
Author:     Jan Beich <jbeich at FreeBSD.org>
AuthorDate: 2021-08-17 19:14:59 +0000
Commit:     Jan Beich <jbeich at FreeBSD.org>
CommitDate: 2021-08-24 14:24:05 +0000

    x11-toolkits/libadwaita: update to 0.0.20210812
    
    - Drop no longer necessary libadwaita workaround in kooha
    
    Changes:        https://gitlab.gnome.org/GNOME/libadwaita/-/compare/7f61711...8442d60
    PR:             257917
---
 multimedia/kooha/Makefile               |   1 +
 multimedia/kooha/files/patch-libadwaita | 173 --------------------------------
 x11-toolkits/libadwaita/Makefile        |   5 +-
 x11-toolkits/libadwaita/distinfo        |   6 +-
 x11-toolkits/libadwaita/pkg-plist       |  85 +++++++++++++++-
 5 files changed, 88 insertions(+), 182 deletions(-)

diff --git a/multimedia/kooha/Makefile b/multimedia/kooha/Makefile
index 932ef1879b80..07148a4b1774 100644
--- a/multimedia/kooha/Makefile
+++ b/multimedia/kooha/Makefile
@@ -2,6 +2,7 @@ PORTNAME=	kooha
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.2.1-636
 DISTVERSIONSUFFIX=	-gb4414e6
+PORTREVISION=	1
 CATEGORIES=	multimedia
 
 MAINTAINER=	jbeich at FreeBSD.org
diff --git a/multimedia/kooha/files/patch-libadwaita b/multimedia/kooha/files/patch-libadwaita
deleted file mode 100644
index b56cb75fe3db..000000000000
--- a/multimedia/kooha/files/patch-libadwaita
+++ /dev/null
@@ -1,173 +0,0 @@
-Revert dependency on unreleased libadwaita
-https://github.com/SeaDve/Kooha/commit/426a703bba29
-https://gitlab.gnome.org/GNOME/libadwaita/-/commit/9b6efa65dabb
-https://github.com/SeaDve/Kooha/commit/ceffdede0670
-https://gitlab.gnome.org/GNOME/libadwaita/-/commit/ea7ef0f2e2ac
-
---- data/resources/ui/window.ui.orig	2021-08-23 01:13:16 UTC
-+++ data/resources/ui/window.ui
-@@ -10,9 +10,10 @@
-     <child>
-       <object class="GtkWindowHandle">
-         <child>
--          <object class="AdwViewStack" id="main_stack">
-+          <object class="GtkStack" id="main_stack">
-+            <property name="transition-type">crossfade</property>
-             <child>
--              <object class="AdwViewStackPage">
-+              <object class="GtkStackPage">
-                 <property name="name">main</property>
-                 <property name="child">
-                   <object class="GtkBox">
-@@ -35,12 +36,13 @@
-                           </object>
-                         </child>
-                         <child type="title">
--                          <object class="AdwViewStack" id="title_stack">
-+                          <object class="GtkStack" id="title_stack">
-+                            <property name="transition-type">crossfade</property>
-                             <style>
-                               <class name="title"/>
-                             </style>
-                             <child>
--                              <object class="AdwViewStackPage">
-+                              <object class="GtkStackPage">
-                                 <property name="name">monitor-window</property>
-                                 <property name="child">
-                                   <object class="GtkLabel">
-@@ -50,7 +52,7 @@
-                               </object>
-                             </child>
-                             <child>
--                              <object class="AdwViewStackPage">
-+                              <object class="GtkStackPage">
-                                 <property name="name">selection</property>
-                                 <property name="child">
-                                   <object class="GtkLabel">
-@@ -139,7 +141,7 @@
-               </object>
-             </child>
-             <child>
--              <object class="AdwViewStackPage">
-+              <object class="GtkStackPage">
-                 <property name="name">recording</property>
-                 <property name="child">
-                   <object class="GtkBox">
-@@ -199,7 +201,7 @@
-               </object>
-             </child>
-             <child>
--              <object class="AdwViewStackPage">
-+              <object class="GtkStackPage">
-                 <property name="name">delay</property>
-                 <property name="child">
-                   <object class="GtkBox">
-@@ -245,7 +247,7 @@
-               </object>
-             </child>
-             <child>
--              <object class="AdwViewStackPage">
-+              <object class="GtkStackPage">
-                 <property name="name">flushing</property>
-                 <property name="child">
-                   <object class="GtkBox">
---- src/application.rs.orig	2021-08-23 01:13:16 UTC
-+++ src/application.rs
-@@ -1,7 +1,6 @@
--use adw::subclass::prelude::*;
- use gettextrs::gettext;
- use gtk::{
--    gio,
-+    gdk, gio,
-     glib::{self, clone, WeakRef},
-     prelude::*,
-     subclass::prelude::*,
-@@ -29,7 +28,7 @@ mod imp {
-     impl ObjectSubclass for Application {
-         const NAME: &'static str = "KoohaApplication";
-         type Type = super::Application;
--        type ParentType = adw::Application;
-+        type ParentType = gtk::Application;
-     }
- 
-     impl ObjectImpl for Application {}
-@@ -55,18 +54,18 @@ mod imp {
-             self.parent_startup(app);
-             gtk::Window::set_default_icon_name(APP_ID);
- 
-+            app.setup_css();
-             app.setup_gactions();
-             app.setup_accels();
-         }
-     }
- 
-     impl GtkApplicationImpl for Application {}
--    impl AdwApplicationImpl for Application {}
- }
- 
- glib::wrapper! {
-     pub struct Application(ObjectSubclass<imp::Application>)
--        @extends gio::Application, gtk::Application, adw::Application,
-+        @extends gio::Application, gtk::Application,
-         @implements gio::ActionMap, gio::ActionGroup;
- }
- 
-@@ -80,6 +79,21 @@ impl Application {
-         .expect("Failed to create Application.")
-     }
- 
-+    fn setup_css(&self) {
-+        let provider = gtk::CssProvider::new();
-+        provider.load_from_resource("/io/github/seadve/Kooha/style.css");
-+        if let Some(display) = gdk::Display::default() {
-+            gtk::StyleContext::add_provider_for_display(
-+                &display,
-+                &provider,
-+                gtk::STYLE_PROVIDER_PRIORITY_APPLICATION,
-+            );
-+
-+            log::debug!("is_display_composited: {}", display.is_composited());
-+            log::debug!("is_display_rgba: {}", display.is_rgba());
-+        }
-+    }
-+
-     fn setup_gactions(&self) {
-         let action_launch_default_for_file = gio::SimpleAction::new(
-             "launch-default-for-file",
-@@ -118,9 +132,9 @@ impl Application {
-         self.set_accels_for_action("win.record-speaker", &["<primary>a"]);
-         self.set_accels_for_action("win.record-mic", &["<primary>m"]);
-         self.set_accels_for_action("win.show-pointer", &["<primary>p"]);
--        self.set_accels_for_action("win.toggle-record", &["<primary>r"]);
--        self.set_accels_for_action("win.toggle-pause", &["<primary>k"]);
--        self.set_accels_for_action("win.cancel-delay", &["<primary>c"]);
-+        self.set_accels_for_action("win.toggle-record", &["<Primary>r"]);
-+        self.set_accels_for_action("win.toggle-pause", &["<Primary>k"]);
-+        self.set_accels_for_action("win.cancel-delay", &["<Primary>c"]);
-     }
- 
-     fn select_saving_location(&self) {
---- src/main.rs.orig	2021-08-08 16:08:31 UTC
-+++ src/main.rs
-@@ -35,6 +35,7 @@ fn main() {
- 
-     gst::init().expect("Unable to start gstreamer.");
-     gtk::init().expect("Unable to start GTK4.");
-+    adw::init();
- 
-     gstgif::plugin_register_static().expect("Failed to register gif plugin.");
- 
---- src/widgets/window.rs.orig	2021-08-08 16:08:31 UTC
-+++ src/widgets/window.rs
-@@ -34,9 +34,9 @@ mod imp {
-         #[template_child]
-         pub pause_record_button: TemplateChild<gtk::Button>,
-         #[template_child]
--        pub main_stack: TemplateChild<adw::ViewStack>,
-+        pub main_stack: TemplateChild<gtk::Stack>,
-         #[template_child]
--        pub title_stack: TemplateChild<adw::ViewStack>,
-+        pub title_stack: TemplateChild<gtk::Stack>,
-         #[template_child]
-         pub recording_label: TemplateChild<gtk::Label>,
-         #[template_child]
diff --git a/x11-toolkits/libadwaita/Makefile b/x11-toolkits/libadwaita/Makefile
index ce84f17d2861..4c31e169fbc8 100644
--- a/x11-toolkits/libadwaita/Makefile
+++ b/x11-toolkits/libadwaita/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	libadwaita
-PORTVERSION=	0.0.20210526
-PORTREVISION=	3
+PORTVERSION=	0.0.20210812
 CATEGORIES=	x11-toolkits
 
 MAINTAINER=	gnome at FreeBSD.org
@@ -19,7 +18,7 @@ USE_GITLAB=	yes
 USE_GNOME=	cairo gdkpixbuf2 gtk40 introspection:build
 GL_SITE=	https://gitlab.gnome.org
 GL_ACCOUNT=	GNOME
-GL_COMMIT=	7f61711633dfd067f4928df80afe6b14f16f886e
+GL_COMMIT=	8442d6097b36c17e87582525ceab3ce3d5bccd48
 
 PORTSCOUT=	limit:1,even
 
diff --git a/x11-toolkits/libadwaita/distinfo b/x11-toolkits/libadwaita/distinfo
index 2e7cc1d86d00..135368677b97 100644
--- a/x11-toolkits/libadwaita/distinfo
+++ b/x11-toolkits/libadwaita/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1621949522
-SHA256 (GNOME-libadwaita-7f61711633dfd067f4928df80afe6b14f16f886e_GL0.tar.gz) = 096516bd62f7b7f09b6f78080c505d5997dc4e80074ad6705b52b3f6881227a3
-SIZE (GNOME-libadwaita-7f61711633dfd067f4928df80afe6b14f16f886e_GL0.tar.gz) = 481208
+TIMESTAMP = 1628787712
+SHA256 (GNOME-libadwaita-8442d6097b36c17e87582525ceab3ce3d5bccd48_GL0.tar.gz) = 9b439745d6ab87d38cebaefb1fb4a6d30cfafa585df96df249c28b187d4dc895
+SIZE (GNOME-libadwaita-8442d6097b36c17e87582525ceab3ce3d5bccd48_GL0.tar.gz) = 500399
diff --git a/x11-toolkits/libadwaita/pkg-plist b/x11-toolkits/libadwaita/pkg-plist
index 740015c6122f..ac97dcb05963 100644
--- a/x11-toolkits/libadwaita/pkg-plist
+++ b/x11-toolkits/libadwaita/pkg-plist
@@ -1,7 +1,8 @@
 bin/adwaita-1-demo
 include/libadwaita-1/adw-action-row.h
-include/libadwaita-1/adw-animation.h
+include/libadwaita-1/adw-animation-util.h
 include/libadwaita-1/adw-application-window.h
+include/libadwaita-1/adw-application.h
 include/libadwaita-1/adw-avatar.h
 include/libadwaita-1/adw-bin.h
 include/libadwaita-1/adw-carousel-indicator-dots.h
@@ -17,6 +18,7 @@ include/libadwaita-1/adw-enum-value-object.h
 include/libadwaita-1/adw-enums.h
 include/libadwaita-1/adw-expander-row.h
 include/libadwaita-1/adw-flap.h
+include/libadwaita-1/adw-fold-threshold-policy.h
 include/libadwaita-1/adw-header-bar.h
 include/libadwaita-1/adw-leaflet.h
 include/libadwaita-1/adw-main.h
@@ -33,6 +35,7 @@ include/libadwaita-1/adw-tab-bar.h
 include/libadwaita-1/adw-tab-view.h
 include/libadwaita-1/adw-value-object.h
 include/libadwaita-1/adw-version.h
+include/libadwaita-1/adw-view-stack.h
 include/libadwaita-1/adw-view-switcher-bar.h
 include/libadwaita-1/adw-view-switcher-title.h
 include/libadwaita-1/adw-view-switcher.h
@@ -71,8 +74,8 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/RedHatText-Regular.woff2
 %%PORTDOCS%%%%DOCSDIR%%-1/avatar.png
 %%PORTDOCS%%%%DOCSDIR%%-1/build-howto.html
-%%PORTDOCS%%%%DOCSDIR%%-1/callback.AvatarImageLoadFunc.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ActionRow.html
+%%PORTDOCS%%%%DOCSDIR%%-1/class.Application.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ApplicationWindow.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.Avatar.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.Bin.html
@@ -102,6 +105,8 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/class.TabPage.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.TabView.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ValueObject.html
+%%PORTDOCS%%%%DOCSDIR%%-1/class.ViewStack.html
+%%PORTDOCS%%%%DOCSDIR%%-1/class.ViewStackPage.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ViewSwitcher.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ViewSwitcherBar.html
 %%PORTDOCS%%%%DOCSDIR%%-1/class.ViewSwitcherTitle.html
@@ -109,6 +114,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/class.WindowTitle.html
 %%PORTDOCS%%%%DOCSDIR%%-1/classes_hierarchy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ActionRow.new.html
+%%PORTDOCS%%%%DOCSDIR%%-1/ctor.Application.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ApplicationWindow.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.Avatar.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.Bin.new.html
@@ -137,6 +143,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ValueObject.new_collect.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ValueObject.new_string.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ValueObject.new_take_string.html
+%%PORTDOCS%%%%DOCSDIR%%-1/ctor.ViewStack.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ViewSwitcher.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ViewSwitcherBar.new.html
 %%PORTDOCS%%%%DOCSDIR%%-1/ctor.ViewSwitcherTitle.new.html
@@ -145,6 +152,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.CenteringPolicy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.FlapFoldPolicy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.FlapTransitionType.html
+%%PORTDOCS%%%%DOCSDIR%%-1/enum.FoldThresholdPolicy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.LeafletTransitionType.html
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.NavigationDirection.html
 %%PORTDOCS%%%%DOCSDIR%%-1/enum.SqueezerTransitionType.html
@@ -182,12 +190,13 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ApplicationWindow.get_child.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ApplicationWindow.set_child.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.draw_to_pixbuf.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.get_custom_image.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.get_icon_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.get_show_initials.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.get_size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.get_text.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_custom_image.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_icon_name.html
-%%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_image_load_func.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_show_initials.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Avatar.set_text.html
@@ -276,6 +285,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_flap_position.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_fold_duration.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_fold_policy.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_fold_threshold_policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_folded.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_locked.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.get_modal.html
@@ -291,6 +301,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_flap_position.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_fold_duration.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_fold_policy.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_fold_threshold_policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_locked.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_modal.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Flap.set_reveal_duration.html
@@ -320,6 +331,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_child_by_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_child_transition_duration.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_child_transition_running.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_fold_threshold_policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_folded.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_homogeneous.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.get_interpolate_size.html
@@ -338,6 +350,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_can_swipe_forward.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_can_unfold.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_child_transition_duration.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_fold_threshold_policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_homogeneous.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_interpolate_size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Leaflet.set_mode_transition_duration.html
@@ -357,10 +370,12 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesGroup.set_title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.add.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.get_icon_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.get_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.get_title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.get_use_underline.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.remove.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.set_icon_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.set_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.set_title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesPage.set_use_underline.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesRow.get_title.html
@@ -371,11 +386,16 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.close_subpage.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.get_can_swipe_back.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.get_search_enabled.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.get_visible_page.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.get_visible_page_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.present_subpage.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.remove.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.set_can_swipe_back.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.set_search_enabled.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.set_visible_page.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.PreferencesWindow.set_visible_page_name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.add.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_allow_none.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_homogeneous.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_interpolate_size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_page.html
@@ -387,6 +407,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_xalign.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.get_yalign.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.remove.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.set_allow_none.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.set_homogeneous.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.set_interpolate_size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.Squeezer.set_transition_duration.html
@@ -492,6 +513,39 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ValueObject.dup_string.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ValueObject.get_string.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ValueObject.get_value.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.add.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.add_named.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.add_titled.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_child_by_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_hhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_interpolate_size.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_page.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_pages.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_transition_running.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_vhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_visible_child.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.get_visible_child_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.remove.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.set_hhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.set_interpolate_size.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.set_vhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.set_visible_child.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStack.set_visible_child_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_badge_number.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_child.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_icon_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_needs_attention.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_title.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_use_underline.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.get_visible.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_badge_number.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_icon_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_needs_attention.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_title.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_use_underline.html
+%%PORTDOCS%%%%DOCSDIR%%-1/method.ViewStackPage.set_visible.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ViewSwitcher.get_narrow_ellipsize.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ViewSwitcher.get_policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.ViewSwitcher.get_stack.html
@@ -521,6 +575,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/method.WindowTitle.get_title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.WindowTitle.set_subtitle.html
 %%PORTDOCS%%%%DOCSDIR%%-1/method.WindowTitle.set_title.html
+%%PORTDOCS%%%%DOCSDIR%%-1/migrating-between-development-versions.html
 %%PORTDOCS%%%%DOCSDIR%%-1/migrating-libhandy-1-4-to-libadwaita.html
 %%PORTDOCS%%%%DOCSDIR%%-1/preferences-window.png
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ActionRow.activatable-widget.html
@@ -529,6 +584,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ActionRow.subtitle.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ActionRow.title-lines.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ActionRow.use-underline.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.Avatar.custom-image.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Avatar.icon-name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Avatar.show-initials.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Avatar.size.html
@@ -575,6 +631,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.flap.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.fold-duration.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.fold-policy.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.fold-threshold-policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.folded.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.locked.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Flap.modal.html
@@ -595,6 +652,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.can-unfold.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.child-transition-duration.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.child-transition-running.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.fold-threshold-policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.folded.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.hhomogeneous-folded.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Leaflet.hhomogeneous-unfolded.html
@@ -612,12 +670,16 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesGroup.description.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesGroup.title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesPage.icon-name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesPage.name.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesPage.title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesPage.use-underline.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesRow.title.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesRow.use-underline.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesWindow.can-swipe-back.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesWindow.search-enabled.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesWindow.visible-page-name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.PreferencesWindow.visible-page.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.Squeezer.allow-none.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Squeezer.homogeneous.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Squeezer.interpolate-size.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.Squeezer.pages.html
@@ -666,6 +728,21 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/property.TabView.selected-page.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.TabView.shortcut-widget.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ValueObject.value.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.hhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.interpolate-size.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.pages.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.transition-running.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.vhomogeneous.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.visible-child-name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStack.visible-child.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.badge-number.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.child.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.icon-name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.name.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.needs-attention.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.title.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.use-underline.html
+%%PORTDOCS%%%%DOCSDIR%%-1/property.ViewStackPage.visible.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ViewSwitcher.narrow-ellipsize.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ViewSwitcher.policy.html
 %%PORTDOCS%%%%DOCSDIR%%-1/property.ViewSwitcher.stack.html
@@ -708,6 +785,7 @@ libdata/pkgconfig/libadwaita-1.pc
 %%PORTDOCS%%%%DOCSDIR%%-1/visual-index.html
 share/gir-1.0/Adw-1.gir
 share/locale/ca/LC_MESSAGES/libadwaita.mo
+share/locale/de/LC_MESSAGES/libadwaita.mo
 share/locale/en_GB/LC_MESSAGES/libadwaita.mo
 share/locale/es/LC_MESSAGES/libadwaita.mo
 share/locale/eu/LC_MESSAGES/libadwaita.mo
@@ -725,5 +803,6 @@ share/locale/sl/LC_MESSAGES/libadwaita.mo
 share/locale/sv/LC_MESSAGES/libadwaita.mo
 share/locale/tr/LC_MESSAGES/libadwaita.mo
 share/locale/uk/LC_MESSAGES/libadwaita.mo
+share/locale/zh_CN/LC_MESSAGES/libadwaita.mo
 share/vala/vapi/libadwaita-1.deps
 share/vala/vapi/libadwaita-1.vapi


More information about the dev-commits-ports-main mailing list