aboutsummaryrefslogtreecommitdiffstats
path: root/todolist
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Add more helpful messagesQuey-Liang Kao2017-01-211-7/+4
| | | |
* | | | Makes all output messages consistentQuey-Liang Kao2017-01-192-4/+14
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the panic() function provides overwhelming messages available for developers but meaningless to users, the way to deal with error output is simplified. There are two panic()'s that are fixed: * The one in parseArbitraryDateWithYear() function. This function is the possible endpoint of adding a todo or editing dues. Instead of calling panic(), now it outputs the specific parsing error, and then terminate itself by os.Exit(). * The one in formatDue() function This function is responsible for parsing the due information of a given todo. If the todos being added previously have passed the checking, then there is no reason that a due fails the format check here, except for the corruption of the todo file.
* | | Merge pull request #18 from NonerKao/masterGrant Ammons2017-01-182-2/+10
|\ \ \ | | | | | | | | Bugfix: "todo a" no longer adds an empty todo
| * | | Provide a more helpful messageQuey-Liang Kao2017-01-171-1/+1
| |/ /
| * | Merge github.com:NonerKao/todolistQuey-Liang Kao2017-01-172-2/+10
| |\|
| | * Bugfix: "todo a" no longer adds an empty todoQuey-Liang Kao2017-01-162-2/+10
| | |
* | | Run gofmt on formatter and parserHuu Nguyen2017-01-162-3/+3
|/ /
* / Fix tests by removing hard-coded yearGrant Ammons2017-01-161-4/+8
|/
* Fixed build failedBunchhieng2016-09-154-14/+26
|
* Refactored codeBunchhieng2016-09-152-4/+11
|
* bugfix - use 'tod' as shorthand for todayGrant Ammons2016-09-082-1/+9
|
* Bump version0.3.1Grant Ammons2016-09-071-1/+1
|
* Allow 404s to redirect to index fileGrant Ammons2016-08-271-27/+46
|
* Add the css file0.2.0Grant Ammons2016-07-031-7/+2
|
* Add webappGrant Ammons2016-06-201-2/+35
|
* Add the webappGrant Ammons2016-06-121-0/+66
|
* Promote save/load to be publicGrant Ammons2016-06-121-21/+22
|
* Refactor todolist stuff out of the file store implementationGrant Ammons2016-06-128-216/+238
|
* Promote FindSunday so we can use it in tests, fix testsvsnapshotGrant Ammons2016-05-172-6/+10
|
* Remove large amounts of whitespace at beginning, to save spaceGrant Ammons2016-05-171-2/+2
|
* Use the user's current timezone when parsing datesGrant Ammons2016-05-152-11/+12
| | | | | This should remove ambiguity when comparing dates that are close or equal to each other, e.g. Sundays.
* Ensure agenda works with other inputGrant Ammons2016-05-121-4/+3
|
* Make agenda its own commandGrant Ammons2016-05-122-3/+6
|
* Fix issue with parsing specific datesGrant Ammons2016-05-122-2/+12
|
* Ensure we don't destroy an existing .todos.jsonGrant Ammons2016-05-081-0/+5
|
* Look for .todos.json in the directory we are inGrant Ammons2016-05-082-8/+23
| | | | This allows for project-specific todos.
* Parse out arbitrary datesGrant Ammons2016-05-062-20/+68
| | | | | | | | | | | | | | This will parse out dates in the format of "mon dd", the month being a 3 letter month, and the date being just the day. due mar 10 due sep 25 due oct 2 it will also "intelligently" guess the year, based upon which is the shorter duration from time.Now(). for instance, if today's date is dec 25 and you schedule an event for jan 2, it will schedule it for the following year.
* Strip out a or addGrant Ammons2016-05-051-0/+2
|
* Handle case where todos.json cant be loadedGrant Ammons2016-05-052-2/+11
|
* Fix formatting error when no due dateGrant Ammons2016-05-041-4/+4
|
* Allow editing due dates and setting it to noneGrant Ammons2016-05-041-0/+2
|
* alpha-sort groupsGrant Ammons2016-05-041-3/+9
|
* Add edit command for due datesGrant Ammons2016-05-041-0/+14
|
* Add output msg when archiving all completedGrant Ammons2016-05-031-0/+1
|
* Make everything a pointer, add archive completed fnGrant Ammons2016-05-0310-67/+76
|
* Add agenda functionGrant Ammons2016-05-031-0/+14
|
* Add date filteringGrant Ammons2016-05-033-8/+250
|
* Get filtering by projects, contexts workingGrant Ammons2016-05-024-18/+91
|
* Create filter, by archived or unarchivedGrant Ammons2016-05-023-6/+98
|
* Add archive/unarchiveGrant Ammons2016-05-024-0/+56
|
* Uncomplete todoGrant Ammons2016-05-025-1/+29
|
* Get completing todos to work correctlyGrant Ammons2016-05-025-3/+32
|
* Sort todos by due date by defaultGrant Ammons2016-05-013-8/+32
|
* Implement delete logicGrant Ammons2016-05-014-2/+74
|
* Handle parsing dates, and printing themGrant Ammons2016-04-304-43/+166
|
* Rename method to describe it betterGrant Ammons2016-04-262-2/+2
|
* Get adding a todo workingGrant Ammons2016-04-266-14/+62
|
* Get grouping working correctlyGrant Ammons2016-04-255-12/+135
|
* Bring in the app and routerGrant Ammons2016-04-244-5/+92
|
* Organize things a bit betterGrant Ammons2016-04-248-0/+275