gh-manager-cli 1.4.0 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ ## [1.4.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.4.0...v1.4.1) (2025-08-31)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * correct GitHub Packages publishing step ([6a8122a](https://github.com/wiiiimm/gh-manager-cli/commit/6a8122ad32308cbd8e3cbf07176608fe3639887d))
14
+
1
15
  # [1.4.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.3.0...v1.4.0) (2025-08-31)
2
16
 
3
17
 
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 installation required)
9
- npx gh-manager-cli
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/`o`)
24
- - Delete repository (`Del`/Backspace) with secure two-step confirmation
25
- - Archive/unarchive repositories (`a`) with confirmation prompts
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, `g`/`G`)
29
- - **Display Density**: Toggle between compact/cozy/comfy spacing (`t`)
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
- # From NPM registry (clean, fast)
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.0",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",