diff --git a/CHANGELOG.md b/CHANGELOG.md index 770ec13..df919e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,25 @@ # Changelog -## [1.2.0](https://github.com/GnoxNahte/obsidian-auto-embed/tree/1.2.0) (2024-09-18) +## [1.2.1](https://github.com/GnoxNahte/obsidian-auto-embed/tree/1.2.1) (2024-09-19) +Since there are a lot of changes, please report any bugs! + +**New Features & Improvements:** +- #15 Add support for twitter profile timelines. + +**Bugs Fixed:** +- Add padding for fallback embed link (external link below embed) +- Fix #8 where it crashes the note when `Preload options` is `Placeholder + Click to load` AND `Fallback options` is `Show Error Message`. +- Fix #9 where embeds aren't collapsing when in a bullet list. +- Fix #10 and #11. Slightly change where the embed is placed. Fixes issues like the embed breaking bullet points, or 'eating' the last character. However, this might cause more bugs, so create new issues whenever you find them! +- Fix #14. Don't embed web images. It might show the placeholder for a split second but it should hide it quite quickly. + +## [1.2.0](https://github.com/GnoxNahte/obsidian-auto-embed/tree/1.2.0) (2024-09-07) Incrementing minor version. Added and fixed most of the features and bugs to make a proper plugin. Since there are a lot of changes, please report any bugs! **New Features & Improvements:** -- Add placeholders for websites. It has a 'click to load' mode too. This should greatly improve [Content Layout Shifts](https://web.dev/articles/cls).
+- Add #7 placeholders for websites. It has a 'click to load' mode too. This should greatly improve [Content Layout Shifts](https://web.dev/articles/cls).
Thanks to [@Rikiub](https://github.com/Rikiub) for suggesting it! - [Issue 7](https://github.com/GnoxNahte/obsidian-auto-embed/issues/7) - Add Imgur album support. (Album has `/a/` instead of `/gallery/` in the URL) - Add options to disable selected websites diff --git a/manifest.json b/manifest.json index f5cb1f6..f1a7ed9 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "auto-embed", "name": "Auto Embed", - "version": "1.2.0", + "version": "1.2.1", "minAppVersion": "1.5.11", "description": "Helps to embed links using markdown instead of iframe", "author": "GnoxNahte", diff --git a/versions.json b/versions.json index b03b75a..65ad564 100644 --- a/versions.json +++ b/versions.json @@ -11,5 +11,6 @@ "1.1.1": "1.5.11", "1.1.2": "1.5.11", "1.1.3": "1.5.11", - "1.2.0": "1.5.11" + "1.2.0": "1.5.11", + "1.2.1": "1.5.11" }