diff --git a/README.md b/README.md index c62d901..9c0f0e8 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ # Obsidian CodeMirror Options -This plugin adds configurable options to customize the behavior of CodeMirror. +This plugin adds configurable options to customize the behavior of Obsidian's edit mode. ## Installation +### Obsidian Community Plugin Browser + +This plugin is available directly within the Obsidian app by navigating to Settings->Community Plugins->Browse + ### Manual Installation To manually install 1. download the latest `zip`from the [latest Github Release](https://github.com/nothingislost/obsidian-codemirror-options/releases/latest) @@ -15,6 +19,10 @@ For details see [the forums](https://forum.obsidian.md/t/plugins-mini-faq/7737). ## Features +### WYSIWYG Functionality + +Documentation pending. See the changelog below for more details. + ### Syntax Highlighting @@ -128,6 +136,26 @@ This setting is a fallback option if you do not want to inject CM into preview m ## Changelog +### 0.3.0 + +# CodeMirror Options 0.3.0 Demo +- **Shiny new things** + - OpenMD + - Added [Single Column Table Support + - Added native Templater Syntax Support + - Added support for Headers in Lists + - Added the Auto Align Tables feature + - Added the Render Images Inline feature +- **Improvements** + - Removing "task" from the Token List option will now properly remove the CSS styled check box + - The [[Token List]] setting to allows text selection + - This is to allow copy/pasting the default token list + - Fixed a performance related issue with [[Collapse External Links]] & [[Render Images Inline]] + - These settings were doing way more work than needed which caused noticeable lag when working on large documents. In addition, turning the settings off did not properly unload the CodeMirror event handlers. + - These settings may be unstable as the performance tweaks are ironed out. If you notice lag, disable both of these options and see if things improve. +- **Known Issues**: + - Selecting inline images can cause an image to not render after the selection is cleared. Making a change anywhere in the editor will fix this for now. + ### 0.2.1 - Bug fixes related to the 0.2.0 release diff --git a/manifest-beta.json b/manifest-beta.json index 811fcb5..9c6ed4a 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "obsidian-codemirror-options", "name": "CodeMirror Options", - "version": "0.2.1", + "version": "0.3.0", "description": "Customize the functionality and appearance of Obsidian's edit mode", "author": "NothingIsLost", "authorUrl": "https://github.com/nothingislost", diff --git a/package.json b/package.json index 12d8f09..3f33b55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-codemirror-options", - "version": "0.2.1", + "version": "0.3.0", "description": "Customize the functionality and appearance of Obsidian's edit mode", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 76b0c52..490f2f6 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "0.3.0": "0.11.5", "0.2.1": "0.11.5", "0.2.0": "0.11.5", "0.1.4": "0.11.5",