summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--inbox_for_todoist.widget/todoistinbox.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index f149312..4335cd6 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,6 @@ The default color for the widget is `rgba(#F2F2F2, 1.0)`.
(checked items are under developpement)
- [ ] Due Date Sorting
- [ ] Todoist Markdown Support
-- [ ] Keep a record of tasks offline
- - [ ] Display an `Offline` indicator
+- [x] Keep a record of tasks offline
+ - [x] Display an `Offline` indicator
- [ ] Indent embedded subtasks
diff --git a/inbox_for_todoist.widget/todoistinbox.py b/inbox_for_todoist.widget/todoistinbox.py
index 38775f3..52443bc 100644
--- a/inbox_for_todoist.widget/todoistinbox.py
+++ b/inbox_for_todoist.widget/todoistinbox.py
@@ -49,5 +49,6 @@ def main(token='___YOUR TODOIST TOKEN HERE:___'): # FIXME: Remove personal toke
pri = "<p class='priority1'>" # FIXME: Color coding not working...
rank += 1
print(pri, "<b>", rank, '- </b>', i['content'], "</p>") # print name and id
+
if __name__ == '__main__':
main()