Releases: czottmann/obsidian-actions-uri
Releases · czottmann/obsidian-actions-uri
1.8.3
No longer broken
/note-properties/set: Sometimes, randomly, updating file properties would fail, and the updated keys would become the only remaining frontmatter. This should be fixed now. Thanks to Marco for the heads-up.
Changes
/*/rename: Renaming now uses Obsidian'srenameFile()function now, which updates all links to the renamed file depending on the user's preferences. Before, Actions URI would just rename the note/ file/ folder, and be done with it.
1.8.1
New stuff
- All
/noteroutes that return note information (like path, UID, body, etc.) now also return aresult-uri-pathandresult-uri-uid(where available), containing URLs that can be used to link to the note from other places on the same device. - The new standard, optional boolean parameter
hide-ui-notice-on-errorcan be used to suppress the UI notice on errors like "note not found". Defaults tofalse, so by default the UI notice will be shown as usual.
Removals
As announced last year (see 1.6.0, 2024-07-23), the periodic note routes are now gone for good. All their functionality is now part of the /note routes.
No longer broken
x-successresults will no longer wrap undefined values as strings, so let's bid farewell toresult-some-value=undefined.
Changes
- Minor cleanups of the settings tab.
Development
Adds a E2E test suite, see tests/README.md for details. This is a work in progress, and will be expanded over time.
Full Changelog: 1.7.3...1.8.1
1.7.3
No longer broken
/note/create: Usingif-exists=skip&silent=falsewould not open an already existing note in Obsidian. (#99)
Full Changelog: 1.7.2...1.7.3
1.7.2
No longer broken
- When using Templater with periodic notes, the created notes would sometimes end up with Templater placeholders still unreplaced or content not applied.
post-create-pause.1
For internal use ONLY
1.7.1
No longer broken
- Fixed output of
/dataview/list-queryto return a one-dimensional array. (Issue was introduced in 1.7.0.)
1.7.0
Changes
- Adjusted
/dataview/list-queryto consistently return a two-dimensional array.
No longer broken
- Frontmatter containing a string with three or more hyphens in a row would break frontmatter parsing. This is now fixed.
1.6.5
No longer broken
- For some users, both
/note/appendand/note/prependwould create empty periodic notes when thecreate-if-not-foundparameter was used.
Changes
- Adjusted opening/focussing notes for API changes in Obsidian 1.7.
1.6.4
No longer broken
- Both
/note/appendand/note/prependnow correctly work with headlines at the end of a note which don't have a trailing newline.
1.6.3
No longer broken
- When calling
/*-note/createwith atemplate-fileparameter, the template wouldn't be found unless the template path contained both folder and file extension. Fixed!