From 3e3cdd00ac7ae582faefa68208d52f75e4b621fb Mon Sep 17 00:00:00 2001 From: Benature Date: Tue, 19 Mar 2024 11:24:31 +0800 Subject: [PATCH] 3.0.0-b7 --- manifest-beta.json | 2 +- src/settings/settingTab.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest-beta.json b/manifest-beta.json index 0192f8c..470cd7b 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "obsidian-text-format", "name": "Text Format", - "version": "3.0.0-b6", + "version": "3.0.0-b7", "minAppVersion": "0.9.7", "description": "Format text such as lowercase/uppercase/capitalize/titlecase, converting order/bullet list, removing redundant spaces/newline characters.", "author": "Benature", diff --git a/src/settings/settingTab.ts b/src/settings/settingTab.ts index c16afba..7fa3d87 100644 --- a/src/settings/settingTab.ts +++ b/src/settings/settingTab.ts @@ -595,7 +595,7 @@ export class TextFormatSettingTab extends PluginSettingTab { dropDown .addOption(CalloutTypeDecider.preContent, 'Last callout type before the cursor') .addOption(CalloutTypeDecider.wholeFile, 'Last callout type in the whole file') - .addOption(CalloutTypeDecider.fix, 'Fix callout type') + .addOption(CalloutTypeDecider.fix, 'Fixed callout type') .setValue(this.plugin.settings.calloutTypeDecider || CalloutTypeDecider.preContent) .onChange(async (value) => { this.plugin.settings.calloutTypeDecider = value as CalloutTypeDecider;