mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-04 03:40:32 +00:00
Improve filtering [stage]
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user