gh-manager-cli 1.4.1 → 1.4.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.
- package/CHANGELOG.md +7 -0
- package/README.md +8 -12
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.4.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.4.1...v1.4.2) (2025-08-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add packages permission and improve GitHub Packages publishing with jq ([2346944](https://github.com/wiiiimm/gh-manager-cli/commit/2346944739f70d237240c6d67ae39c32d1d623d5))
|
|
7
|
+
|
|
1
8
|
## [1.4.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.4.0...v1.4.1) (2025-08-31)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@ Interactive terminal app to browse and manage your personal GitHub repositories.
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
# Run with npx (no
|
|
9
|
-
npx gh-manager
|
|
8
|
+
# Run with npx (no install)
|
|
9
|
+
npx gh-manager
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
On first run, you'll be prompted for a GitHub Personal Access Token.
|
|
@@ -20,13 +20,13 @@ On first run, you'll be prompted for a GitHub Personal Access Token.
|
|
|
20
20
|
- **Real-time Sorting**: Server-side sorting by updated, pushed, name, or stars (with direction toggle)
|
|
21
21
|
- **Smart Filtering**: Client-side search through repository names and descriptions
|
|
22
22
|
- **Repository Actions**:
|
|
23
|
-
- Open in browser (Enter/`
|
|
24
|
-
- Delete repository (`Del
|
|
25
|
-
- Archive/unarchive repositories (`
|
|
23
|
+
- Open in browser (Enter/`O`)
|
|
24
|
+
- Delete repository (`Del` or `Ctrl+Backspace`) with secure two-step confirmation
|
|
25
|
+
- Archive/unarchive repositories (`Ctrl+A`) with confirmation prompts
|
|
26
26
|
|
|
27
27
|
### User Interface & Experience
|
|
28
|
-
- **Keyboard Navigation**: Full keyboard control (arrow keys, PageUp/Down, `
|
|
29
|
-
- **Display Density**: Toggle between compact/cozy/comfy spacing (`
|
|
28
|
+
- **Keyboard Navigation**: Full keyboard control (arrow keys, PageUp/Down, `Ctrl+G`/`G`)
|
|
29
|
+
- **Display Density**: Toggle between compact/cozy/comfy spacing (`T`)
|
|
30
30
|
- **Visual Indicators**: Fork status, private/archived badges, language colors
|
|
31
31
|
- **Loading States**: Contextual loading screens for sorting and refreshing operations
|
|
32
32
|
- **Rate Limit Monitoring**: Live API usage display with visual warnings
|
|
@@ -45,11 +45,7 @@ On first run, you'll be prompted for a GitHub Personal Access Token.
|
|
|
45
45
|
Run instantly without installing:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
|
|
49
|
-
npx gh-manager-cli
|
|
50
|
-
|
|
51
|
-
# From GitHub (always latest)
|
|
52
|
-
npx github:wiiiimm/gh-manager-cli
|
|
48
|
+
npx gh-manager
|
|
53
49
|
```
|
|
54
50
|
|
|
55
51
|
### NPM Global Install
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var require_package = __commonJS({
|
|
|
9
9
|
"package.json"(exports, module) {
|
|
10
10
|
module.exports = {
|
|
11
11
|
name: "gh-manager-cli",
|
|
12
|
-
version: "1.4.
|
|
12
|
+
version: "1.4.2",
|
|
13
13
|
private: false,
|
|
14
14
|
description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
|
|
15
15
|
license: "MIT",
|