Skip to content

Commit

Permalink
chore(main): release 0.7.0 (#34)
Browse files Browse the repository at this point in the history
# [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
github-actions[bot] authored Dec 21, 2024
1 parent 573aef0 commit d0b5efa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.7.0](https://github.com/louis-thevenet/vault-tasks/compare/v0.6.1...v0.7.0) (2024-12-21)


### Features

* add actions to mark tasks Done, ToDo, Incomplete and Canceled ([f07a13b](https://github.com/louis-thevenet/vault-tasks/commit/f07a13b9084f48f8520a1b81575b3f3976396c82))
* add Incomplete and Canceled states ([d98b378](https://github.com/louis-thevenet/vault-tasks/commit/d98b3784bf33149dea5357132787308b4175dfa4))
* **config:** add config options for task state markers ([ed9334f](https://github.com/louis-thevenet/vault-tasks/commit/ed9334fb2fa5bd498d4c4672b3c18d469fb6a16f))
* **config:** add config options for tui symbols (e.g. use ASCII sequences instead of emojis) ([734ae1a](https://github.com/louis-thevenet/vault-tasks/commit/734ae1a1298a07ce8f222ce4b26cda9ef1f9bbb2))

## [0.6.1](https://github.com/louis-thevenet/vault-tasks/compare/v0.6.0...v0.6.1) (2024-12-08)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ description = "TUI Markdown Task Manager"
build = "build.rs"
categories = ["command-line-utilities", "visualization"]
keywords = ["markdown", "task-manager", "productivity", "tui", "obsidian"]
version = "0.6.1"
version = "0.7.0"
edition = "2021"
repository = "https://github.com/louis-thevenet/vault-tasks"
authors = ["Louis Thevenet <louis.tvnt@gmail.com>"]
Expand Down

0 comments on commit d0b5efa

Please sign in to comment.