Skip to content

Commit

Permalink
Update help message; Bump version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shcallaway committed May 7, 2018
1 parent 66a8074 commit 7f7e01b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/Main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ import Commands from "./Commands";
import { parseIntegerArguments } from "./Util";

const FILE = `${os.homedir()}/.todo`;
const VERSION = "1.0";
const VERSION = "1.1";
const HELP = `Usage: todo [command]
Commands:
complete [id] - Complete a task
remove [id] - Remove a task
nuke - Remove all tasks
help - Print this help message
complete [id] - Complete task(s)
remove [id] - Remove task(s)
nuke - Remove all tasks
help - Print this help message
Examples:
todo - List all tasks
todo Check my email - Add new task: "Check my email"
todo complete 874 - Complete task with id 874
todo - List all tasks
todo Check my email - Add new task "Check my email"
todo remove 488 - Remove task with id 488
todo complete 874 325 - Complete tasks with ids 874 and 325
Author: Sherwood Callaway
Code: http://github.com/shcallaway/todo
Expand Down

0 comments on commit 7f7e01b

Please sign in to comment.