1
1
mirror of https://github.com/Yvee1/hascard.git synced 2024-10-06 03:58:29 +03:00

Bump version to 0.2.1.0

This commit is contained in:
Steven van den Broek 2020-08-04 15:40:58 +02:00
parent 6333dd3928
commit c5afdf4117
3 changed files with 29 additions and 3 deletions

View File

@ -1,4 +1,15 @@
# Changelog for hascard
## 0.2.1.0
New:
- A certain chunk of a deck of cards can be reviewed using the `-c i/n` CLI option. For example `hascard -c 3/5` will split the deck into 5 chunks, and review the 3rd one. These chunks can be used with the shuffle and amount options too.
- Visual indicator in the deck selector menu for whether the deck is being shuffled or not.
- Shuffling can be toggled inside the deck selector menu using the 's' key.
- Most parsing error messages now show up as a pop-up box with nicer formattting than before.
- The maximum number of recently selected decks stored and shown can now be changed in the settings menu.
Fixed bugs:
- Flickering when switching between menus is gone. This was done by merging the seperate Brick applications into one.
## 0.2.0.0
New:
- A new type of card is available: reorder the elements. This could break previous definition or open question cards if they had the same format as the new reorder the elements card. In that case change the 1. 2. etc. to something like 1), 2) which is not seen as a reorder type card.

View File

@ -1,5 +1,5 @@
name: hascard
version: 0.2.0.0
version: 0.2.1.0
github: "Yvee1/hascard"
license: BSD3
author: "Steven van den Broek"

View File

@ -52,5 +52,20 @@ drawInfo =
viewport Ordinary Vertical (strWrap info)
info :: String
info =
"Hascard is a text-based user interface for reviewing notes using 'flashcards'. Cards are written in markdown-like syntax; for more info see the README file. Use the --help flag for information on the command line options.\n\nControls:\n * Use arrows or the j and k keys for menu navigation\n\n * Enter confirms a selection, flips a card or continues to the next card\n\n * Use TAB or the arrow keys for navigating gaps in open questions\n\n * Use the c key for confirming reorder questions or multiple choice questions with more than 1 possible answer\n\n * Use F1 to show the answers of a open question\n\n * Use CTRL+Left and CTRL+Right to move to previous and next cards without having to answer them"
info = unlines
[ "Hascard is a text-based user interface for reviewing notes using 'flashcards'. Cards are written in markdown-like syntax; for more info see the README file. Use the --help flag for information on the command line options."
, ""
, "Controls:"
, " * Use arrows or the j and k keys for menu navigation"
, ""
, " * Press the s key to toggle shuffling inside the deck selector menu"
, ""
, " * Enter confirms a selection, flips a card or continues to the next card"
, ""
, " * Use TAB or the arrow keys for navigating gaps in open questions"
, ""
, " * Use the c key for confirming reorder questions or multiple choice questions with more than 1 possible answer"
, ""
, " * Use F1 to show the answers of a open question"
, ""
, " * Use CTRL+Left and CTRL+Right to move to previous and next cards without having to answer them"]