forked from Diegiwg/todz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changes.log
30 lines (22 loc) · 1.02 KB
/
changes.log
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
v0.0.0
- Init the project.
v0.1.0
- Added the 'mycro-db' dependency as the database.
- Basic implementation of the CLI.
- Commands:
- 'todz init' - Initializes the database.
- '--path: <path: string>' - Changes the default path to the one provided by the user.
- 'todz add' - Adds a new task.
- '<description: string>' - Task description.
- 'todz edit' - Edits the description of a task.
- '<id: number>' - Task ID.
- '<new-description: string>' - New task description.
- 'todz list' - Lists all tasks.
- '--status: <completed|incomplete>' - Filters by status.
- 'todz complete' - Marks a task as complete.
- '<id: number>' - Task ID.
- 'todz incomplete' - Marks a task as incomplete.
- '<id: number>' - Task ID.
- 'todz remove' - Removes a task.
- '<id: number>' - Task ID.
- 'todz help' - (incomplete) Shows the tool's name.