Skip to content

Commit

Permalink
Add documentation and bump versions for release of 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann committed Jul 3, 2021
1 parent 4328063 commit c98b18f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
17 changes: 5 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ Quickly add new pages or content to your vault.
You can also do a [manual installation](docs/ManualInstallation.md).

## What's new?
### 0.3.3
- Fix 'undefined' error when canceling template choices.
- Insert after in captures now allow format syntax for dynamic insertion.
- Appending to active file now replaces the selected text instead of inserting after it.

### 0.3.0 - 0.3.1
- Link suggestion in the input prompt now uses your Obsidian link settings by default.
- Add error handling for using ``{{MACRO}}`` to execute a macro that does not exist.
Expand All @@ -32,7 +37,6 @@ You can also do a [manual installation](docs/ManualInstallation.md).
- Fix bug where, if there is an emoji in the folder name, the file sometimes doesn't get created
- Update the API. The suggester can now take a map function for the `displayItems`, which will be executed on the `actualItems`. There is also a utility module now, which currently allows you to set or get your clipboard.


### 0.2.11 - 0.2.12
- Implement Quick Commands - ironically, starting with a Wait command. With this command, you can add a delay to your macros. Useful for commands that may take a while to finish.
- Fix a bug where the command sequence did not save.
Expand All @@ -42,17 +46,6 @@ You can also do a [manual installation](docs/ManualInstallation.md).
- If formatted content is empty, don't add anything.
- Capture: Don't create file if setting is disabled.

### 0.2.9 - 0.2.10
- Fix Capture 'Create file if it doesn't exist' bug where some Templater functions did not activate
- Address #28 - choices in multis were not able to be added as commands
- Implement #29 - you can now capture to the bottom of a file
- Fix macro ID conversion
- Fix select macro bug for users with 0-1 macros

### 0.2.7 - 0.2.8
- Linebreak formatting no longer occurs in Template choices - it only activates for Capture choices. It caused unnecessary conflicts.
- Fix bug where some Templater functions are activated twice.

## Getting started
The first thing you'll want to do is add a new choice. A choice can be one of four types.
- [Template Choice](docs/Choices/TemplateChoice.md) - A powerful way to insert templates into your vault.
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "quickadd",
"name": "QuickAdd",
"version": "0.3.2",
"version": "0.3.3",
"minAppVersion": "0.12.5",
"description": "Quickly add new pages or content to your vault.",
"author": "Christian B. B. Houmann",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quickadd",
"version": "0.3.2",
"version": "0.3.3",
"description": "Quickly add new pages or content to your vault.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"0.2.16": "0.12.4",
"0.3.2": "0.12.5"
"0.3.3": "0.12.5"
}

0 comments on commit c98b18f

Please sign in to comment.