@kitlangton/ghui 0.7.0 → 0.8.0
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.
- package/README.md +10 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -78,7 +78,8 @@ Example:
|
|
|
78
78
|
```json
|
|
79
79
|
{
|
|
80
80
|
"theme": "system",
|
|
81
|
-
"systemThemeAutoReload": true
|
|
81
|
+
"systemThemeAutoReload": true,
|
|
82
|
+
"showScrollbars": false
|
|
82
83
|
}
|
|
83
84
|
```
|
|
84
85
|
|
|
@@ -86,6 +87,10 @@ Example:
|
|
|
86
87
|
theme reload signals update the active system theme palette while ghui is
|
|
87
88
|
running.
|
|
88
89
|
|
|
90
|
+
Scrollable panes hide their scrollbar rails by default. Set `showScrollbars`
|
|
91
|
+
to `true` to display them while retaining the same keyboard and mouse scrolling
|
|
92
|
+
behavior.
|
|
93
|
+
|
|
89
94
|
## Keybindings
|
|
90
95
|
|
|
91
96
|
- `up` / `down`: move selection
|
|
@@ -116,6 +121,10 @@ running.
|
|
|
116
121
|
- `y`: copy PR metadata
|
|
117
122
|
- `q`: quit
|
|
118
123
|
|
|
124
|
+
Authored-only pull request views render compact one-line rows because the
|
|
125
|
+
author identity is implied by the active view. Mixed-author views continue to
|
|
126
|
+
show the author and branch metadata row.
|
|
127
|
+
|
|
119
128
|
Review submission:
|
|
120
129
|
|
|
121
130
|
- Press `shift-r` to open the review modal.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitlangton/ghui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Terminal UI for GitHub pull requests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"LICENSE"
|
|
28
28
|
],
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@kitlangton/ghui-darwin-arm64": "0.
|
|
31
|
-
"@kitlangton/ghui-darwin-x64": "0.
|
|
32
|
-
"@kitlangton/ghui-linux-arm64": "0.
|
|
33
|
-
"@kitlangton/ghui-linux-x64": "0.
|
|
30
|
+
"@kitlangton/ghui-darwin-arm64": "0.8.0",
|
|
31
|
+
"@kitlangton/ghui-darwin-x64": "0.8.0",
|
|
32
|
+
"@kitlangton/ghui-linux-arm64": "0.8.0",
|
|
33
|
+
"@kitlangton/ghui-linux-x64": "0.8.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public",
|