Skip to content

Commit

Permalink
3.0.0-b7
Browse files Browse the repository at this point in the history
  • Loading branch information
Benature committed Mar 19, 2024
1 parent 859ec65 commit 3e3cdd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/settings/settingTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3e3cdd0

Please sign in to comment.