From bb7519c1a84a1d81c7afce553333bef80451d087 Mon Sep 17 00:00:00 2001 From: luktom Date: Tue, 10 May 2022 22:50:16 +0200 Subject: [PATCH] Update readme for release --- README.md | 29 +++++++++++++++++++++++++++++ manifest.json | 2 +- versions.json | 3 ++- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ee1d9f..8d697a2 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,34 @@ fields: ![Sample view](assets/motorcycles-db.png) +## Sources + +There are the following sources available: +### directory + +Reads all files from specified directory. + +Example usage: + +``` +sources: +- type: directory + path: motorcycles +``` + +### tags + +Reads all files with one of the tags specified. + +Example usage: + +``` +sources: +- type: tags + tags: + - motorcycles +``` + ## Field types The plugin, at the moment, supports the following field types: @@ -161,6 +189,7 @@ By default, the font color will be determined automatically, but if you want to - add grouping - add sorting in both directions in the code - add ability to use Dataview queries as a source +- add ability to set global ignore patterns in settings ## Use plugins and other projects diff --git a/manifest.json b/manifest.json index 758835b..63a722a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-database-plugin", "name": "Database Plugin", - "version": "1.1.0", + "version": "1.2.0", "minAppVersion": "0.12.0", "description": "This plugin allows you to manage databases based on markdown files", "author": "Ɓukasz Tomaszkiewicz", diff --git a/versions.json b/versions.json index d5f2515..480406f 100644 --- a/versions.json +++ b/versions.json @@ -2,5 +2,6 @@ "1.0.1": "0.12.0", "1.0.2": "0.12.0", "1.0.3": "0.12.0", - "1.1.0": "0.12.0" + "1.1.0": "0.12.0", + "1.2.0": "0.12.0" }