diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..740880b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,46 @@ +# Changelog + +## 1.2.1 + +Fix: + +- Tree scrolling after open note through tree + +## 1.2.0 + +New Features: + +- Add "Reveal in Dendron Tree" menu item to context menu in file tab. +- Multi vault support. +- Automatically generate front matter when a new file created. This can disabled in setting. +- Custom resolver for renderer for link and embed/ref. This can disabled in setting. + +## 1.1.1 + +Fix: + +- Dendron icon not adapt Obsidian theme. +- File name is case sensitive. File name must case insensitive. +- Generated title not respect file name. If file name has uppercase letter then do not title case + then do not title case title. + +## 1.1.0 + +Fix: + +- Not work on Android. + +## 1.0.1 + +Fix: + +- Remove "obsidian" from plugin id. + +## 1.0.0 + +Initial reelase. + +Features: + +- Dendron tree +- Lookup note diff --git a/manifest.json b/manifest.json index f053c82..10109d7 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "dendron-tree", "name": "Dendron Tree", - "version": "1.2.0", + "version": "1.2.1", "minAppVersion": "0.15.0", "description": "Add tree for exploring Dendron note.", "author": "Levi Rizki Saputra", diff --git a/package.json b/package.json index 69c7a1f..9ad02a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-dendron-tree", - "version": "1.2.0", + "version": "1.2.1", "description": "This is a sample plugin for Obsidian (https://obsidian.md)", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 6f21c5e..e9e0dbb 100644 --- a/versions.json +++ b/versions.json @@ -3,5 +3,6 @@ "1.0.1": "0.15.0", "1.1.0": "0.15.0", "1.1.1": "0.15.0", - "1.2.0": "0.15.0" + "1.2.0": "0.15.0", + "1.2.1": "0.15.0" } \ No newline at end of file