From aa87ceab7fa2b94c1817c9b0cbea0a290c853708 Mon Sep 17 00:00:00 2001 From: crschnick Date: Thu, 20 Nov 2025 16:44:25 +0000 Subject: [PATCH] Improve filtering [stage] --- .../java/io/xpipe/app/hub/comp/StoreEntryWrapper.java | 10 ++++++++++ dist/changelog/19.2_incremental.md | 5 +++++ version | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/io/xpipe/app/hub/comp/StoreEntryWrapper.java b/app/src/main/java/io/xpipe/app/hub/comp/StoreEntryWrapper.java index 4b4ad5b13..3cf3264f3 100644 --- a/app/src/main/java/io/xpipe/app/hub/comp/StoreEntryWrapper.java +++ b/app/src/main/java/io/xpipe/app/hub/comp/StoreEntryWrapper.java @@ -529,6 +529,16 @@ public class StoreEntryWrapper { return true; } + var is = information.getValue(); + if (is != null && is.toLowerCase().contains(filter.toLowerCase())) { + return true; + } + + var ss = summary.getValue(); + if (ss != null && ss.toLowerCase().contains(filter.toLowerCase())) { + return true; + } + return false; } diff --git a/dist/changelog/19.2_incremental.md b/dist/changelog/19.2_incremental.md index 2e983fe7b..e5a5e356a 100644 --- a/dist/changelog/19.2_incremental.md +++ b/dist/changelog/19.2_incremental.md @@ -3,4 +3,9 @@ - Fix local file system speeds being slow due to wrong buffer sizes - Fix SFTP open browser menu option not showing for VMs - Fix RDP tunnel connections not automatically taking credentials from parent entry +- Fix connection timeout not taking password prompts and others into consideration in v19 +- Fix Keeper password manager error messages not being shown +- Fix Keeper record URLs not being accepted +- Fix autoupdater download breaking with dashes in username on Windows +- You can now also filter for connection type / connection information like the os name - Add Ctrl+F shortcut to focus search field diff --git a/version b/version index 6f5fc35cf..a9d2a8fb4 100644 --- a/version +++ b/version @@ -1 +1 @@ -19.2-2 +19.2-3