Skip to content
This repository was archived by the owner on Jul 25, 2023. It is now read-only.

v1.0.0-rc.1

Latest
Compare
Choose a tag to compare
@xNaCly xNaCly released this 19 Oct 13:34

This release breaks compatibility with v0.2.0-alpha and v0.1.0-alpha.

Breaking Changes:

  • the notation for adding a priority has changed from:
    opus add "title ,,,"
    to:
    opus add "title .5"
  • reworked opus export interface:
    • before

      # exports all tasks in the data.json file
      opus export json data
      # export all tasks in the mycsvfile.csv file
      opus export csv mycsvfile
      # data.tsv
      opus export tsv data
    • after

       # exports all tasks in the data.json file
      opus export --format="json" --output="data.json"
      # export all tasks in the data.csv file
      opus export --format="csv" --output="data.csv"
      # export all tasks in the data.tsv file
      opus export --format="tsv" --output="data.csv"

New Features:

  • help page for all subcommands and toplevel:
    Manage tasks with ease
    
    Usage: opus <COMMAND>
    
    Commands:
      add     create a new task [aliases: a]
      delete  delete a task with the given id [aliases: del, d]
      clear   remove all tasks from the database
      finish  mark the task with the given id as finished [aliases: fin, f]
      list    list tasks matching the given query [aliases: ls, l]
      export  export all tasks
      help    Print this message or the help of the given subcommand(s)
    
    Options:
      -h, --help     Print help information
      -V, --version  Print version information
    
  • list tasks marked as finished using opus list --finished
  • sort the opus list output using --sort-by and --sort-order, read more here
  • improved displaying tasks:
    • finished tasks are now marked with FINISHED
    • priority changed for [,,,] to .3
    • before:
      [2]: 'update excel sheet' (2022-10-13) #work [,,,]
      
    • after:
      [2]: 'update excel sheet' (2022-10-13) #work .3 FINISHED
      

Pull Requests

New Contributors

Full Changelog: v0.2.0-alpha...v1.0.0-rc.1