release 3.24.6

This commit is contained in:
callumalpass 2025-10-05 14:19:57 +11:00
parent 85bcc4da82
commit 80074cea1c
3 changed files with 39 additions and 4 deletions

34
docs/releases/3.24.6 Normal file
View file

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

View file

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

View file

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