impr: Allow more release types to be updated

This commit is contained in:
WerWolv
2025-08-09 23:31:07 +02:00
parent 9246d040ad
commit 6be0eeff72
4 changed files with 64 additions and 39 deletions

View File

@@ -421,6 +421,11 @@ namespace hex::plugin::builtin {
std::vector<ContentRegistry::CommandPaletteCommands::impl::QueryResult> result;
for (const auto &[unlocalizedName, view] : ContentRegistry::Views::impl::getEntries()) {
if (!view->shouldProcess())
continue;
if (!view->hasViewMenuItemEntry())
continue;
const auto name = Lang(unlocalizedName);
if (!hex::containsIgnoreCase(name, input))
continue;