Merge pull request #11 from GRA0007/release

Publish New Version
This commit is contained in:
Benji Grant 2024-08-21 10:55:04 +10:00 committed by GitHub
commit 03a9f4269f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 16 additions and 23 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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",

View file

@ -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",

View file

@ -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"
}