Skip to content

Commit

Permalink
Merge pull request #131 from decaf-dev/dev
Browse files Browse the repository at this point in the history
1.17.1
  • Loading branch information
decaf-dev committed Jun 25, 2024
2 parents 1e18618 + ee36bff commit 033a7ae
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "vault-explorer",
"name": "Vault Explorer",
"version": "1.17.0",
"version": "1.17.1",
"minAppVersion": "1.4.13",
"description": "Explore your vault in visual format",
"author": "DecafDev",
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-vault-explorer",
"version": "1.17.0",
"version": "1.17.1",
"description": "Explore your vault in visual format",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/svelte/app/services/frontmatter-utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const removeFrontmatterBlock = (data: string) => {
return data.replace(/^---\n[\s\S]*?\n---\n/, "");
return data.replace(/^---\n[\s\S]*?\n---/, "").trim();
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,6 @@
"1.14.2": "1.4.13",
"1.15.0": "1.4.13",
"1.16.0": "1.4.13",
"1.17.0": "1.4.13"
"1.17.0": "1.4.13",
"1.17.1": "1.4.13"
}

0 comments on commit 033a7ae

Please sign in to comment.