Biggest change is that IDynamicListPage doesn't have GetItems(String query) anymore. Instead, the host will call the SearchText setter, and the list can raise ItemsChanged to let the host know to call GetItems again
See src/modules/cmdpal/Exts/EverythingExtension/Pages/EverythingExtensionPage.cs for an example of how to update dynamic extensions.
As discussed in #77.
Biggest change is that
IDynamicListPage
doesn't haveGetItems(String query)
anymore. Instead, the host will call theSearchText
setter, and the list can raiseItemsChanged
to let the host know to callGetItems
againSee src/modules/cmdpal/Exts/EverythingExtension/Pages/EverythingExtensionPage.cs for an example of how to update dynamic extensions.
Closes #131 Closes #77