Skip to content

Commit a3bf18b

Browse files
committed
Merge branch 'master' into release
2 parents 8a8ae2e + 8398e4a commit a3bf18b

File tree

118 files changed

+50290
-2044
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+50290
-2044
lines changed

.eslintignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
npm node_modules
2-
build
2+
build
3+
main.js
4+
Publish.js

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Publish.js linguist-generated

.github/workflows/closeIssue.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Close Invalid Issue
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
closeIssue:
8+
if: github.event.label.name == 'invalid'
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- name: Close Issue
14+
uses: peter-evans/close-issue@v2
15+
with:
16+
comment: This issue is invalid. Please conform to the issue templates.
17+
close-reason: not_planned

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules
33
package-lock.json
44
exampleVault
55
main.js
6+
Publish.js

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Obsidian Meta Bind Changelog
2+
3+
# 0.5.0
4+
5+
New Features
6+
- Live Preview support
7+
- Obsidian Publish support (docs page coming soon)
8+
- Inline Select input field (more or less a dropdown select)
9+
- Progress Bar input field (a bigger full note width slider)
10+
- On and Off Value arguments for the Toggle input field (specify custom on and off values for the toggle)
11+
- new error handling system that supports warnings
12+
13+
Minor Changes
14+
- added timed cache retention to the plugins on demand metadata cache
15+
16+
Bug Fixes
17+
- fixed a bug with the metadata cache needlessly updating the frontmatter
18+
- fixed some mistakes in the docs
19+
20+
# 0.4.X
21+
22+
No changelog available.

0 commit comments

Comments
 (0)