-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.json
140 lines (140 loc) · 2.69 KB
/
todo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[
{
"type": "group",
"title": "Todo tree",
"children": [
{
"type": "task",
"title": "Tree structure todo list with groups and tasks",
"desc": null,
"done": true
},
{
"type": "task",
"title": "Inserting, editing, removing",
"desc": null,
"done": true
},
{
"type": "task",
"title": "Selecting multiple task/group lines",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Copy/paste/cut task/group lines",
"desc": null,
"done": false
},
{
"type": "task",
"title": "New task type - scripted task which will be able to extract info from outside the app to automate it",
"desc": null,
"done": false
}
]
},
{
"type": "task",
"title": "Generating markdown",
"desc": null,
"done": true
},
{
"type": "task",
"title": "Case sensitive/insensitive tree search",
"desc": null,
"done": true
},
{
"type": "group",
"title": "Navigation",
"children": [
{
"type": "task",
"title": "Up/down arrows, page up/down, ctrl+up/down arrows",
"desc": null,
"done": true
},
{
"type": "task",
"title": "Left/right arrows, ctrl+left arrow",
"desc": null,
"done": true
},
{
"type": "task",
"title": "Jumping around the tree using the ruler",
"desc": null,
"done": true
}
]
},
{
"type": "group",
"title": "Task descriptions",
"children": [
{
"type": "task",
"title": "Editing, viewing",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Markdown rendering support",
"desc": null,
"done": false
}
]
},
{
"type": "group",
"title": "Deadlines",
"children": [
{
"type": "task",
"title": "Editing, viewing (deadlines will be dates, a specific day, not a specific time)",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Marking past the deadline, before the deadline or during the deadline",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Stats showing how many tasks are past deadline, before deadline and during deadline",
"desc": null,
"done": false
},
{
"type": "group",
"title": "Optional notification daemon",
"children": [
{
"type": "task",
"title": "Notifying about tasks to be done today and tasks that are past the deadline using an external app",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Configurable notification",
"desc": null,
"done": false
},
{
"type": "task",
"title": "Configurable notification frequency",
"desc": null,
"done": false
}
]
}
]
}
]