gh-manager-cli 1.20.0 → 1.21.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 +7 -0
- package/README.md +14 -3
- package/dist/index.js +604 -365
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.21.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.20.0...v1.21.0) (2025-09-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add repository URL copying modal with interactive selection ([#24](https://github.com/wiiiimm/gh-manager-cli/issues/24)) ([45998e9](https://github.com/wiiiimm/gh-manager-cli/commit/45998e966805da7277a5fa6506e2b94c0d8dde39))
|
|
7
|
+
|
|
1
8
|
# [1.20.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.19.2...v1.20.0) (2025-09-03)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -60,8 +60,10 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
60
60
|
- **Repository Actions**:
|
|
61
61
|
- View detailed info (`I`) - Shows repository metadata, language, size, and timestamps
|
|
62
62
|
- Open in browser (Enter/`O`)
|
|
63
|
+
- Copy repository URLs (`C`) - Interactive modal to copy SSH or HTTPS clone URLs with keyboard navigation
|
|
63
64
|
- Delete repository (`Del` or `Backspace`) with secure two-step confirmation
|
|
64
65
|
- Archive/unarchive repositories (`Ctrl+A`) with confirmation prompts
|
|
66
|
+
- Rename repository (`Ctrl+R`) with real-time validation
|
|
65
67
|
- Change repository visibility (`Ctrl+V`) - Switch between Public, Private, and Internal (enterprise only)
|
|
66
68
|
- Sync forks with upstream (`Ctrl+S`) with automatic conflict detection
|
|
67
69
|
|
|
@@ -257,7 +259,15 @@ Launch the app, then use the keys below:
|
|
|
257
259
|
### Repository Actions
|
|
258
260
|
- **Repository info**: `I` to view detailed metadata (size, language, timestamps)
|
|
259
261
|
- **Cache info**: `K` to inspect Apollo cache status
|
|
262
|
+
- **Copy URLs**: `C` to open interactive modal for copying SSH or HTTPS clone URLs
|
|
263
|
+
- SSH selected by default with visual indicators (▶)
|
|
264
|
+
- Up/Down arrows to select between SSH and HTTPS
|
|
265
|
+
- Enter to copy selected URL, or use `S`/`H` shortcuts
|
|
266
|
+
- Multiple close options: Esc, Q, C
|
|
260
267
|
- **Archive/Unarchive**: `Ctrl+A` with confirmation prompt
|
|
268
|
+
- **Rename repository**: `Ctrl+R` to rename (with real-time validation)
|
|
269
|
+
- Enter new name → confirm (Enter)
|
|
270
|
+
- Cancel: press Esc
|
|
261
271
|
- **Change visibility**: `Ctrl+V` to change repository visibility (Public/Private/Internal)
|
|
262
272
|
- **Delete repository**: `Del` or `Backspace` (with two-step confirmation modal)
|
|
263
273
|
- Type confirmation code → confirm (Y/Enter)
|
|
@@ -306,7 +316,7 @@ Project layout:
|
|
|
306
316
|
- `src/ui/App.tsx` — token bootstrap, renders `RepoList`
|
|
307
317
|
- `src/ui/RepoList.tsx` — main list UI with modal management
|
|
308
318
|
- `src/ui/components/` — modular components (modals, repo, common)
|
|
309
|
-
- `modals/` — DeleteModal, ArchiveModal, SyncModal, InfoModal, LogoutModal
|
|
319
|
+
- `modals/` — DeleteModal, ArchiveModal, RenameModal, SyncModal, InfoModal, LogoutModal
|
|
310
320
|
- `repo/` — RepoRow, FilterInput, RepoListHeader
|
|
311
321
|
- `common/` — SlowSpinner and shared UI elements
|
|
312
322
|
- `src/ui/OrgSwitcher.tsx` — organization switching component
|
|
@@ -423,7 +433,9 @@ For the up-to-date task board, see [TODOs.md](./TODOs.md).
|
|
|
423
433
|
Recently implemented:
|
|
424
434
|
- ✅ OAuth login flow as an alternative to Personal Access Token
|
|
425
435
|
- ✅ Density toggle for row spacing (compact/cozy/comfy)
|
|
426
|
-
- ✅ Repo actions (archive/unarchive, delete, change visibility) with confirmations
|
|
436
|
+
- ✅ Repo actions (archive/unarchive, delete, rename, change visibility) with confirmations
|
|
437
|
+
- ✅ Repository renaming with real-time validation (`Ctrl+R`)
|
|
438
|
+
- ✅ Repository URL copying modal (`C`) with interactive SSH/HTTPS selection
|
|
427
439
|
- ✅ Organization support and switching (press `W`) with enterprise detection
|
|
428
440
|
- ✅ Enhanced server-side search with improved UX and organization context support
|
|
429
441
|
- ✅ Smart infinite scroll with 80% prefetch trigger
|
|
@@ -435,7 +447,6 @@ Recently implemented:
|
|
|
435
447
|
Highlights on deck:
|
|
436
448
|
- Optional OS keychain storage via `keytar`
|
|
437
449
|
- Bulk selection and actions
|
|
438
|
-
- Repository renaming
|
|
439
450
|
|
|
440
451
|
## License
|
|
441
452
|
|