- 15 Apr, 2016 2 commits
-
-
Bram Schoenmakers authored
PrettyPrinter no longer outputs a string, but a TopydoString in case of a single todo item, or a list of TopydoStrings that may contain color information. Those who read the PrettyPrinter output should convert it to a string that can be displayed.
-
Bram Schoenmakers authored
TopydoString is a string descendent that maintains information where colors should be applied in a string. A user interface can pass a function that transforms a color to a color representation that is relevant there. That way, the topydo library does not make any assumptions anymore on where colors should be applied.
-
- 11 Apr, 2016 2 commits
-
-
Bram Schoenmakers authored
Use special color-palette entry for 'marked' items
-
Jacek Sowiński authored
This improves readability. Marked items look now differently from the focused one.
-
- 10 Apr, 2016 1 commit
-
-
Bram Schoenmakers authored
Use all configurable colors in TodoWidget
-
- 10 Mar, 2016 2 commits
-
-
Bram Schoenmakers authored
Use business days recurrence in column ui
-
Jacek Sowiński authored
-
- 03 Mar, 2016 1 commit
-
-
Jacek Sowiński authored
Previously only priority color was rendered. Now all contexts, projects, links and metadata should show theirs colors.
-
- 01 Mar, 2016 1 commit
-
-
Bram Schoenmakers authored
Execute commands on multiple items + repeat command
-
- 27 Feb, 2016 5 commits
-
-
Jacek Sowiński authored
This required to slightly change UIApplication._execute_handler so it accepts now also a todo id as an argument.
-
Jacek Sowiński authored
Introduce proper TodoWidget.mark and TodoWidget.unmark public methods so we don't have to expose _markup.
-
Jacek Sowiński authored
Use rahter 'mark' and 'marked' instead of 'pending' here and try to use verb-based function names wherever possible. Also some minor code-style changes suggested by @bram85.
-
Jacek Sowiński authored
Repeats last topydo command called from within `TodoListWidget.keypress` (won't repeat commands called from cli). Default mapping: '.'
-
Jacek Sowiński authored
It does 2 things: 1. Clears marked statuses for todo items 2. Resets keystates in all columns
-
- 26 Feb, 2016 1 commit
-
-
Bram Schoenmakers authored
Conflicts: README.md test/test_list_format.py topydo/cli/CLIApplicationBase.py topydo/lib/Config.py topydo/lib/Utils.py
-
- 23 Feb, 2016 1 commit
-
-
Bram Schoenmakers authored
Don't crash on shlex.split error
-
- 22 Feb, 2016 1 commit
-
-
Jacek Sowiński authored
1. 'm' can be reconfigured to any other key (action: 'mark'). 2. Using 'mark' on already marked todo item will unmark it. 3. 'esc' key will clear whole selection. 4. Command will be executed on **all** marked items in **all** columns.
-
- 21 Feb, 2016 3 commits
-
-
Jacek Sowiński authored
Show some meaningful error messages instead. Fixes #107
-
Jacek Sowiński authored
-
Bram Schoenmakers authored
Add recurrence and postponing by business days
-
- 20 Feb, 2016 2 commits
-
-
Jacek Sowiński authored
-
Jacek Sowiński authored
Inspired and also supported by simpletask[1]. `rec:1b` will recur after 1 business day and `rec:5b` after one full business week. Negative values are supported. This feature doesn't of course take holidays into account. [1]: https://github.com/mpcjanssen/simpletask-android/blob/master/src/main/assets/index.en.md
-
- 15 Feb, 2016 2 commits
-
-
Bram Schoenmakers authored
However, this still doesn't work because the configuration is overridden due to the color=0 hack. Flags like -t and -d will work as soon as the color setting override is gone. Thanks to @mruwek for the reminder.
-
Bram Schoenmakers authored
-
- 12 Feb, 2016 7 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
-
Bram Schoenmakers authored
Also removed some unreachable branches from the code.
-
Bram Schoenmakers authored
The color functions now return a neutral/default color when empty/garbage colors are entered in the configuration file. This addresses issues #69 and #70.
-
Bram Schoenmakers authored
The -C flag takes 0, 1, 16, 256, auto, yes, true, no, false as possible values. If auto, then colors are enabled unless the output is not connected to a TTY and is likely not to understand ANSI escape codes. 'auto' is the default value. The config().colors() function either returns 0, 16 or 256 for the possible colors that can be displayed. These values are also recognized by the colors option in the configuration file. This fixes issue #111.
-
Bram Schoenmakers authored
This color class abstracts away all the possible representations of a color in various UIs. These are color objects: Color(9) # red Color('red') # red Color(196) # red Color('NEUTRAL') # neutral (resets attributes) Color() # no effect The configuration stores Color objects now, code that requires colors doesn't have to worry about integer representations of colors. One semantic change: when an empty color is passed as a priority color, it will resort to an empty color instead of the neutral color. In practice this should have the same visual effect. Test case test_priority_color4 is adapted for this. This commit is the result after an initial refactoring of the color code (squashed its history into this one). @mruwek also contributed to this refactoring, thanks for the help and the ideas to get to this point.
-
- 11 Feb, 2016 4 commits
-
-
Bram Schoenmakers authored
Allow iteration of TodoList items.
-
MinchinWeb authored
-
Bram Schoenmakers authored
Thanks @mruwek for mentioning.
-
Bram Schoenmakers authored
Introduce keymap for column_mode
-
- 10 Feb, 2016 5 commits
-
-
Jacek Sowiński authored
It's purpose is to show entered keystrokes during entering key-combos. It's positioned at the bottom-right corner (similarly as in vim). Many thanks to @bram85 for the idea. Also fixed one nasty bug resulting in getting stuck in keystate. It occured only when keystate had also corresponding pending action and user typed something other than expected by the keypress(). Now any non-sensical input will result in resetting keystate.
-
Bram Schoenmakers authored
-
Jacek Sowiński authored
-
Jacek Sowiński authored
This way user can type offsets and priorities at ease without rush.
-
Jacek Sowiński authored
From now on user have the choice whether he/she wants the command linked to key output anything or not. Commands prefixed with 'cmdv' will output to terminal, while those prefixed with 'cmd' will remain silent. Example: ======== ```ini [column_keymap] x = cmd do {} ls = cmdv ls ga = cmdv ls -i {} Credits to @bram85 for the idea.
-