Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [0.7.0](v0.6.1...v0.7.0) (2024-12-21) # Breaking change in config file - `task_state_marker` has been replaced by `task_state_markers.done` - `ToggleStatus` action has been split into `MarkToDo`, and `MarkDone` # Features - add Incomplete and Canceled states ([d98b378](d98b378)) - add actions to mark tasks Done, ToDo, Incomplete and Canceled ([f07a13b](f07a13b)) New actions in config file: `MarkToDo`, `MarkDone`, `MarkCancel` and `MarkIncomplete` - **config:** add config options for task state markers ([ed9334f](ed9334f)) Configuration example: ``` task_state_markers.todo = ' ' task_state_markers.done = 'x' task_state_markers.incomplete = '/' task_state_markers.canceled = '-' ``` - **config:** add config options for tui symbols (e.g. use ASCII sequences instead of emojis) ([734ae1a](734ae1a)) Configuration example: ``` pretty_symbols.task_done="✅" pretty_symbols.task_todo="❌" pretty_symbols.task_incomplete="⏳" pretty_symbols.task_canceled="🚫" pretty_symbols.due_date="📅" pretty_symbols.priority="❗" pretty_symbols.today_tag="☀️" ```
- Loading branch information