diff --git a/.changes/css-variable.md b/.changes/css-variable.md deleted file mode 100644 index 82a893d..0000000 --- a/.changes/css-variable.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"obsidian-css-inlay-colors": minor:feat ---- - -Use a css variable for the inlay background color instead of setting it directly via an inline style diff --git a/.changes/node-type.md b/.changes/node-type.md deleted file mode 100644 index e4ee23d..0000000 --- a/.changes/node-type.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"obsidian-css-inlay-colors": patch:fix ---- - -Swap to a more robust method of determining the node type in live preview mode diff --git a/.changes/popout-safe-instanceof.md b/.changes/popout-safe-instanceof.md deleted file mode 100644 index ba2eed8..0000000 --- a/.changes/popout-safe-instanceof.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"obsidian-css-inlay-colors": patch:fix ---- - -Use a cross-window capable version of `instanceof`, which fixes the color picker not working in pop-out windows diff --git a/.changes/state-field.md b/.changes/state-field.md deleted file mode 100644 index 4eb4400..0000000 --- a/.changes/state-field.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"obsidian-css-inlay-colors": patch:fix ---- - -Use the provided Obsidian state field to determine if the editor is in live preview mode diff --git a/CHANGELOG.md b/CHANGELOG.md index bd78ffb..3b92614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## \[1.1.0] + +### New Features + +- [`f115da2`](https://github.com/GRA0007/obsidian-css-inlay-colors/commit/f115da2d6df6d4cdd937e4893eb1280136ecc783) Use a css variable for the inlay background color instead of setting it directly via an inline style + +### Bug Fixes + +- [`8679d8b`](https://github.com/GRA0007/obsidian-css-inlay-colors/commit/8679d8bc527ad2e26beff06d5fb3a119c7571eb5) Swap to a more robust method of determining the node type in live preview mode +- [`47bda88`](https://github.com/GRA0007/obsidian-css-inlay-colors/commit/47bda8844d7db564489096a959b6dc1722dc4011) Use a cross-window capable version of `instanceof`, which fixes the color picker not working in pop-out windows +- [`f6ce7a3`](https://github.com/GRA0007/obsidian-css-inlay-colors/commit/f6ce7a343063a08e3f6c1fd67fcecb7a0f73490b) Use the provided Obsidian state field to determine if the editor is in live preview mode + ## \[1.0.0] ### New Features diff --git a/manifest.json b/manifest.json index 306cf2a..b44c356 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "css-inlay-colors", "name": "CSS Inlay Colors", - "version": "1.0.0", + "version": "1.1.0", "minAppVersion": "0.15.0", "description": "Show inline color hints for CSS colors", "author": "Benji Grant", diff --git a/package.json b/package.json index d4f9666..9417615 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-css-inlay-colors", - "version": "1.0.0", + "version": "1.1.0", "packageManager": "yarn@4.4.0", "description": "Show inline color hints for CSS colors", "main": "main.js", diff --git a/versions.json b/versions.json index 7121f39..b60aaf0 100644 --- a/versions.json +++ b/versions.json @@ -3,5 +3,6 @@ "0.1.1": "0.15.0", "0.2.0": "0.15.0", "0.2.1": "0.15.0", - "1.0.0": "0.15.0" + "1.0.0": "0.15.0", + "1.1.0": "0.15.0" }