Version 1.2.0
Bug Fixes
- The
todaymeta-command will now display overdue tasks.
Changes
-
Update README documentation to include the
statusconfiguration property -
Add information about alias commands to the README documentation
Breaking Changes
This update includes a couple of breaking changes from the previous version:
-
The
plannercommand now takes thestartargument as an option. Previously, to start the planner on a Monday, the command was:planner mon [some filter text]. Now the start of the planner is passed as an option:planner --start mon [some filter text]. This was done to more reliably process filter strings. -
The
filtersconfiguration property has changed toaliasesto better represent the use of this configuration option - to map new command names as aliases to existing commands. With this change, thefilterproperty has been changed toargsand can now include options as part of the property value. The current configuration of an alias is as follows:
{
"aliases": [
{
"name": "", \\ New Command Name
"description": "", \\ Command Description
"command": "", \\ Existing Command to Use
"args": "" \\ Command Options and Arguments
}
]
}