From aade69e545ff51e362b9e424bd508a973a427ccb Mon Sep 17 00:00:00 2001 From: GnoxNahte Date: Mon, 28 Oct 2024 20:47:10 +0800 Subject: [PATCH] Update to 1.2.4 Also add markdown code block for as a default value for issues at the "Sample Markdown" section. --- .github/ISSUE_TEMPLATE/bug-report.yml | 14 +++++++++----- CHANGELOG.md | 6 ++++++ manifest.json | 2 +- versions.json | 3 ++- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index e6aec4d..d9daaa2 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -20,7 +20,13 @@ body: label: Sample Markdown description: If applicable, please provide the markdown used where the bug occurred placeholder: | - ![options](url) + ```markdown + ![options](url) + ``` + value: | + ```markdown + // Put your markdown sample here + ``` - type: textarea id: console-error attributes: @@ -30,14 +36,12 @@ body: To open the console: - Windows: Ctrl + Shift + I - Mac: Cmd + Option + I - placeholder: | - ![options](url) - type: input id: obsidian-version attributes: label: Obsidian Version description: What Obsidian version are you using? - placeholder: 1.6.7 + placeholder: 1.7.4 validations: required: true - type: input @@ -45,7 +49,7 @@ body: attributes: label: Plugin Version description: What Auto Embed version are you using? - placeholder: 1.2.2 + placeholder: 1.2.4 validations: required: true - type: dropdown diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c319fe..f783abf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ Things to remember: - Try to check all the links link to a valid location --> +## [1.2.4](https://github.com/GnoxNahte/obsidian-auto-embed/tree/1.2.4) (2024-10-28) + +**Bugs Fixed:** +- Fix [Issue 19](https://github.com/GnoxNahte/obsidian-auto-embed/issues/19): Add better support for detecting urls +- Fix [Issue 20](https://github.com/GnoxNahte/obsidian-auto-embed/issues/20): Add better support for detecting images that the plugin shouldn't embed. + ## [1.2.3](https://github.com/GnoxNahte/obsidian-auto-embed/tree/1.2.3) (2024-10-23) **New Features & Improvements:** diff --git a/manifest.json b/manifest.json index 1125b7f..0c675d2 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "auto-embed", "name": "Auto Embed", - "version": "1.2.3", + "version": "1.2.4", "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 81f1587..4db5a01 100644 --- a/versions.json +++ b/versions.json @@ -14,5 +14,6 @@ "1.2.0": "1.5.11", "1.2.1": "1.5.11", "1.2.2": "1.5.11", - "1.2.3": "1.5.11" + "1.2.3": "1.5.11", + "1.2.4": "1.5.11" }