From 2128b02bd35ef166061053751ed7f08b7ce13faa Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Thu, 21 Dec 2023 16:33:10 +0100 Subject: [PATCH 1/2] fix: Do not filter anything by default Fixes #768 --- data/com.github.marhkb.Pods.gschema.xml.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/com.github.marhkb.Pods.gschema.xml.in b/data/com.github.marhkb.Pods.gschema.xml.in index 1389fcf6..68aa6705 100644 --- a/data/com.github.marhkb.Pods.gschema.xml.in +++ b/data/com.github.marhkb.Pods.gschema.xml.in @@ -47,17 +47,17 @@ - true + false Whether to show only running containers - true + false Whether to show only running pods - true + false Whether to show only used volumes From e70672296068029e16f12dea684f6c726ca09989 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Thu, 21 Dec 2023 16:35:26 +0100 Subject: [PATCH 2/2] docs(appdata): Update changelog --- data/com.github.marhkb.Pods.metainfo.xml.in.in | 1 + 1 file changed, 1 insertion(+) diff --git a/data/com.github.marhkb.Pods.metainfo.xml.in.in b/data/com.github.marhkb.Pods.metainfo.xml.in.in index 6130a9b7..6bb0a022 100644 --- a/data/com.github.marhkb.Pods.metainfo.xml.in.in +++ b/data/com.github.marhkb.Pods.metainfo.xml.in.in @@ -63,6 +63,7 @@
  • All remaining processes are now closed after a container terminal exits. (#744)
  • Streams are now closed correctly so that they do not run forever when the user changes the connection. (#764)
  • A bug was fixed where the content of the container log page was initially too large. (#769)
  • +
  • Stop filtering out containers, pods and volumes by default. (#770)
  • Improvements