Prepare release of version 1.4.0

This commit is contained in:
Andre Perunicic 2023-02-20 19:46:49 -05:00
parent e8fe8a5d61
commit 86b8205547
4 changed files with 16 additions and 3 deletions

View file

@ -85,6 +85,18 @@ repeat: spaced every 14 days in the evening
You can also use the _Repeat this note..._ modal to adjust the repetition time.
### The `hidden` Field
If you want your note's content to be blurred during reviews, add the `hidden`
metadata flag:
```
hidden: true
```
When you click the blurred content, it will be revealed. This allows you to
build limited flashcards with the plugin.
## Similar Software
* [msipos/mind-palace: Mind palace: mnemonic note taking system.](https://github.com/msipos/mind-palace)

View file

@ -1,7 +1,7 @@
{
"id": "repeat-plugin",
"name": "Repeat",
"version": "1.3.3",
"version": "1.4.0",
"minAppVersion": "1.0.0",
"description": "Review notes using periodic or spaced repetition.",
"author": "Andre Perunicic",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-repeat-plugin",
"version": "1.3.3",
"version": "1.4.0",
"description": "An Obsidian plugin to review notes using periodic or spaced repetition.",
"main": "./src/main.ts",
"scripts": {

View file

@ -7,5 +7,6 @@
"1.3.0": "1.0.0",
"1.3.1": "1.0.0",
"1.3.2": "1.0.0",
"1.3.3": "1.0.0"
"1.3.3": "1.0.0",
"1.4.0": "1.0.0"
}