diff --git a/docs/releases/3.24.6 b/docs/releases/3.24.6 new file mode 100644 index 00000000..5a48db4e --- /dev/null +++ b/docs/releases/3.24.6 @@ -0,0 +1,34 @@ +# TaskNotes 3.24.6 + +## Added + +- Added release notes viewer + - New view displays release notes in a dedicated tab when plugin updates + - Automatically opens after updating to a new version + - Access anytime via command palette "TaskNotes: View release notes" or Settings > General + - Release notes are rendered using native Obsidian markdown rendering + - Includes link to view all releases on GitHub + - Fully internationalized with i18n support + - Auto-generation system ensures correct version is loaded without manual updates + +## Fixed + +- (#440) Fixed inline task replacement not working for links with relative paths + - Markdown links with relative paths like `[task](../../../GTD/tasks/task.md)` now display inline previews + - Wikilinks with relative paths now work correctly + - Removed overly aggressive path sanitization that was stripping `..` from all link paths + - Works in both Live Preview and Reading Mode + - Thanks to @minchinweb for reporting + +- (#814) Fixed markdown links in projects field not being recognized on Project notes + - Tasks with markdown-style project links `[text](path)` now appear in project's Subtasks section + - Updated project link detection to use `parseLinkToPath` utility which handles both wikilinks and markdown links + - Handles URL-encoded paths like `[z Test Project](z%20Test%20Project.md)` + - Thanks to @minchinweb for reporting + +- (#827) Fixed project links being generated as markdown links for users with markdown links enabled in Obsidian settings + - Project links in frontmatter are now always generated as wikilinks `[[link]]` by default for Obsidian compatibility + - Obsidian does not support markdown links in frontmatter properties without third-party plugins + - Added optional setting to enable markdown links in frontmatter for users with `obsidian-frontmatter-markdown-links` plugin + - Setting only appears when user has markdown links enabled globally in Obsidian + - Thanks to @nightroman for reporting diff --git a/manifest.json b/manifest.json index 8b96e6cf..226602c0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,10 @@ { "id": "tasknotes", "name": "TaskNotes", - "version": "3.24.5", + "version": "3.24.6", "minAppVersion": "1.0.0", "description": "Note-based task management with calendar, pomodoro and time-tracking integration.", "author": "Callum Alpass", "authorUrl": "https://github.com/callumalpass", "isDesktopOnly": false -} +} \ No newline at end of file diff --git a/versions.json b/versions.json index e2bce112..d80ea46d 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { "1.0.0": "0.15.0", - "0.7.0": "1.0.0" -} + "0.7.0": "1.0.0", + "3.24.6": "1.0.0" +} \ No newline at end of file