Skip to content

Commit 28dbf9a

Browse files
release(version): Release 2.0.0 [skip ci]
# [2.0.0](1.18.1...2.0.0) (2025-08-06) * feat!: remove macro indirection by embedding macros directly in choices ([17b8f36](17b8f36)), closes [#543](#543) ### Bug Fixes * commands now use updated choice settings without requiring toggle ([#877](#877)) ([3443a87](3443a87)), closes [#192](#192) * dynamically resolve choice names in macro lists ([#870](#870)) ([084d951](084d951)), closes [#152](#152) * empty string variables no longer trigger prompts ([#872](#872)) ([717feef](717feef)), closes [#163](#163) * prevent {{title}} usage in filenames to avoid circular dependency ([8decab6](8decab6)) * prioritize exact matches in Insert After functionality ([#876](#876)) ([6fccd33](6fccd33)), closes [#181](#181) * process Templater commands in template before adding capture content ([a261acb](a261acb)) * resolve tag selection truncation in text input fields ([#859](#859)) ([#860](#860)) ([fccbc71](fccbc71)) * Restore original import order in main.ts to prevent circular dependency ([8bd78cb](8bd78cb)) * use Docusaurus admonition syntax instead of Obsidian callouts ([fd90624](fd90624)) ### Features * add {{CLIPBOARD}} format syntax element ([64639e4](64639e4)), closes [#88](#88) * add {{RANDOM:n}} format placeholder ([#865](#865)) ([1c138df](1c138df)), closes [#47](#47) * add {{title}} format syntax for rendered filename ([#863](#863)) ([1dda47f](1dda47f)), closes [#327](#327) * add allowCustomInput parameter to suggester API ([#879](#879)) ([a6c52ab](a6c52ab)), closes [#219](#219) * Add capture confirmation notifications ([#180](#180)) ([#875](#875)) ([1814873](1814873)) * add configurable link placement options for capture and template choices ([#874](#874)) ([3611121](3611121)), closes [#166](#166) * Add default value support to VDATE variables ([#868](#868)) ([c722b84](c722b84)) * add Open File command for macros ([#871](#871)) ([e31460f](e31460f)) * add paste with format command for rich clipboard content ([#869](#869)) ([cf0ef23](cf0ef23)), closes [#93](#93) * Add simple placeholder support to suggester API ([2836e47](2836e47)) * auto-open existing files when using template choices ([#867](#867)) ([98ac309](98ac309)), closes [#61](#61) * Enhanced file opening with flexible location and view mode options ([#880](#880)) ([3b82525](3b82525)) * **vdate:** add live preview for VDATE modal ([0b9cea4](0b9cea4)), closes [#796](#796) ### BREAKING CHANGES * Stand-alone macros are no longer stored or referenced. All existing macros are migrated into their corresponding `MacroChoice`.
1 parent a261acb commit 28dbf9a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "quickadd",
33
"name": "QuickAdd",
4-
"version": "1.18.1",
4+
"version": "2.0.0",
55
"minAppVersion": "1.6.0",
66
"description": "Quickly add new pages or content to your vault.",
77
"author": "Christian B. B. Houmann",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickadd",
3-
"version": "1.18.1",
3+
"version": "2.0.0",
44
"description": "Quickly add new pages or content to your vault.",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,6 @@
8484
"1.16.1": "1.6.0",
8585
"1.17.0": "1.6.0",
8686
"1.18.0": "1.6.0",
87-
"1.18.1": "1.6.0"
87+
"1.18.1": "1.6.0",
88+
"2.0.0": "1.6.0"
8889
}

0 commit comments

Comments
 (0)