-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
149 additions
and
22 deletions.
There are no files selected for viewing
Binary file not shown.
Submodule six
updated
from 06daa9 to 7c0b7f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import wunderlist.api.base as api | ||
|
||
|
||
def create_note(task_id, content): | ||
params = { | ||
'task_id': int(task_id), | ||
'content': content | ||
} | ||
|
||
req = api.post('notes', params) | ||
info = req.json() | ||
|
||
return info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
New in version <%= pkg.version %>: | ||
* #147 - Fixes 100% CPU usage background task on macOS 10.12.4 | ||
* Pull Request #150 - Task note, courtesy of @bogdal | ||
|
||
More details: | ||
https://github.com/idpaterson/alfred-wunderlist-workflow/releases/tag/<%= pkg.version %> | ||
|
||
|
||
The 0.6 series includes the following major changes: | ||
* Added upcoming and due screens | ||
* Search and browse tasks | ||
* New command format allowing partial commands like wls instead of wl-search | ||
* Complete, delete, and view tasks in Wunderlist desktop app | ||
The 0.7 series includes the following major changes: | ||
* Add a note while creating a task with, e.g. task title // note text (thanks, @bogdal) | ||
|
||
More details: | ||
https://github.com/idpaterson/alfred-wunderlist-workflow/releases/tag/0.6.0 | ||
https://github.com/idpaterson/alfred-wunderlist-workflow/releases/tag/0.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters