Skip to content

Commit

Permalink
release: 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
HananoshikaYomaru committed Oct 31, 2023
1 parent 65935bf commit 6b5ae97
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "frontmatter-generator",
"name": "Frontmatter generator",
"version": "1.0.7",
"version": "1.0.8",
"minAppVersion": "0.15.0",
"description": "Generate frontmatter for your notes from json and javascript",
"author": "Hananoshika Yomaru",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-frontmatter-generator",
"version": "1.0.7",
"version": "1.0.8",
"description": "A plugin for Obsidian that generates frontmatter for notes.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import {
} from "./utils/obsidian";
import { getAPI, DataviewApi } from "obsidian-dataview";
import { deepRemoveNull } from "./utils/deepRemoveNull";
import { z } from "zod";

const userClickTimeout = 5000;

Expand Down Expand Up @@ -99,6 +100,7 @@ function getNewTextFromFile(
properties: data.yamlObj,
},
dv,
z,
});

if (!result.success) {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"1.0.3": "0.15.0",
"1.0.4": "0.15.0",
"1.0.5": "0.15.0",
"1.0.7": "0.15.0"
"1.0.7": "0.15.0",
"1.0.8": "0.15.0"
}

0 comments on commit 6b5ae97

Please sign in to comment.