diff --git a/README.md b/README.md index 7812e38..a4c810f 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,32 @@ [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/akosbalasko/zoottelkeeper-obsidian-plugin?style=for-the-badge&sort=semver)](https://github.com/akosbalasko/zoottelkeeper-obsidian-plugin/releases/latest) ![GitHub All Releases](https://img.shields.io/github/downloads/akosbalasko/zoottelkeeper-obsidian-plugin/total?style=for-the-badge) +## Changes in v.0.18.0 + +- Include/Exclude folders improved: absolute paths are required, independently from its first character (it can be '/', or simply just start with the name of the folder within the root path to be included/excluded ). +- Specific character is introduced: if you type '*' at the end of the folder, it means that it AND its subdirectories(recursively) will be included or excluded + +### Example: +Assuming that you have the following directories in the root of your vault: +``` +Notes +Notes/Daily +Articles +Articles/Science +``` + +If you would like to include Notes, the Daily within and Articles to be included, but exclude Articles/Science you should set +include property to: +``` +Notes/* +Articles +``` +and exclude property to: +``` +Articles/Science +``` + + ## What's new in the latest version (v0.17.0) - Option to set a **template** for index files - Numbers sorted correctly in index links (bug: https://github.com/akosbalasko/zoottelkeeper-obsidian-plugin/issues/45) diff --git a/manifest.json b/manifest.json index 9270aab..f1c5714 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "zoottelkeeper-obsidian-plugin", "name": "Zoottelkeeper Plugin", - "version": "0.17.3", + "version": "0.18.0", "minAppVersion": "0.12.1", "description": "This plugin automatically creates, maintains and tags MOCs for all your folders.", "author": "Akos Balasko, Micha Brugger", diff --git a/package.json b/package.json index a09ad05..551cd22 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zoottelkeeper-obsidian-plugin", - "version": "0.17.3", + "version": "0.18.0", "description": "This plugin automatically creates, maintains and tags MOCs for all your folders.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index f190f75..b9e55ea 100644 --- a/versions.json +++ b/versions.json @@ -14,5 +14,6 @@ "0.17.0": "0.12.1", "0.17.1": "0.12.1", "0.17.2": "0.12.1", - "0.17.3": "0.12.1" + "0.17.3": "0.12.1", + "0.18.0": "0.12.1" } \ No newline at end of file