Skip to content

Releases: wtfutil/todoist

The stop fucking it up release

16 Dec 00:43
Compare
Choose a tag to compare
More mucking about with IDs

Signed-off-by: Chris Cummer <[email protected]>

uint IDs

15 Dec 18:49
a9f4ff5
Compare
Choose a tag to compare
Merge pull request #3 from wtfutil/WTF-781-todoist-id-2

WTF-781 Switch IDs from int to uint

String IDs

15 Dec 18:38
6f34122
Compare
Choose a tag to compare
Merge pull request #2 from wtfutil/WTF-781-todoist-id

WTF-781 Use string for project ID instead of int

First

15 Oct 20:33
Compare
Choose a tag to compare
Fix json unmarshal from json api to Task struct

The json from the api returns a date format like "2019-10-07T14:00:00Z"
and this makes the code to panic. This is because the CustomDate is
expecting a timestamp with the format "2006-01-02T15:04:05+00:00".

https://github.com/wtfutil/wtf/issues/645