Skip to content

Commit 64ed374

Browse files
committed
update JS Engine version
1 parent 1ff468d commit 64ed374

File tree

8 files changed

+1279
-671
lines changed

8 files changed

+1279
-671
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Obsidian Meta Bind Changelog
22

3+
# 1.3.4
4+
5+
Changes
6+
7+
- The minimum required [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) version is now `0.3.0`
8+
9+
Bug Fixes
10+
11+
- Fixed a bug with view fields not updating when a child of the bound property changed
12+
313
# 1.3.3
414

515
Bug Fixes

exampleVault/Buttons/Button Example.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ action:
8282

8383
text `BUTTON[docs-button, open-button, open-tab-button]` text
8484

85+
And switch between light and dark mode
86+
8587
```meta-bind-button
8688
label: Switch to Light Mode
8789
hidden: false
@@ -103,6 +105,8 @@ actions:
103105
104106
```
105107

108+
And multiple things
109+
106110
```meta-bind-button
107111
label: This is a button
108112
class: test-class

exampleVault/testJsFile.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
console.log(`Hello ${context.args.greeting} from ${context.file.path}!`);
2-
throw new Error('This is an error');
1+
new Notice(`Hello ${context.args.greeting} from "${context.jsFile?.path}", ran by "${context.file?.path}"!`);

0 commit comments

Comments
 (0)