Skip to content

Releases: czottmann/obsidian-actions-uri

1.1.2

10 May 10:10
Compare
Choose a tag to compare

This is a minor release aimed at fixing an issue with opening notes after creation that came up during the Actions for Obsidian iOS TestFlight.

  • [FIX] Cleans up opening/focussing notes
  • [DEL] Removes outdated API references

1.1.0

04 May 17:01
Compare
Choose a tag to compare

Version 1.1.0

The plugin is stable enough and used in production as the companion plugin to my macOS/iOS app Actions for Obsidian. So the version number took a big leap to bring it mostly in line with the app. Nothing else will change, Actions URI will remain FOSS under a MIT License.

New stuff

No longer broken

  • Adds code for preventing a race condition in vaults w/ Templater enabled (#61)

0.18.0

14 Apr 16:07
Compare
Choose a tag to compare

Version 0.18.0

New stuff

The /note/create route has a new optional if-exists parameter to specify a strategy for dealing with an existing note. It overrides the default behavior (creating a new note by appending a numeric suffix to the base name) and can be set to skip or overwrite. if-exists=skip will not create another note and instead return the named note as-is. if-exists=overwrite will replace the existing note with a new one.

The/daily-note/create route has a new optional if-exists parameter to specify a strategy for dealing with an existing current daily note. It overrides the default behavior (returning an error) and can be set to skip or overwrite. if-exists=skip will pretend the existing note was just created and return it. if-exists=overwrite will trash the existing note and create a new daily note from scratch.

Changes

  • /note/create: the overwrite parameter is deprecated and will be removed in a future release. Use if-exists=overwrite instead.
  • /daily-note/create: the overwrite parameter is deprecated and will be removed in a future release. Use if-exists=overwrite instead.

0.17.0

12 Apr 14:30
Compare
Choose a tag to compare

Version 0.17.0

This release fixes a problem where operations would silently fail when the
queried file path contained a path segment with a leading or trailing space.

Please note that route /open/search is deprecated as of this version, use
/search/open instead.

0.16.4

15 Feb 16:11
Compare
Choose a tag to compare

Hot Fix

  • [CHG] Increases time waiting for search results in /search/all-notes to 2s [#50]

Version 0.16.0

This release brings new routes for dealing with folders and some additional endpoints to /note. It also deprecates the old route /vault/list-folders in favor of the new /folder/list.

New

Deprecations

0.16.3

06 Feb 11:29
Compare
Choose a tag to compare

Hot Fix

  • [FIX] Fixes handling of backslashes and colon characters in file names [#43]

Version 0.16.0

This release brings new routes for dealing with folders and some additional endpoints to /note. It also deprecates the old route /vault/list-folders in favor of the new /folder/list.

New

Deprecations

0.16.2

30 Jan 16:38
Compare
Choose a tag to compare

Minor Fix

  • [CHG] Shortens */rename error messages

Version 0.16.0

This release brings new routes for dealing with folders and some additional endpoints to /note. It also deprecates the old route /vault/list-folders in favor of the new /folder/list.

New

Deprecations

0.16.1

28 Jan 14:10
Compare
Choose a tag to compare

Hot Fix

  • Adds graceful handling of the default "Default location for new notes" configuration setting [#41]

Version 0.16.0

This release brings new routes for dealing with folders and some additional endpoints to /note. It also deprecates the old route /vault/list-folders in favor of the new /folder/list.

New

Deprecations

0.16.0

26 Jan 11:22
Compare
Choose a tag to compare

This release brings new routes for dealing with folders and some additional endpoints to /note. It also deprecates the old route /vault/list-folders in favor of the new /folder/list.

New

Deprecations

0.15.0

31 Dec 13:14
Compare
Choose a tag to compare

This is mostly a chore release with some light preparations for my upcoming macOS app Actions for Obsidian.

Have a wondrous 2023, people 🚀

New

Changed

  • Root routes (e.g., /, /note, /daily-note) return a non-empty result message

No longer broken

  • Addresses endless loop in string search/replace routes which would occur when the replacement included the search term [#28]