From e3143423d1da38251025b67843e1463f078904f9 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Mon, 7 Oct 2024 20:38:56 +0200 Subject: [PATCH 1/6] fix(image-search-response-row): Use correct property Fixes #831 --- src/view/image_search_response_row.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/image_search_response_row.rs b/src/view/image_search_response_row.rs index fbea2ae6..713fe66c 100644 --- a/src/view/image_search_response_row.rs +++ b/src/view/image_search_response_row.rs @@ -81,7 +81,7 @@ mod imp { [ &name_expr, &tag_expr, - &style_manager.property_expression("is-dark"), + &style_manager.property_expression("dark"), &style_manager.property_expression("accent-color"), &style_manager.property_expression("high-contrast"), ], From fd3c3f0eb4077a3ea5c801dc46e9a45518d715e5 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Tue, 1 Oct 2024 16:58:39 +0200 Subject: [PATCH 2/6] fix(connection-custom-info-page): Remove empty margin --- src/view/connection_custom_info_page.ui | 1 - 1 file changed, 1 deletion(-) diff --git a/src/view/connection_custom_info_page.ui b/src/view/connection_custom_info_page.ui index 3a989e00..a19dbb8f 100644 --- a/src/view/connection_custom_info_page.ui +++ b/src/view/connection_custom_info_page.ui @@ -79,7 +79,6 @@ Podman Root Connection 15 - True word-char 0.5 From 9095361dc254ca622f7c27bc64927723b137901d Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Tue, 1 Oct 2024 16:58:19 +0200 Subject: [PATCH 3/6] fix(connection-custom-info-page): Unparent children --- src/view/connection_custom_info_page.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/view/connection_custom_info_page.rs b/src/view/connection_custom_info_page.rs index 554096d5..981a66bd 100644 --- a/src/view/connection_custom_info_page.rs +++ b/src/view/connection_custom_info_page.rs @@ -91,6 +91,10 @@ mod imp { })); self.on_notify_dark(&style_manager); } + + fn dispose(&self) { + utils::unparent_children(self.obj().upcast_ref()); + } } impl WidgetImpl for ConnectionCustomInfoDialog {} From 73a1d54e61bbeada595de1c5da0bf948d700b3c2 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Sun, 29 Sep 2024 16:01:07 +0200 Subject: [PATCH 4/6] docs(appstream): Set correct v2.1.0 release date --- data/com.github.marhkb.Pods.metainfo.xml.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/com.github.marhkb.Pods.metainfo.xml.in.in b/data/com.github.marhkb.Pods.metainfo.xml.in.in index 9637f642..c3e1975d 100644 --- a/data/com.github.marhkb.Pods.metainfo.xml.in.in +++ b/data/com.github.marhkb.Pods.metainfo.xml.in.in @@ -42,7 +42,7 @@ https://github.com/marhkb/pods/issues - +

Pods 2.1.0 contains the following changes:

Features

From 6f9651ac1242a90221e5368616840fa3442c5af1 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Mon, 7 Oct 2024 20:56:02 +0200 Subject: [PATCH 5/6] docs(appdata): Update changelog --- data/com.github.marhkb.Pods.metainfo.xml.in.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/data/com.github.marhkb.Pods.metainfo.xml.in.in b/data/com.github.marhkb.Pods.metainfo.xml.in.in index c3e1975d..4f37c6eb 100644 --- a/data/com.github.marhkb.Pods.metainfo.xml.in.in +++ b/data/com.github.marhkb.Pods.metainfo.xml.in.in @@ -42,6 +42,11 @@ https://github.com/marhkb/pods/issues + + +

Pods 2.1.1 is a bug fix which, among other things, fixes a crash that occurred when searching for remote images. (#832)

+
+

Pods 2.1.0 contains the following changes:

From 49a0cceb24737c66003174f8bce2cb9528ed3694 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Mon, 7 Oct 2024 20:58:24 +0200 Subject: [PATCH 6/6] build: Bump version to v2.1.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7b55b52..cb7fa43a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "pods" -version = "2.1.0" +version = "2.1.1" dependencies = [ "anyhow", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index 6b48850f..b447ab72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pods" -version = "2.1.0" +version = "2.1.1" authors = ["Marcus Behrendt "] edition = "2021" diff --git a/meson.build b/meson.build index 80412a41..ed206739 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'pods', 'rust', - version: '2.1.0', + version: '2.1.1', meson_version: '>= 0.59', license: 'GPL-3.0', )