Skip to content

Releases: czottmann/obsidian-actions-uri

1.8.3

05 Aug 13:16

Choose a tag to compare

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's renameFile() 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

22 May 11:52

Choose a tag to compare

New stuff

  • All /note routes that return note information (like path, UID, body, etc.) now also return a result-uri-path and result-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-error can be used to suppress the UI notice on errors like "note not found". Defaults to false, 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-success results will no longer wrap undefined values as strings, so let's bid farewell to result-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

30 Apr 11:14

Choose a tag to compare

No longer broken

  • /note/create: Using if-exists=skip&silent=false would not open an already existing note in Obsidian. (#99)

Full Changelog: 1.7.2...1.7.3

1.7.2

10 Feb 09:21

Choose a tag to compare

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

05 Feb 12:32

Choose a tag to compare

post-create-pause.1 Pre-release
Pre-release

For internal use ONLY

1.7.1

04 Feb 12:21

Choose a tag to compare

No longer broken

  • Fixed output of /dataview/list-query to return a one-dimensional array. (Issue was introduced in 1.7.0.)

1.7.0

30 Jan 11:19

Choose a tag to compare

Changes

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

09 Oct 11:19

Choose a tag to compare

No longer broken

  • For some users, both /note/append and /note/prepend would create empty periodic notes when the create-if-not-found parameter was used.

Changes

  • Adjusted opening/focussing notes for API changes in Obsidian 1.7.

1.6.4

20 Sep 14:31

Choose a tag to compare

No longer broken

  • Both /note/append and /note/prepend now correctly work with headlines at the end of a note which don't have a trailing newline.

1.6.3

02 Aug 12:11

Choose a tag to compare

No longer broken

  • When calling /*-note/create with a template-file parameter, the template wouldn't be found unless the template path contained both folder and file extension. Fixed!