Improve filtering [stage]

This commit is contained in:
crschnick
2025-11-20 16:44:25 +00:00
parent 2f7bc51feb
commit aa87ceab7f
3 changed files with 16 additions and 1 deletions
@@ -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;
}
+5
View File
@@ -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
+1 -1
View File
@@ -1 +1 @@
19.2-2
19.2-3