Skip to content

Releases: chhoumann/quickadd

0.23.0

21 Apr 21:35
Compare
Choose a tag to compare

0.23.0 (2023-04-21)

Features

  • add AI Assistant to macros. You can now use the power of Large Language Models in your macros (fa361e4)

Here is a showcase of what's possible with the new feature.
To get started, you'll need to grab an OpenAI API key.

Here is the big guide to getting started with AI-powered workflows in QuickAdd

0.22.0

21 Apr 12:22
Compare
Choose a tag to compare

0.22.0 (2023-04-21)

Features

0.21.0

15 Apr 15:00
Compare
Choose a tag to compare

0.21.0 (2023-04-15)

Bug Fixes

  • defaultValue in user scripts with settings was not used, despite being set (d00587c)

Features

  • add new format syntax: {{selected}} - is replaced by the selected text (21d40e9)
  • API format function now allows for conditional clearing of variables (f5961f6)

0.20.1

13 Apr 12:29
Compare
Choose a tag to compare

0.20.1 (2023-04-13)

Bug Fixes

  • capture to tags not finding all types of tags (arrays in yaml) (071ca4e), closes #459

0.20.0

12 Apr 14:39
Compare
Choose a tag to compare

0.20.0 (2023-04-12)

Bug Fixes

  • capture to arbitrary file throws "file not found" error (49fef65), closes #454
  • fixed minimum size of capture format box to prevent it from becoming too small on mobile (ee5c2d3), closes #446

Features

  • add arrow key navigation in yesNoPrompt (01bcb8d), closes #444

0.19.4

05 Apr 17:53
Compare
Choose a tag to compare

0.19.4 (2023-04-05)

Bug Fixes

  • properly find end of section when last line is empty (69f6716)

0.19.3

05 Apr 17:41
Compare
Choose a tag to compare

0.19.3 (2023-04-05)

Bug Fixes

  • capture to Active File Captures Only to Cursor Position, even when Insert After is enabled (25526a9), closes #445

0.19.2

05 Apr 14:20
Compare
Choose a tag to compare

0.19.2 (2023-04-05)

Bug Fixes

  • check both tag & tags in frontmatter when capturing to tag (66bf6ac)

0.19.1

05 Apr 14:09
Compare
Choose a tag to compare

0.19.1 (2023-04-05)

Bug Fixes

  • tag capture also looks in frontmatter tags (28919cf)

0.19.0

05 Apr 13:53
Compare
Choose a tag to compare

0.19.0 (2023-04-05)

Features

  • Capture Anywhere: captures now support folder paths as the 'Capture To' target (bf0126e), closes #227
  • Capture with Tag: put a tag in the capture path to capture to a file with that tag (85b2a5a), closes #227

Capturing to any file in a folder

You can now type a folder name into the Capture To field, and QuickAdd will ask you which file in the folder you'd like to capture to.
This also supports the format syntax. You can even write a filename in the suggester that opens, and it will create the file for you - assuming you have the Create file if it doesn't exist setting enabled.

For example, you might have a folder called CRM/people. In this folder, you have a note for the people in your life. You can type CRM/people in the Capture To field, and QuickAdd will ask you which file to capture to. You can then type John Doe in the suggester, and QuickAdd will create a file called John Doe.md in the CRM/people folder.

You could also write nothing - or / - in the Capture To field. This will open the suggester with all of your files in it, and you can select or type the name of the file you want to capture to.

Capturing to a folder will show all files in that folder. This means that files in nested folders will also appear.

Capturing to file with tag

Similarly, you can type a tag name in the Capture To field, and QuickAdd will ask you which file to capture to, assuming the file has the tag you specify.

If you have a tag called #people, and you type #people in the Capture To field, QuickAdd will ask you which file to capture to, assuming the file has the #people tag.

image