mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
release 3.16.2
This commit is contained in:
parent
60430a0dea
commit
65a3bb024c
3 changed files with 17 additions and 2 deletions
15
docs/releases/3.16.2.md
Normal file
15
docs/releases/3.16.2.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# TaskNotes 3.16.2
|
||||
|
||||
## New Features
|
||||
|
||||
### Task Link Integration
|
||||
|
||||
- **Markdown Link Support for Inline Task Widgets**: Extended task link detection and rendering to support both wikilinks and markdown links. The plugin now properly renders `[text](path)` markdown links as interactive inline task widgets in both live preview and reading modes [#312] - Thanks to @nightroman for noting the missing link overlays on markdown links
|
||||
|
||||
## Improvements
|
||||
|
||||
### Link Processing
|
||||
|
||||
- **Link Detection**: Improved TaskLinkDetectionService to detect both `[[wikilinks]]` and `[markdown](links)` with proper URL decoding for paths containing spaces
|
||||
- **Link Rendering**: Updated both TaskLinkOverlay (live preview) and ReadingModeTaskLinkProcessor (reading mode) to handle both link types consistently
|
||||
- **API Integration**: Uses proper Obsidian API functions (`parseLinktext()` and `getFirstLinkpathDest()`) for reliable link resolution
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "tasknotes",
|
||||
"name": "TaskNotes",
|
||||
"version": "3.16.1",
|
||||
"version": "3.16.2",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
|
||||
"author": "Callum Alpass",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tasknotes",
|
||||
"version": "3.16.1",
|
||||
"version": "3.16.2",
|
||||
"description": "Note-based task management with calendar, pomodoro and time-tracking integration.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue