Skip to content

Commit 9a67842

Browse files
committed
fix: update some coda status names
1 parent 0170524 commit 9a67842

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/mcl/src/src/mcl/utils/add_task.d

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ export void writeAddTaskHelp() {
4343
writeln(" mcl add_task <task-title> [<username/priority/status/milestone/estimate/tshirt-size> ..]");
4444
writeln(" <username> is `@<name>` (might be a shorter name if registered in mcl_config.json)");
4545
writeln(" <priority> is highest / high / normal / low");
46-
writeln(" <status> is backlog / ready (for ready to start) / progress (for in progress) / done / blocker / paused / cancelled");
46+
writeln(" <status> is backlog / next (for next up) / worked (for worked on) / done / blocked / paused / cancelled");
4747
writeln(" <milestone> is project-specific, but can be auto-recognized based on shorter names in mcl_config.json");
4848
writeln(" <estimate> is time(days) estimate, needs explicit `--estimate=..` for now");
4949
writeln(" <tshirt-size> is S / M / L / XL");
5050
writeln("");
5151
writeln(" for all you can also pass explicit flag like `--priority=<value>");
5252
writeln("");
5353
writeln(" examples (with a hypothetical mcl_config.json):");
54-
writeln(" mcl add_task \"test task\" @Paul low progress beta M");
54+
writeln(" mcl add_task \"test task\" @Paul low worked beta M");
5555
writeln(" mcl add_task \"test task 2\" @Paul v1 L");
5656
writeln(" mcl add_task \"test task 3\" @John done normal M beta");
5757
writeln(" mcl add_task \"test task 4\" M backlog @John");
@@ -133,14 +133,14 @@ class TaskManager {
133133
Arg result = { kind: "status", value: "Backlog" };
134134
return result;
135135
}
136-
else if (raw == "ready" || raw == "ready to start")
136+
else if (raw == "next" || raw == "next up")
137137
{
138-
Arg result = { kind: "status", value: "Ready to Start" };
138+
Arg result = { kind: "status", value: "Next Up" };
139139
return result;
140140
}
141-
else if (raw == "progress" || raw == "in progress")
141+
else if (raw == "worked" || raw == "worked on")
142142
{
143-
Arg result = { kind: "status", value: "In progress" };
143+
Arg result = { kind: "status", value: "Worked On" };
144144
return result;
145145
}
146146
else if (raw == "review" || raw == "code review")
@@ -165,7 +165,7 @@ class TaskManager {
165165
}
166166
else if (raw == "blocked")
167167
{
168-
Arg result = { kind: "status", value: "blocked" };
168+
Arg result = { kind: "status", value: "Blocked" };
169169
return result;
170170
}
171171
else if (raw.startsWith("--status="))

0 commit comments

Comments
 (0)