Skip to content

Version 1.2.0

Compare
Choose a tag to compare
@dwaring87 dwaring87 released this 13 Dec 21:25
· 67 commits to master since this release

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 the start 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 to aliases to better represent the use of this configuration option - to map new command names as aliases to existing commands. With this change, the filter property has been changed to args 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
    }
  ]
}