Skip to content

Releases: interrobot/interrobot-plugin

v0.18.0

04 Feb 18:32

Choose a tag to compare

This update fixes tab navigation issues with generated tables, adds stemming support for 8 additional languages, and tidies up argument passing in search execution. Search now uses an options object instead passing individual arguments. The old way continues to work, but will produce a deprecation warning. The new way to search is to use SearchExecuteOptions:

const options: SearchExecuteOptions = {
    paginate: true,
    showProgress: false,
    progressMessage: "Processing…"
};
await Search.execute(internalHtmlPagesQuery, resultsMap, async (result: SearchResult) => {
    await exampleResultHandler(result, titleWords);
}, options);

v0.17.0

06 Dec 22:20

Choose a tag to compare

Adapts the API to model updates for InterroBot projects. Projects can now be one or more URLs, website vs. list, so the plugin API had to make some adaptations. 0.17.x or later is required for InterroBot 2.10+