| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #83 from stuartskelton/Move_code_to_the_right_place0.7 | Grant Ammons | 2017-08-05 | 2 | -13/+29 |
| |\ | | | | | Move code to the right place | ||||
| | * | Group similar code together. | Stuart Skelton | 2017-08-04 | 1 | -8/+9 |
| | | | |||||
| | * | Empower the todo_item to set its attributes correctly itself. | Stuart Skelton | 2017-08-04 | 2 | -5/+20 |
| |/ | |||||
| * | Merge pull request #82 from stuartskelton/Add_list_completed | Grant Ammons | 2017-08-02 | 6 | -14/+133 |
| |\ | | | | | Add list completed | ||||
| | * | Remove some less useful comments. | Stuart Skelton | 2017-08-02 | 1 | -2/+0 |
| | | | |||||
| | * | Do not filter out archived when asked for completed | Stuart Skelton | 2017-08-02 | 2 | -0/+20 |
| | | | |||||
| | * | Updated the command line docs | Stuart Skelton | 2017-08-01 | 1 | -0/+8 |
| | | | |||||
| | * | Added a filter for completed date | Stuart Skelton | 2017-08-01 | 3 | -4/+93 |
| | | | |||||
| | * | Make the exact date take a filterOn parameter | Stuart Skelton | 2017-08-01 | 2 | -10/+14 |
| |/ | |||||
| * | Merge pull request #78 from stuartskelton/move_code_closer | Quey-Liang Kao | 2017-07-28 | 1 | -5/+5 |
| |\ | | | | | Move filterTomorrow closer to filterToday. | ||||
| | * | Move filterTomorrow closer to filterToday. | Stuart Skelton | 2017-07-25 | 1 | -5/+5 |
| |/ | |||||
| * | Merge pull request #76 from stuartskelton/remove_some_redundancy_in_date_filter | Grant Ammons | 2017-07-25 | 1 | -21/+22 |
| |\ | | | | | Remove some redundancy in date filter | ||||
| | * | Added filtering between dates, in an inclusive and exclusive mode. | Stuart Skelton | 2017-07-20 | 1 | -16/+18 |
| | | | | | | | | | | | Inclusive allows for the due date to be equal to the begin date, exclusive is between the dates. | ||||
| | * | Added filterToExactDate. | Stuart Skelton | 2017-07-20 | 1 | -8/+7 |
| |/ | | | | Filters the todolist to a certain date. | ||||
| * | Merge pull request #73 from NonerKao/master | Grant Ammons | 2017-07-11 | 2 | -1/+20 |
| |\ | | | | | Fix #65, filtering out completed todos in agenda mode | ||||
| | * | Improve logic and add a test | Quey-Liang Kao | 2017-07-07 | 2 | -4/+20 |
| | | | |||||
| | * | Fix #65, filtering out completed todos in agenda mode | Quey-Liang Kao | 2017-07-07 | 1 | -0/+3 |
| |/ | |||||
| * | Merge pull request #68 from gammons/code-cleanup | Grant Ammons | 2017-06-19 | 7 | -46/+126 |
| |\ | | | | | Fix parsing a todo with europe date format | ||||
| | * | Put the return after the os.Exit | Grant Ammons | 2017-06-12 | 1 | -0/+2 |
| | | | |||||
| | * | Fix #64, parsing a todo with europe date format | Grant Ammons | 2017-06-12 | 7 | -19/+98 |
| | | | | | | | | | | | * the `hasDue` function was not running, and therefore it was not parsing the due date. * Also added the beginnings of a more holistic test approach, using `app_test.go`. | ||||
| | * | Remove return statements to silence linter warning | Grant Ammons | 2017-06-12 | 1 | -2/+0 |
| | | | |||||
| | * | Re-order functions in file_store | Grant Ammons | 2017-06-12 | 1 | -26/+27 |
| |/ | |||||
| * | Make it a link | Grant Ammons | 2017-06-06 | 1 | -1/+1 |
| | | |||||
| * | Add link to todolist_frontend | Grant Ammons | 2017-06-06 | 1 | -0/+4 |
| | | |||||
| * | bump version0.6 | Grant Ammons | 2017-05-25 | 3 | -3/+3 |
| | | |||||
| * | Merge pull request #62 from gammons/unified-edit | Grant Ammons | 2017-05-25 | 4 | -8/+103 |
| |\ | | | | | Unified edit | ||||
| | * | fix typo | Grant Ammons | 2017-05-10 | 1 | -1/+1 |
| | | | |||||
| | * | Remove unnecessary parens | Grant Ammons | 2017-05-10 | 1 | -1/+1 |
| | | | |||||
| | * | Formatting for test | Grant Ammons | 2017-05-10 | 1 | -7/+7 |
| | | | |||||
| | * | Formatting | Grant Ammons | 2017-05-10 | 1 | -1/+1 |
| | | | |||||
| | * | Minor optimization | Grant Ammons | 2017-05-09 | 1 | -2/+2 |
| | | | |||||
| | * | Update the tests | Grant Ammons | 2017-05-09 | 1 | -25/+54 |
| | | | | | | | | | | | | | * Test editing a todo with just a due date does not affect subject * Test editing a todo with just subject does not affect due date * Editing a subject should also update projects and contexts | ||||
| | * | Trim space of the subject | Grant Ammons | 2017-05-09 | 1 | -2/+2 |
| | | | |||||
| | * | WIP on a unified edit | Grant Ammons | 2017-05-09 | 3 | -54/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows a unified edit functionality that supports the following: **`t e 25 due tom`** * Edits the due date * Leaves subject, projects and contexts unchanged **`t e 25 take out the trash with @bob` * Updates the subject, projects and contexts * Leaves the due date unchanged **`t e 25 take out the trash with @bob due tom` * Updates the subject, projects and contexts * Updates the due date **What's missing** * Tests that exercise this functionality | ||||
| | * | parse Projects and Contexts when editing subject | Michael Strüder | 2017-05-09 | 1 | -1/+5 |
| | | | |||||
| | * | do not duplicate error messages again | Michael Strüder | 2017-05-09 | 1 | -1/+0 |
| | | | |||||
| | * | error out when invalid id given | Michael Strüder | 2017-05-09 | 1 | -0/+4 |
| | | | |||||
| | * | subcommands like delete don't take a subject, so make it optional | Michael Strüder | 2017-05-09 | 2 | -6/+22 |
| | | | |||||
| | * | prevent duplicate error messages when updating subjects | Michael Strüder | 2017-05-09 | 1 | -1/+4 |
| | | | |||||
| | * | test multiple whitespace | Michael Strüder | 2017-05-09 | 1 | -1/+11 |
| | | | |||||
| | * | allow any whitespace between subcommand, id and input | Michael Strüder | 2017-05-09 | 1 | -7/+9 |
| | | | |||||
| | * | add test for func (p Parser) Parse() | Michael Strüder | 2017-05-09 | 1 | -0/+21 |
| | | | |||||
| | * | add command line interface for edit-subject | Michael Strüder | 2017-05-09 | 1 | -1/+3 |
| | | | |||||
| | * | display an error on malformed input | Michael Strüder | 2017-05-09 | 2 | -1/+17 |
| | | | |||||
| | * | extract subcommand, id, and input string in Parser | Michael Strüder | 2017-05-09 | 2 | -13/+21 |
| |/ | |||||
| * | Merge pull request #57 from mikezter/golang-alpine | Grant Ammons | 2017-05-03 | 1 | -14/+5 |
| |\ | | | | | Golang alpine | ||||
| | * | remove maintainer and last-modified lines from Dockerfile | Michael Strüder | 2017-05-03 | 1 | -2/+0 |
| | | | | | | | | | | | | | All contributers to this Dockerfile will be attributed through git. Since it is a simple Dockerfile, a dedicated maintainer is not necessary. Last-Modified timestamp is also availlable through git. | ||||
| | * | symlink todo-list file to $HOME | Michael Strüder | 2017-04-29 | 1 | -0/+2 |
| | | | |||||
| | * | base Dockerfile on official golang:alpine image | Michael Strüder | 2017-04-29 | 1 | -13/+4 |
| | | | | | | | | | This frees us from having to deal with build issues like #56. | ||||
| * | | Move docker setup to the wiki | Grant Ammons | 2017-05-03 | 1 | -24/+1 |
| |/ | |||||
