Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build/2.1.1 #833

Merged
merged 6 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pods"
version = "2.1.0"
version = "2.1.1"
authors = ["Marcus Behrendt <[email protected]>"]
edition = "2021"

Expand Down
7 changes: 6 additions & 1 deletion data/com.github.marhkb.Pods.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@
<url type="bugtracker">https://github.com/marhkb/pods/issues</url>
<content_rating type="oars-1.1"/>
<releases>
<release version="2.1.0" date="2023-11-25">
<release version="2.1.1" date="2024-10-07">
<description translatable="no">
<p>Pods 2.1.1 is a bug fix which, among other things, fixes a crash that occurred when searching for remote images. (#832)</p>
</description>
</release>
<release version="2.1.0" date="2024-09-25">
<description translatable="no">
<p>Pods 2.1.0 contains the following changes:</p>
<p>Features</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'pods',
'rust',
version: '2.1.0',
version: '2.1.1',
meson_version: '>= 0.59',
license: 'GPL-3.0',
)
Expand Down
4 changes: 4 additions & 0 deletions src/view/connection_custom_info_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
Expand Down
1 change: 0 additions & 1 deletion src/view/connection_custom_info_page.ui
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
</style>
<property name="label" translatable="yes">Podman Root Connection</property>
<property name="margin-top">15</property>
<property name="margin-bottom"></property>
<property name="wrap">True</property>
<property name="wrap-mode">word-char</property>
<property name="xalign">0.5</property>
Expand Down
2 changes: 1 addition & 1 deletion src/view/image_search_response_row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
],
Expand Down
Loading