Skip to content

Commit d9668ce

Browse files
committed
Update readme and bump version
1 parent dea5ead commit d9668ce

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# Obsidian Meta Bind Plugin
22
This plugin can create input fields inside your notes and bind them to metadata fields.
33

4-
### UNDER CONSTRUCTION
5-
This plugin is not yet finished.
6-
74
### How to use
85
To create an input field you have to write an inline code block or normal code block starting with `INPUT`. Then in square brackets the type of input field, in round brackets arguments and finally behind a colon the metadata field to bind to.
96

@@ -17,6 +14,8 @@ The plugin also allows further customization with arguments. So the complete syn
1714
INPUT[input_type(argument_name(argument_value), argument_name_2, ...):file_name_or_path#metadata_field]
1815
```
1916

17+
For more examples see the `exampleVault` folder.
18+
2019
#### Input field types
2120
- `slider` a slider from 0 to 100 (custom ranges can be set using `minValue` and `maxValue`, see below)
2221
- `toggle` a toggle element
@@ -35,8 +34,6 @@ INPUT[input_type(argument_name(argument_value), argument_name_2, ...):file_name_
3534
- `title(value)` only for (multi-)selects, adds a title to the select input
3635

3736
### How to install
38-
This plugin is still in **beta**.
39-
4037
You must manually download the zip archive from the latest release here on GitHub.
4138
After downloading, extract the archive into the `.obsidian/plugins` folder in your vault.
4239

exampleVault/.obsidian/plugins/obsidian-meta-bind-plugin/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-meta-bind-plugin",
33
"name": "Meta Bind Plugin",
4-
"version": "0.1.7",
4+
"version": "0.2.0",
55
"minAppVersion": "0.14.0",
66
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
77
"author": "Moritz Jung",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-meta-bind-plugin",
33
"name": "Meta Bind Plugin",
4-
"version": "0.1.7",
4+
"version": "0.2.0",
55
"minAppVersion": "0.14.0",
66
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
77
"author": "Moritz Jung",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-meta-bind-plugin",
3-
"version": "0.1.7",
3+
"version": "0.2.0",
44
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)