From 7334af96185056cb256ab3cdaf010b03c2429246 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Sat, 11 Feb 2023 17:27:24 +0100 Subject: [PATCH] 1.12.0 --- README.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d399d4f..c692430 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Under the hood, it uses the excellent [MiniSearch](https://github.com/lucaong/mi - Resistance to typos - Switch between Vault and In-file search to quickly skim multiple results in a single note - Supports `"expressions in quotes"` and `-exclusions` +- Filters file types with '.jpg' or '.md' - Directly Insert a `[[link]]` from the search results - Supports Vim navigation keys @@ -77,6 +78,8 @@ object `omnisearch` (`window.omnisearch`) type OmnisearchApi = { // Returns a promise that will contain the same results as the Vault modal search: (query: string) => Promise, + // Refreshes the index + refreshIndex: () => Promise // Register a callback that will be called when the indexing is done registerOnIndexed: (callback: () => void) => void, // Unregister a callback that was previously registered diff --git a/package.json b/package.json index 7c33c81..4185000 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scambier.obsidian-search", - "version": "1.11.1", + "version": "1.12.0", "description": "A search engine for Obsidian", "main": "dist/main.js", "scripts": {