From 42bca61ad8bd2bf06af096d5155de51d208c42f1 Mon Sep 17 00:00:00 2001 From: AndreMacedo88 Date: Tue, 13 Feb 2024 19:06:28 +0100 Subject: [PATCH] docs: :memo: write an explanation for the `sound` card type --- README.md | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c8aebe9..36241fe 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ Outside of these rules, you are free to populate your text file with other annot # Current card types Currently, the output deck will be populated with cards from one type at a time. The currently implemented types are: -- `basic`: The basic card type in Anki. Each line's text is split between front and back of one card by the `separator`. -- `sound`: TODO: write a short description of the sound card type +- `basic`: The [Basic](https://docs.ankiweb.net/getting-started.html#card-types) card type in Anki. Each line's text is split between front and back of one card by the `separator` +- `sound`: Similar to the [Basic (type in the answer)](https://docs.ankiweb.net/getting-started.html#card-types) card type, but with an added empty field on the back of the card that can be filled up afterwards with (for example) sound files by using an add-on such as [HyperTTS](https://ankiweb.net/shared/info/111623432) # Installation -Make sure you have python installed (recommended version >= 3.10) and then run in the terminal/command-line: +Make sure you have python installed (recommended version >= 3.12) and then run in the terminal/command-line: ``` pip install anki_deck_from_text ``` diff --git a/pyproject.toml b/pyproject.toml index c6b3f54..2367afe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "anki_deck_from_text" -version = "1.2.1" +version = "1.3.0" description = "Generate an Anki deck from annotations on a text file" authors = ["Andre Macedo "] readme = "README.md"