From c34503f1cd89a5e6bd1813cc608b698ced890189 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Tue, 23 Jul 2024 09:59:32 +0200 Subject: [PATCH 1/9] 1.24.0-beta.3 manifest --- manifest-beta.json | 2 +- versions.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/manifest-beta.json b/manifest-beta.json index 0c06338..e71abd2 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "omnisearch", "name": "Omnisearch", - "version": "1.24.0-beta.2", + "version": "1.24.0-beta.3", "minAppVersion": "1.3.0", "description": "A search engine that just works", "author": "Simon Cambier", diff --git a/versions.json b/versions.json index 4c1ab5f..86a9604 100644 --- a/versions.json +++ b/versions.json @@ -144,5 +144,6 @@ "1.23.0": "1.3.0", "1.24.0-beta.1": "1.3.0", "1.23.1": "1.3.0", - "1.24.0-beta.2": "1.3.0" + "1.24.0-beta.2": "1.3.0", + "1.24.0-beta.3": "1.3.0" } \ No newline at end of file From 1ccfe23d7a1c37fd0a6be79d407bef93fd99f097 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Wed, 31 Jul 2024 14:13:36 +0200 Subject: [PATCH 2/9] 1.24.0 --- manifest-beta.json | 2 +- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/manifest-beta.json b/manifest-beta.json index e71abd2..de2b06b 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "omnisearch", "name": "Omnisearch", - "version": "1.24.0-beta.3", + "version": "1.24.0", "minAppVersion": "1.3.0", "description": "A search engine that just works", "author": "Simon Cambier", diff --git a/manifest.json b/manifest.json index c635ee4..416265a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "omnisearch", "name": "Omnisearch", - "version": "1.23.1", + "version": "1.24.0", "minAppVersion": "1.3.0", "description": "A search engine that just works", "author": "Simon Cambier", diff --git a/package.json b/package.json index 436e24d..603f7df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scambier.obsidian-search", - "version": "1.24.0-beta.3", + "version": "1.24.0", "description": "A search engine for Obsidian", "main": "dist/main.js", "scripts": { diff --git a/versions.json b/versions.json index 86a9604..16d8795 100644 --- a/versions.json +++ b/versions.json @@ -145,5 +145,6 @@ "1.24.0-beta.1": "1.3.0", "1.23.1": "1.3.0", "1.24.0-beta.2": "1.3.0", - "1.24.0-beta.3": "1.3.0" + "1.24.0-beta.3": "1.3.0", + "1.24.0": "1.3.0" } \ No newline at end of file From e9869758b50f7576a541c5efdd5c70565b4b8198 Mon Sep 17 00:00:00 2001 From: Swaggeroo <57057662+Swaggeroo@users.noreply.github.com> Date: Tue, 13 Aug 2024 18:32:30 +0200 Subject: [PATCH 3/9] Bug fix / Refactor Added Ai Image Analyzer Text again and removed unnecessary var indexingDesc (#388) --- src/settings.ts | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/src/settings.ts b/src/settings.ts index 767af73..695d8f8 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -128,24 +128,6 @@ export class SettingsTab extends PluginSettingTab { //#region Indexing - const indexingDesc = new DocumentFragment() - indexingDesc.createSpan({}, span => { - span.innerHTML = `⚠️ Changing indexing settings will clear the cache, and requires a restart of Obsidian.

` - if (textExtractor) { - span.innerHTML += ` - 👍 You have installed Text Extractor, Omnisearch can use it to index PDFs and images contents. -
Text extraction only works on desktop, but the cache can be synchronized with your mobile device.` - } else { - span.innerHTML += `⚠️ Omnisearch requires Text Extractor to index PDFs and images.` - } - - if (aiImageAnalyzer) { - span.innerHTML += `
👍 You have installed AI Image Analyzer, Omnisearch can use it to index images contents with ai.` - }else { - span.innerHTML += `
⚠️ Omnisearch requires AI Image Analyzer to index images with ai.` - } - }) - new Setting(containerEl) .setName('Indexing') .setHeading() @@ -156,6 +138,11 @@ export class SettingsTab extends PluginSettingTab { ? `👍 You have installed Text Extractor, Omnisearch can use it to index PDFs and images contents.
Text extraction only works on desktop, but the cache can be synchronized with your mobile device.` : `⚠️ Omnisearch requires Text Extractor to index PDFs and images.` + } + ${ + aiImageAnalyzer + ? `
👍 You have installed AI Image Analyzer, Omnisearch can use it to index images contents with ai.` + : `
⚠️ Omnisearch requires AI Image Analyzer to index images with ai.` }`) ) From 34e7f378dacc677019d7545c8c94972ae99d6366 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Tue, 13 Aug 2024 18:55:08 +0200 Subject: [PATCH 4/9] fix: on mobile, added a delay before showing the keyboard #345 --- src/components/InputSearch.svelte | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/components/InputSearch.svelte b/src/components/InputSearch.svelte index d29044e..034bf8c 100644 --- a/src/components/InputSearch.svelte +++ b/src/components/InputSearch.svelte @@ -1,8 +1,9 @@