Skip to content

Commit 1ac465a

Browse files
committed
update readme and bump version
1 parent 6e68159 commit 1ac465a

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ This plugin can create input fields inside your notes and bind them to metadata
44
### UNDER CONSTRUCTION
55
This plugin is not yet finished.
66

7-
Planed features are:
8-
- ranges for sliders
9-
- more input types
10-
117
### How to use
128
To create an input field you have to write an inline code block starting with `INPUT`. Then in square brackets the type of input field and what metadata field to bind to.
139

@@ -25,10 +21,13 @@ INPUT[input_type(argument_name(argument_value), argument_name_2, ...):file_name_
2521
- `slider` a slider from 0 to 100 (custom ranges are on the road map)
2622
- `toggle` a toggle element
2723
- `text` a text field
24+
- `text_area` a bigger text field
2825

2926
#### Arguments
3027
- `class(class_name)` adds a css class to the input field
3128
- `addLabels` only for slider, adds labels for the min and max values
29+
- `minValue(value)` only for slider, sets the min value
30+
- `maxValue(value)` only for slider, sets the max value
3231

3332
### How to install
3433
This plugin is still in **beta**.

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.4",
4+
"version": "0.1.5",
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.2",
3+
"version": "0.1.5",
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)