1. 16 Dec, 2015 1 commit
    • Jacek Sowiński's avatar
      Create placeholder for args in aliases · 56967191
      Jacek Sowiński authored
      With this change there is now possible to forward args supplied on CLI
      to desired placed in real command.
      
      Example config:
      
      [aliases]
      star = tag {} star 1
      unstar = tag {} star
      
      Example usage:
      
      `topydo star foo` will resolve to: `topydo tag foo star 1`
      `topydo unstar foo` will resolve to: `topydo tag foo star`
      56967191
  2. 05 Dec, 2015 1 commit
  3. 04 Dec, 2015 3 commits
  4. 03 Dec, 2015 5 commits
  5. 01 Dec, 2015 1 commit
  6. 30 Nov, 2015 2 commits
    • Bram Schoenmakers's avatar
      Fix transitive reduction for parent items with multiple children · 20935465
      Bram Schoenmakers authored
      Given these dependencies:
      
      A id:1
      B p:1
      C p:1 id:2
      D p:1 p:2
      
      A -> B
      A -> C
      A -> D
      C -> D
      
      The relation A -> D is superfluous (A -> C, C -> D). However, the p:1
      tag in D would not be removed, because relation 1 still exists (A -> B).
      
      Therefore a new function is added that identifies p: tags which have no
      corresponding edge in the internal dependency graph (rather than looking
      at the value of the edge).
      20935465
    • Bram Schoenmakers's avatar
      Rename variable · 3237d802
      Bram Schoenmakers authored
      3237d802
  7. 29 Nov, 2015 3 commits
  8. 26 Nov, 2015 4 commits
  9. 23 Nov, 2015 3 commits
  10. 20 Nov, 2015 1 commit
  11. 19 Nov, 2015 2 commits
  12. 18 Nov, 2015 1 commit
  13. 17 Nov, 2015 3 commits
  14. 16 Nov, 2015 10 commits