mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat: allow partial match of tags in the installer (#1167)
This commit is contained in:
parent
2e33f53a07
commit
48bc151cdb
1 changed files with 1 additions and 1 deletions
|
|
@ -2730,7 +2730,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
|||
manifest.InternalName.ToLowerInvariant().Contains(searchString) ||
|
||||
(!manifest.Author.IsNullOrEmpty() && manifest.Author.Equals(this.searchText, StringComparison.InvariantCultureIgnoreCase)) ||
|
||||
(!manifest.Punchline.IsNullOrEmpty() && manifest.Punchline.ToLowerInvariant().Contains(searchString)) ||
|
||||
(manifest.Tags != null && manifest.Tags.Contains(searchString, StringComparer.InvariantCultureIgnoreCase)));
|
||||
(manifest.Tags != null && manifest.Tags.Any(tag => tag.ToLowerInvariant().Contains(searchString))));
|
||||
}
|
||||
|
||||
private (bool IsInstalled, LocalPlugin Plugin) IsManifestInstalled(PluginManifest? manifest)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue