Skip to content

Commit b83d7a2

Browse files
committed
release 0.4.1
1 parent 663461d commit b83d7a2

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

exampleVault/Input Fields/Slider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
slider1: 57
3-
slider2: 11
2+
slider1: 22
3+
slider2: -4
44
---
55

66
### Simple Slider

exampleVault/Input Fields/Suggester.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
fileSuggest: "[[Other/Example Notes/Example Note with Image.md|Example Note with Image]]"
3-
suggest: option 1
3+
suggest: option 2
44
---
55

66
### Simple Suggester

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.4.0",
4+
"version": "0.4.1",
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.4.0",
3+
"version": "0.4.1",
44
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
55
"main": "main.js",
66
"scripts": {

src/main.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ export default class MetaBindPlugin extends Plugin {
6565
}
6666
});
6767

68-
this.registerMarkdownCodeBlockProcessor('meta-bind-js', (source, el, ctx) => {
69-
ctx.addChild(new ScriptMarkdownRenderChild(el, source, ctx, this));
70-
});
68+
// this.registerMarkdownCodeBlockProcessor('meta-bind-js', (source, el, ctx) => {
69+
// ctx.addChild(new ScriptMarkdownRenderChild(el, source, ctx, this));
70+
// });
7171

7272
// this.registerEditorExtension(cmPlugin);
7373
// const languageCompartment = new Compartment();
@@ -81,19 +81,19 @@ export default class MetaBindPlugin extends Plugin {
8181
// },
8282
// });
8383

84-
if (this.settings.devMode) {
85-
this.addCommand({
86-
id: 'meta-bind-debug',
87-
name: 'Trip Debugger',
88-
callback: () => {
89-
debugger;
90-
},
91-
});
92-
}
93-
94-
this.app.workspace.onLayoutReady(async () => {
95-
await this.registerCodeMirrorMode();
96-
});
84+
// if (this.settings.devMode) {
85+
// this.addCommand({
86+
// id: 'meta-bind-debug',
87+
// name: 'Trip Debugger',
88+
// callback: () => {
89+
// debugger;
90+
// },
91+
// });
92+
// }
93+
//
94+
// this.app.workspace.onLayoutReady(async () => {
95+
// await this.registerCodeMirrorMode();
96+
// });
9797

9898
this.addSettingTab(new MetaBindSettingTab(this.app, this));
9999
}

0 commit comments

Comments
 (0)