1. 30 Sep, 2015 1 commit
    • Jacek Sowiński's avatar
      Much more powerful filtering of priorities · 2c5b7175
      Jacek Sowiński authored
      Now it is possible to do things like:
      
      `ls (>C)`  # gives items with A-B priorities
      `ls (<=D)` # gives items with D-Z priorities
      `ls (!E)`  # gives all items except those with E priority (also possible
                 # with `ls -- -(E)`
      
      and maybe most importantly:
      `ls (<Z)` # gives items without priority
      
      PS Don't forget about escaping parentheses when calling from CLI
      2c5b7175
  2. 29 Sep, 2015 1 commit
  3. 20 Aug, 2015 3 commits
  4. 18 Aug, 2015 2 commits
  5. 12 Aug, 2015 1 commit
  6. 10 Aug, 2015 7 commits
  7. 01 Aug, 2015 3 commits
  8. 31 Jul, 2015 3 commits
  9. 14 Jul, 2015 2 commits
  10. 22 Jun, 2015 1 commit
  11. 20 Jun, 2015 5 commits
  12. 18 Jun, 2015 2 commits
  13. 13 Jun, 2015 1 commit
  14. 12 Jun, 2015 4 commits
  15. 11 Jun, 2015 3 commits
  16. 10 Jun, 2015 1 commit
    • Bram Schoenmakers's avatar
      Fix for relative dates not always being calculated properly. · 14c47b24
      Bram Schoenmakers authored
      Fell into the trap of calling a function as a default parameter. Because
      of this, relative dates used with the 'add' or 'do' command (recurrence)
      were based on an offset when topydo was started, not when the subcommand
      was executed. Usually these two events occur in the same second and this
      bug was unnoticed for a long time. But now with prompt mode, this bug
      may surface if you leave running topydo for longer than a day.
      14c47b24