gh-manager-cli 1.38.0 → 1.39.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/CHANGELOG.md +14 -0
- package/README.md +4 -2
- package/dist/index.js +795 -648
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.39.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.38.1...v1.39.0) (2026-06-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* replace archive filter cycle with popup modal (A Archive Filter) ([#45](https://github.com/wiiiimm/gh-manager-cli/issues/45)) ([9299443](https://github.com/wiiiimm/gh-manager-cli/commit/92994433291bf196b6882c27409aa5ec49be0b35))
|
|
7
|
+
|
|
8
|
+
## [1.38.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.38.0...v1.38.1) (2026-06-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add archive filter toggle for repositories [semantic pr title] ([#43](https://github.com/wiiiimm/gh-manager-cli/issues/43)) ([3b717a3](https://github.com/wiiiimm/gh-manager-cli/commit/3b717a345c6104a6b59e530eb7688bac9d8276ee))
|
|
14
|
+
|
|
1
15
|
# [1.38.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.37.0...v1.38.0) (2025-09-09)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -76,7 +76,8 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
76
76
|
- **Live Pagination**: Infinite scroll with automatic page prefetching
|
|
77
77
|
- **Interactive Sorting**: Modal-based sort selection (updated, pushed, name, stars) with modal-based direction selection
|
|
78
78
|
- **Smart Search**: Server-side search through repository names and descriptions (3+ characters)
|
|
79
|
-
- **Visibility
|
|
79
|
+
- **Visibility Filter**: Modal-based visibility filter (All, Public, Private/Internal for enterprise) with smart filtering
|
|
80
|
+
- **Archive Filter**: Toggle-based archive filter (`A` key cycles All → Unarchived → Archived) for quick filtering by archive status
|
|
80
81
|
- **Fork Status Tracking**: Always shows commits behind upstream for forked repositories
|
|
81
82
|
- **Stars Mode**: View and manage starred repositories (personal account only)
|
|
82
83
|
- **Repository Actions**:
|
|
@@ -102,7 +103,7 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
102
103
|
- **Rate Limit Monitoring**: Dual API rate limit display (GraphQL & REST) with real-time usage deltas and visual warnings
|
|
103
104
|
|
|
104
105
|
### Technical Features
|
|
105
|
-
- **Preference Persistence**: UI settings (sort, density, visibility filter, fork tracking) saved between sessions
|
|
106
|
+
- **Preference Persistence**: UI settings (sort, density, visibility filter, archive filter, fork tracking) saved between sessions
|
|
106
107
|
- **Server-side Filtering**: Visibility filtering performed at GitHub API level for accurate pagination
|
|
107
108
|
- **Cross-platform**: Works on macOS, Linux, and Windows
|
|
108
109
|
- **Secure Storage**: Token stored with proper file permissions (0600)
|
|
@@ -271,6 +272,7 @@ Launch the app, then use the keys below:
|
|
|
271
272
|
- **Display Density**: `T` to toggle compact/cozy/comfy
|
|
272
273
|
- **Fork Status**: Always enabled - shows commits behind upstream for all forks
|
|
273
274
|
- **Visibility Filter**: `V` opens modal (All, Public, Private/Internal for enterprise)
|
|
275
|
+
- **Archive Filter**: `A` toggles archive filter (All → Unarchived → Archived)
|
|
274
276
|
- **Stars Mode**: `Shift+S` (personal account only) to view starred repositories
|
|
275
277
|
|
|
276
278
|
### Navigation & Account
|