This commit is contained in:
Simon Cambier
2022-11-17 21:46:43 +01:00
parent ea240c6e5f
commit a7b775f950
6 changed files with 7 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.8.0-beta.7",
"version": "1.8.0",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",

View File

@@ -1,7 +1,7 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.7.10",
"version": "1.8.0",
"minAppVersion": "1.0.0",
"description": "A search engine that just works",
"author": "Simon Cambier",

View File

@@ -1,6 +1,6 @@
{
"name": "scambier.obsidian-search",
"version": "1.8.0-beta.7",
"version": "1.8.0",
"description": "A search engine for Obsidian",
"main": "dist/main.js",
"scripts": {

View File

@@ -243,7 +243,7 @@ function showWelcomeNotice(plugin: Plugin) {
if (settings.welcomeMessage !== code) {
const welcome = new DocumentFragment()
welcome.createSpan({}, span => {
span.innerHTML = `<strong>Omnisearch BETA has been updated</strong>
span.innerHTML = `<strong>Omnisearch has been updated</strong>
You can now enable "Images Indexing" to use Optical Character Recognition on your scanned documents
🔎🖼`
})

View File

@@ -94,7 +94,7 @@ export class SettingsTab extends PluginSettingTab {
<strong style="color: var(--text-accent)">Needs a restart to fully take effect.</strong>`
})
new Setting(containerEl)
.setName('BETA - PDF Indexing')
.setName('PDF Indexing')
.setDesc(indexPDFsDesc)
.addToggle(toggle =>
toggle.setValue(settings.PDFIndexing).onChange(async v => {

View File

@@ -75,5 +75,6 @@
"1.8.0-beta.4": "1.0.0",
"1.8.0-beta.5": "1.0.0",
"1.8.0-beta.6": "1.0.0",
"1.8.0-beta.7": "1.0.0"
"1.8.0-beta.7": "1.0.0",
"1.8.0": "1.0.0"
}