gh-manager-cli 1.31.2 → 1.32.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 +12 -0
- package/README.md +2 -2
- package/dist/index.js +641 -484
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [1.32.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.31.2...v1.32.0) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ensure processPRTitle function is always exported in workflow script ([8056aa3](https://github.com/wiiiimm/gh-manager-cli/commit/8056aa399ef22d020f5e7d99253b4613a204236c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add sort direction modal for improved UX ([#26](https://github.com/wiiiimm/gh-manager-cli/issues/26)) ([5209252](https://github.com/wiiiimm/gh-manager-cli/commit/520925241a325a6205378746964c0bd58d2640af))
|
|
12
|
+
|
|
1
13
|
## [1.31.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.31.1...v1.31.2) (2025-09-05)
|
|
2
14
|
|
|
3
15
|
|
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
73
73
|
- **Authentication**: GitHub OAuth (recommended) or Personal Access Token with secure storage
|
|
74
74
|
- **Repository Listing**: Browse all your personal repositories with metadata (stars, forks, language, etc.)
|
|
75
75
|
- **Live Pagination**: Infinite scroll with automatic page prefetching
|
|
76
|
-
- **Interactive Sorting**: Modal-based sort selection (updated, pushed, name, stars) with direction
|
|
76
|
+
- **Interactive Sorting**: Modal-based sort selection (updated, pushed, name, stars) with modal-based direction selection
|
|
77
77
|
- **Smart Search**: Server-side search through repository names and descriptions (3+ characters)
|
|
78
78
|
- **Visibility Filtering**: Modal-based visibility filter (All, Public, Private/Internal for enterprise) with smart filtering
|
|
79
79
|
- **Fork Status Tracking**: Toggle display of commits behind upstream for forked repositories
|
|
@@ -264,7 +264,7 @@ Launch the app, then use the keys below:
|
|
|
264
264
|
- Pushed: When code was last pushed
|
|
265
265
|
- Name: Alphabetical by repository name
|
|
266
266
|
- Stars: Number of stars
|
|
267
|
-
- **Sort Direction**: `D` to
|
|
267
|
+
- **Sort Direction**: `D` to open sort direction modal (ascending/descending)
|
|
268
268
|
- **Display Density**: `T` to toggle compact/cozy/comfy
|
|
269
269
|
- **Fork Status**: `F` to toggle showing commits behind upstream
|
|
270
270
|
- **Visibility Filter**: `V` opens modal (All, Public, Private/Internal for enterprise)
|