gh-manager-cli 1.31.1 → 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 +19 -0
- package/README.md +2 -14
- package/dist/index.js +642 -485
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
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
|
+
|
|
13
|
+
## [1.31.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.31.1...v1.31.2) (2025-09-05)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* increase repository container height by 30% for better visibility ([2ce8f8d](https://github.com/wiiiimm/gh-manager-cli/commit/2ce8f8d017c70fd90a595804277a6d900f539b7d))
|
|
19
|
+
|
|
1
20
|
## [1.31.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.31.0...v1.31.1) (2025-09-05)
|
|
2
21
|
|
|
3
22
|
|
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)
|
|
@@ -516,18 +516,6 @@ Highlights on deck:
|
|
|
516
516
|
- Bulk selection and actions
|
|
517
517
|
- Repository renaming
|
|
518
518
|
|
|
519
|
-
## Support & Sponsorship
|
|
520
|
-
|
|
521
|
-
If you find gh-manager-cli useful, consider supporting its development:
|
|
522
|
-
|
|
523
|
-
- 💖 **[GitHub Sponsors](https://github.com/sponsors/wiiiimm)** - Recurring monthly support
|
|
524
|
-
- ☕ **[Ko-fi](https://ko-fi.com/wiiiimm)** - Buy me a coffee (one-time donations)
|
|
525
|
-
- 🎨 **[Buy Me a Coffee](https://buymeacoffee.com/wiiiimm)** - Support with coffee donations
|
|
526
|
-
|
|
527
|
-
Your support helps maintain and improve this project. Thank you! 🙏
|
|
528
|
-
|
|
529
|
-
For a complete list of supported sponsorship platforms, see [docs/SPONSORSHIP_PLATFORMS.md](docs/SPONSORSHIP_PLATFORMS.md).
|
|
530
|
-
|
|
531
519
|
## License
|
|
532
520
|
|
|
533
521
|
MIT
|