diff --git a/CHANGELOG.md b/CHANGELOG.md index d8b9c2e..6dfeee1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 1.0.22 (Sat Jun 29 2024) + +#### 🐛 Bug Fix + +- fix: default config value [#88](https://github.com/bingryan/obsidian-markdown-export-plugin/pull/88) ([@bingryan](https://github.com/bingryan)) +- docs: update readme [#87](https://github.com/bingryan/obsidian-markdown-export-plugin/pull/87) ([@bingryan](https://github.com/bingryan)) + +#### Authors: 1 + +- [@bingryan](https://github.com/bingryan) + +--- + # 1.0.21 (Fri Jun 14 2024) #### 🐛 Bug Fix diff --git a/README.md b/README.md index b7ee537..055356d 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ you can activate this plugin within Obsidian by doing the following: - Open Settings > Third-party plugin - Make sure Safe mode is **off** - Click Browse community plugins -- Search for "Obsidian markdown export" +- Search for "markdown export" - Click Install - Once installed, close the community plugins window and activate the newly installed plugin diff --git a/export.gif b/export.gif index 6d408aa..2365aa3 100644 Binary files a/export.gif and b/export.gif differ diff --git a/manifest.json b/manifest.json index 2f36307..e35a22d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-markdown-export-plugin", "name": "markdown export", - "version": "1.0.21", + "version": "1.0.22", "minAppVersion": "0.15.0", "description": "This is a markdown export plugin for Obsidian.", "author": "bingryan", diff --git a/src/main.ts b/src/main.ts index 20b7ad8..1b16a04 100644 --- a/src/main.ts +++ b/src/main.ts @@ -169,7 +169,7 @@ class MarkdownExportSettingTab extends PluginSettingTab { new Setting(containerEl) .setName("Use Html tag to display image") .setDesc( - "true default, tag will use the size specified in obsidian.", + "false default, tag will use the size specified in obsidian.", ) .addToggle((toggle) => toggle @@ -197,7 +197,7 @@ class MarkdownExportSettingTab extends PluginSettingTab { new Setting(containerEl) .setName("Remove brackets for outgoing links") .setDesc( - "true default, if you want to keep the brackets in links, set this to false", + "false default, if you want to remove the brackets in links, set this to true", ) .addToggle((toggle) => toggle