- 17 Nov, 2016 3 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
- 16 Nov, 2016 3 commits
-
-
-
Bram Schoenmakers authored
On Travis CI, the pypy3 tests may fail due to concurrency issues, probably because of the usage of (shared) temporary files. So, limit the number of processes used by green to 1 when pypy3 is used. This implies that failures for pypy3 are no longer allowed.
-
Bram Schoenmakers authored
-
- 09 Nov, 2016 1 commit
-
-
Bram Schoenmakers authored
Too many (random) failures.
-
- 08 Nov, 2016 2 commits
-
-
Bram Schoenmakers authored
Support user-specified column-layout file
-
Jacek Sowiński authored
User can now use '-l' option with an argument *after* 'columns' command and topydo will try to load column layout from that location. If it won't find specified file it will use standard column-layout file locations as a fallback. Example of use: Will work: `topydo columns -l ~/fooBar_columns` Won't work: `topydo -l ~/fooBar_columns columns` Implements #147
-
- 25 Oct, 2016 1 commit
-
-
Bram Schoenmakers authored
That way the filetype detection of the todo.txt vim plugin is triggered and shows the appropriate syntax highlighting. https://github.com/freitass/todo.txt-vim
-
- 24 Oct, 2016 1 commit
-
-
Bram Schoenmakers authored
Fix importance being wrong when due date is a distant monday.
-
- 23 Oct, 2016 1 commit
-
-
William (B.J.) Snow Orvis authored
-
- 10 Oct, 2016 1 commit
-
-
Bram Schoenmakers authored
Close temporary file after saving to it
-
- 07 Oct, 2016 1 commit
-
-
Jacek Sowiński authored
This can solve the problems with file handle being occupied by python while editor is trying to save user changes from `topydo edit` on some operating systems. Potential fix for #141
-
- 30 Aug, 2016 1 commit
-
-
Bram Schoenmakers authored
Add HiddenTagFilter
-
- 29 Aug, 2016 1 commit
-
-
MinchinWeb authored
-
- 22 Aug, 2016 1 commit
-
-
Bram Schoenmakers authored
Properly unmark items when resetting state
-
- 20 Aug, 2016 1 commit
-
-
Jacek Sowiński authored
After introducing cache for TodoWidget objects, widgets highlighted with 'mark' action were not unmarked after 'reset' action and they reappeared highlighted ("marked") after reverting `do` or `delete` commands.
-
- 01 Aug, 2016 1 commit
-
-
Bram Schoenmakers authored
This serves two purposes: * Relative dates and progress colors are shown correctly on the next day * Stale cached items get wiped at least once a day (for those who continiously run this mode)
-
- 27 Jul, 2016 3 commits
-
-
Bram Schoenmakers authored
When editing one or more todo items, some items may not have changed, therefore having the exact same source text. The EditCommand still deletes the Todo instance and creates a new one and puts it in the todo list. But the widget cache only looked at the source text, found a widget from before the edit and will use it. But the widget still has a reference to the old Todo instance. When executing an action on it (e.g. mark it as complete), the TodoList doesn't remember that todo item, which results in a crash. Fixed by updating the reference to the latest Todo instance when the sources are equal but the instances are not.
-
-
Bram Schoenmakers authored
Having hundreds of todo items slows down the column UI quite a lot when doing an update. An update basically throws away all widgets and creates them from scratch. That is quite a waste when only one item has changed. Instead, keep all widgets in a cache, retrievable by the todo's raw text. When the raw text changes, a new widget is constructed.
-
- 26 Jul, 2016 1 commit
-
-
Bram Schoenmakers authored
-
- 25 Jul, 2016 2 commits
-
-
MinchinWeb authored
-
MinchinWeb authored
Use the `h:1` tag to hide items from being listed
-
- 23 Jul, 2016 1 commit
-
-
Bram Schoenmakers authored
When topydo is run with colors, items without priority get an invalid markup added. Only add markup when an item has actually a priority. Bug found and fixed by @mruwek
-
- 22 Jul, 2016 6 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Fix saving backups when archiving is turned off
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
The parent color is only used when the todo item has not enough information to determine its own progress.
-
Jacek Sowiński authored
Use empty list if user left `archive_file` option empty. This fixes #132
-
- 08 Jul, 2016 1 commit
-
-
Bram Schoenmakers authored
-
- 03 Jun, 2016 3 commits
-
-
Bram Schoenmakers authored
Allow `--version` as an alias for `-v`
-
Bram Schoenmakers authored
Provides a smart way to determine the number 'top' lines
-
MinchinWeb authored
-
- 02 Jun, 2016 2 commits
-
-
MinchinWeb authored
Add a long version option
-
Bram Schoenmakers authored
Formula for color brightness obtained from https://www.w3.org/TR/AERT#color-contrast
-
- 01 Jun, 2016 2 commits
-
-
Bram Schoenmakers authored
Revived the dot subcommand and the dot printer for 'ls'.
-
Bram Schoenmakers authored
-