Updated README, CHANGELOG, and settings descriptions

This commit is contained in:
Simon Cambier
2022-06-26 11:00:23 +02:00
parent 9c3507d885
commit 603dd2b60e
3 changed files with 42 additions and 12 deletions

View File

@@ -54,7 +54,7 @@ export class SettingsTab extends PluginSettingTab {
new Setting(containerEl)
.setName('Ignore diacritics')
.setDesc(
'EXPERIMENTAL - Normalize diacritics in search terms. Words like "brûlée" or "žluťoučký" will be indexed as "brulee" and "zlutoucky". Needs a restart to take effect.',
'Normalize diacritics in search terms. Words like "brûlée" or "žluťoučký" will be indexed as "brulee" and "zlutoucky". Needs a restart to take effect.',
)
.addToggle(toggle =>
toggle.setValue(settings.ignoreDiacritics).onChange(async v => {
@@ -66,7 +66,7 @@ export class SettingsTab extends PluginSettingTab {
new Setting(containerEl)
.setName('Store index in file')
.setDesc(
'EXPERIMENTAL - index is store on disk, instead of being rebuilt on every startup.',
'Index is stored on disk, instead of being rebuilt at every startup.',
)
.addToggle(toggle =>
toggle.setValue(settings.storeIndexInFile).onChange(async v => {