Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
thedrlambda committed Feb 25, 2024
1 parent 13eb6e1 commit cd6181a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
## Fixes and improvements
-

# 2.1.2
## Fixes and improvements
- Fix display of english date time in `queue` and `key`

# 2.1.1
## Fixes and improvements
- Allow more characters in text fields ('<>\')
Expand Down
Binary file modified dist/windows.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@merrymake/cli",
"version": "2.1.1",
"version": "2.1.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions questions.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function queue_id(org, id) {
River: 12,
Event: 12,
Status: 7,
"Queue time": 20,
"Queue time": 23,
});
return (0, prompt_1.choice)(cache_queue
.filter((x) => x.id === id)
Expand Down Expand Up @@ -429,7 +429,7 @@ function keys(org) {
long: x.key,
text: `${x.key}${(0, executors_1.alignLeft)(n, Math.max(process_1.stdout.getWindowSize()[0] -
36 -
20 -
23 -
"─┼──┼─".length -
" ".length, 12))}${ds}`,
action: () => keys_key(org, x.key, x.name),
Expand All @@ -445,7 +445,7 @@ function keys(org) {
(0, executors_1.printTableHeader)(" ", {
Key: 36,
Description: -12,
"Expiry time": 20,
"Expiry time": 23,
});
return yield (0, prompt_1.choice)(options).then((x) => x);
}
Expand Down
6 changes: 3 additions & 3 deletions questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ function queue_id(org: string, id: string) {
River: 12,
Event: 12,
Status: 7,
"Queue time": 20,
"Queue time": 23,
});
return choice(
cache_queue
Expand Down Expand Up @@ -570,7 +570,7 @@ async function keys(org: string) {
Math.max(
stdout.getWindowSize()[0] -
36 -
20 -
23 -
"─┼──┼─".length -
" ".length,
12
Expand All @@ -589,7 +589,7 @@ async function keys(org: string) {
printTableHeader(" ", {
Key: 36,
Description: -12,
"Expiry time": 20,
"Expiry time": 23,
});
return await choice(options).then((x) => x);
} catch (e) {
Expand Down

0 comments on commit cd6181a

Please sign in to comment.