Skip to content

Commit

Permalink
versions and readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
akosbalasko committed Mar 24, 2022
1 parent 3268626 commit 07eb295
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
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": "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": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 07eb295

Please sign in to comment.