Description
Version 1.1.0 includes the following new features:
- More sophisticated targeting (closes #1). More specifically, you can target with the following additional parameters:
#tag- Prefixing the value with a#(e.g.#tag) will match notes that have the specified tag. For example,#tag-1would trigger the action on any note that includes the tag "tag-1".Folder/- Putting/at the end of your value (e.g.folder/), will target notes within the specified folder. You can target nested folders likefolder/subfolder/. For example,My Folder/would target all notes under the "My Folder" folder, andMy Folder/Subfolderall the notes under the specific subfolder.Note name- Putting plain text (e.g.Note Name) will target a note with the exact title (case-insensitive)- Negative targeting - The above conditions can be used for negative targeting, by prefixing them with
!. For example,!#tag-1will trigger on any note EXCEPT for those containing the tag "tag-1".!My Folder/will trigger on any note EXCEPT for those under the "My Folder" folder.!My Notewill trigger on any notes EXCEPT for the note with the title "My Note". - Multiple targeting - You can use commas to combine multiple conditions. For example,
#tag-1,folder/,Note Namewill trigger if the note matches ANY of these conditions (has "tag-1" OR is in "folder" OR has the specified name). On the other hand,!#tag-1,!folder/,!Note Namewould trigger only if ALL conditions are true (note doesn't have "tag-1" AND isn't in "folder" AND isn't named "Note Name").
- Adds a new trigger "Closing a note", which runs every time the user leaves a note (closing #4)
How to beta test
You can use BRAT to test beta versions of the plugin:
- Install the BRAT plugin.
- Check the manifest-beta.json file to see the current beta version. For the current release, it should be
1.1.0-beta.1. - Go to BRAT and add the plugin using the option "Add Beta plugin with frozen version":
- Restart your vault.
Changelog
Full Changelog: 1.0.2...1.1.0-beta.1