@beauraines/rtm-cli 1.7.0 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +33 -31
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.7.2](https://github.com/beauraines/rtm-cli/compare/v1.7.1...v1.7.2) (2023-03-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * updated rtm-api dependency ([3c349c3](https://github.com/beauraines/rtm-cli/commit/3c349c311276dbf524732da6abd36d9ee96204d4))
11
+
12
+ ### [1.7.1](https://github.com/beauraines/rtm-cli/compare/v1.7.0...v1.7.1) (2023-03-07)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * Revert "Bump commander from 2.20.3 to 10.0.0" ([18653e9](https://github.com/beauraines/rtm-cli/commit/18653e9cb4976a6bfacfdaead5b990d3a29eef3e))
18
+
5
19
  ## [1.7.0](https://github.com/beauraines/rtm-cli/compare/v1.6.1...v1.7.0) (2023-03-07)
6
20
 
7
21
 
package/README.md CHANGED
@@ -64,37 +64,39 @@ The main usage of the program:
64
64
 
65
65
 
66
66
  Commands:
67
-
68
- add|a [task...] Add a new Task
69
- addList|al [name] [filter...] Add a new List or Smart List
70
- addTags|at [index] [tags...] Add one or more tags to a Task
71
- archiveList|arl [name...] Archive a List
72
- comp|x [indices...] Complete one or more Tasks
73
- decPri|- [indices...] Decrease the Priority of one or more Tasks
74
- due [index] [due...] Set the Due Date of a Task
75
- edit [index] [name...] Change the name of a Task
76
- incPri|+ [indices...] Increase the Priority of one or more Tasks
77
- lists|l Display all lists
78
- login Add RTM User information
79
- logout Remove RTM User information
80
- ls [filter...] List all tasks sorted first by list then by priority
81
- lsd [filter...] List all tasks sorted first by due date then by priority
82
- lsp [filter...] List all tasks sorted first by priority then due date
83
- move|mv [index] [list...] Move Task to a different List
84
- planner [options] [filter...] Display tasks in a weekly planner (--start: sun, mon, today)
85
- postpone|pp [indices...] Postpone one or more Tasks
86
- pri|p [index] [priority] Change Task Priority
87
- remove|rm [indices...] Remove one or more Tasks
88
- removeList|rml [name...] Remove a List
89
- removeTags|rmt [index] [tags...] Remove one or more tags from a Task
90
- renameList|mvl [oldName] [newName] Rename a List
91
- reset Reset cached task indices
92
- setUrl|su [index] [url] Set the URL of a Task
93
- tags|t Display all tags
94
- uncomp|unc [indices...] Mark one or more Tasks as not complete
95
- url [options] [index...] Display the associated URL of a Task
96
- whoami Display RTM user information
97
- overdue Display incomplete tasks that are overdue
67
+ add|a [task...] Add a new Task
68
+ addList|al [name] [filter...] Add a new List or Smart List
69
+ addNote|addNotes [index] [title] [body] Add note or prompt for the title and body of the note. If only an index and text are included the text will be the body of the note without a title
70
+ addTags|at [index] [tags...] Add one or more tags to a Task
71
+ archiveList|arl [name...] Archive a List
72
+ comp|x [indices...] Complete one or more Tasks
73
+ decPri|- [indices...] Decrease the Priority of one or more Tasks
74
+ due [index] [due...] Set the Due Date of a Task
75
+ edit [index] [name...] Change the name of a Task
76
+ incPri|+ [indices...] Increase the Priority of one or more Tasks
77
+ lists|l Display all lists
78
+ login Add RTM User information
79
+ logout Remove RTM User information
80
+ ls [filter...] List all tasks sorted first by list then by priority
81
+ lsd [filter...] List all tasks sorted first by due date then by priority
82
+ lsp [filter...] List all tasks sorted first by priority then due date
83
+ move|mv [index] [list...] Move Task to a different List
84
+ notes [indices...] Display the associated Notes of a Task
85
+ planner [options] [filter...] Display tasks in a weekly planner (--start: sun, mon, today)
86
+ postpone|pp [indices...] Postpone one or more Tasks
87
+ pri|p [index] [priority] Change Task Priority
88
+ remove|rm [indices...] Remove one or more Tasks
89
+ removeList|rml [name...] Remove a List
90
+ removeTags|rmt [index] [tags...] Remove one or more tags from a Task
91
+ renameList|mvl [oldName] [newName] Rename a List
92
+ reset Reset cached task indices
93
+ setUrl|su [index] [url] Set the URL of a Task
94
+ tags|t Display all tags
95
+ task [indices...] Display the Task details
96
+ uncomp|unc [indices...] Mark one or more Tasks as not complete
97
+ url [options] [indices...] Display the associated URL of a Task
98
+ whoami Display RTM user information
99
+ overdue Display incomplete tasks that are overdue
98
100
  ```
99
101
 
100
102
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/rtm-cli",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "description": "RTM CLI",
5
5
  "keywords": [
6
6
  "rtm",
@@ -37,9 +37,9 @@
37
37
  "homepage": "https://github.com/beauraines/rtm-cli#readme",
38
38
  "dependencies": {
39
39
  "chalk": "^4.0.0",
40
- "@beauraines/rtm-api": "^1.4.1",
40
+ "@beauraines/rtm-api": "^1.5.0",
41
41
  "cli-table3": "^0.6.3",
42
- "commander": "^10.0.0",
42
+ "commander": "^2.11.0",
43
43
  "copy-paste": "^1.3.0",
44
44
  "deepmerge": "^4.0.0",
45
45
  "dateformat": "^3.0.2",