Releases: perryrh0dan/taskline
Releases · perryrh0dan/taskline
Release list
Release 1.2.0
Highlights
- Added possibility to use humanized dates (big thanks to Aditya Sriram for contributing this feature). Complete list of all commands can be found in the readme.
tl t "humanized" -d tomorrow
tl t "thats cool" -d "next monday"- Added localization feature. Default language is english. This can be changed in the configuration file under
language. - Decreased app size from 55mb to 25mb.
Release 1.1.3
Highlights
- Added seperat color for errors
- Small bug fixes
Release 1.1.2
Fixes
- Fixed date parse bug for december.
Release 1.1.1
Highlights
- Canceled task texts have the same color as completed task texts.
- Added 'config' command to display active configuration.
Release 1.1.0
Highlights
- Colors can now be customized in
.taskline.json. Possible are all foreground colors of chalk, rgb and hex colors.
"theme": {
"colors": {
"pale": "grey",
"task": {
"priority": {
"medium": "yellow",
"high": "red"
}
},
"icons": {
"note": "blue",
"success": "green",
"star": "yellow",
"progress": "blue",
"pending": "magenta",
"canceled": "red"
}
}
}Release 1.0.6
Highlights
- Add new
refactorcommand to refactor the IDs of items
Before (Simplified):
Items: [{
id: 34
description: "Test 1"
},{
id: 107
description: "Test 2"
},{
id: 114
description: "Test 2"
}]
After (Simplified):
Items: [{
id: 1
description: "Test 1"
},{
id: 2
description: "Test 2"
},{
id: 3
description: "Test 2"
}]
- Items in boards are now sorted by ID
Release 1.0.5
Fixes
- Fixed issue that lead to problems during deletion and recovery of items.
Release 1.0.3
Fixes
- Fixed bug that
clearcommand deleted pending tasks
Release 1.0.2
Highlights
- Complete rebuild in typescript
- Possibility to cancel tasks
- Possibility to use id ranges
It is possible to mix the old list functionality with the new id ranges like you need it. Following are some examples how you can combine them.
tl c 1,2,3,4,5 === tl c 1-5 === tl c 1-3,4,5 === tl c 1-2,3,4-5
- Heavy improved Duedate functionality
- Display duedate with nice humanized text
- Possibility to maintain time
- Armhf support
- Snap optimization
Fixes
- Fixed the issue that a task could be created with a priority higher than 3. That lead to an error message when displaying the board.
Release 0.6.3
Highlights
- Display more information after wrong cli command.
- Removed the update notifier in the snapcraft version.
- Set update notifier to global.