Version 1.2.0
Bug Fixes
- The
today
meta-command will now display overdue tasks.
Changes
-
Update README documentation to include the
status
configuration 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
planner
command now takes thestart
argument 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
filters
configuration property has changed toaliases
to better represent the use of this configuration option - to map new command names as aliases to existing commands. With this change, thefilter
property has been changed toargs
and 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
}
]
}