Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "rbwhat", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Quickly list review-board requests that need your attention", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -25,2 +25,3 @@ #!/usr/bin/env node | ||
daysOld: 14, | ||
linkDiff: true, | ||
filter: { | ||
@@ -80,3 +81,6 @@ status: 'pending', | ||
branch = 'branch '.grey + (request.branch || 'None').white; | ||
url = ("" + config.url + "r/" + request.id + "/diff").underline; | ||
url = ("" + config.url + "r/" + request.id + "/").underline; | ||
if (config.linkDiff) { | ||
url += 'diff'.underline; | ||
} | ||
return ["" + (pad(colorName(submitter, submitter), 18)) + " " + repo.white + " " + title, " " + bug + branch, " " + url + " " + (formatDate(request.time_added))]; | ||
@@ -83,0 +87,0 @@ }; |
@@ -55,4 +55,7 @@ # Description | ||
* The empty array [] is a special wildcard | ||
* Link to review summary, not diff | ||
* `rbwhat '{"linkDiff": false}'` | ||
* See which reviews your coworker is ignoring | ||
* `rbwhat '{"filter": {"to-user-groups": "coworker"}}` | ||
* `rbwhat '{"filter": {"to-user-groups": "coworkerName"}}` | ||
* Show all incoming reviews for your coworker, instead of yourself | ||
* View all possible [filters here](http://www.reviewboard.org/docs/manual/dev/webapi/2.0/resources/review-request-list/). | ||
@@ -59,0 +62,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67954
154
70