gh-manager-cli 1.24.2 → 1.25.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 +6 -2
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.25.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.3...v1.25.0) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update demo assets and documentation ([84242cc](https://github.com/wiiiimm/gh-manager-cli/commit/84242cc1cb14d58d5f8777e8d2ca20fb158839cb))
|
|
7
|
+
|
|
8
|
+
## [1.24.3](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.2...v1.24.3) (2025-09-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* clear all settings including org context on logout ([3a30b02](https://github.com/wiiiimm/gh-manager-cli/commit/3a30b0246d410b14bf9d9b5681904660cf7cc80f))
|
|
14
|
+
|
|
1
15
|
## [1.24.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.1...v1.24.2) (2025-09-05)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
Interactive terminal app to browse and manage your personal GitHub repositories. Built with Ink (React for CLIs) and the GitHub GraphQL API.
|
|
16
16
|
|
|
17
|
+
🌐 **Visit our website:** [gh-manager-cli.dev](https://gh-manager-cli.dev) | [Source](https://github.com/wiiiimm/gh-manager-cli-site) | Hosted on [Vercel](https://vercel.com)
|
|
18
|
+
|
|
17
19
|
<p align="center">
|
|
18
|
-
<img src="docs/
|
|
20
|
+
<img src="docs/app-demo.gif" alt="Interactive demo of gh-manager-cli" width="900" />
|
|
19
21
|
<br />
|
|
20
22
|
<em>Fast, keyboard-first GitHub repo management from your terminal</em>
|
|
21
23
|
</p>
|
|
@@ -60,6 +62,8 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
60
62
|
- **Repository Actions**:
|
|
61
63
|
- View detailed info (`I`) - Shows repository metadata, language, size, and timestamps
|
|
62
64
|
- Open in browser (Enter/`O`)
|
|
65
|
+
- Rename repository (`Ctrl+R`) with inline validation and automatic cache update
|
|
66
|
+
- Copy repository URL to clipboard (`C`) with SSH/HTTPS options
|
|
63
67
|
- Delete repository (`Del` or `Backspace`) with secure two-step confirmation
|
|
64
68
|
- Archive/unarchive repositories (`Ctrl+A`) with confirmation prompts
|
|
65
69
|
- Change repository visibility (`Ctrl+V`) - Switch between Public, Private, and Internal (enterprise only)
|
|
@@ -107,7 +111,7 @@ npx gh-manager-cli@latest
|
|
|
107
111
|
Install globally for persistent `gh-manager-cli` command:
|
|
108
112
|
|
|
109
113
|
```bash
|
|
110
|
-
npm install -g gh-manager-cli
|
|
114
|
+
npm install -g gh-manager-cli@latest
|
|
111
115
|
gh-manager-cli
|
|
112
116
|
```
|
|
113
117
|
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var require_package = __commonJS({
|
|
|
31
31
|
"package.json"(exports, module) {
|
|
32
32
|
module.exports = {
|
|
33
33
|
name: "gh-manager-cli",
|
|
34
|
-
version: "1.
|
|
34
|
+
version: "1.25.0",
|
|
35
35
|
private: false,
|
|
36
36
|
description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
|
|
37
37
|
license: "MIT",
|
|
@@ -207,6 +207,9 @@ function clearStoredToken() {
|
|
|
207
207
|
const { token, tokenVersion, tokenSource, ...rest } = existing;
|
|
208
208
|
writeConfig({ ...rest });
|
|
209
209
|
}
|
|
210
|
+
function clearAllSettings() {
|
|
211
|
+
writeConfig({});
|
|
212
|
+
}
|
|
210
213
|
function getTokenSource() {
|
|
211
214
|
const cfg = readConfig();
|
|
212
215
|
return cfg.tokenSource || "pat";
|
|
@@ -3476,7 +3479,7 @@ function App({ initialOrgSlug: initialOrgSlug2, inlineToken: inlineToken2, inlin
|
|
|
3476
3479
|
tokenOrigin: sessionTokenOrigin
|
|
3477
3480
|
});
|
|
3478
3481
|
try {
|
|
3479
|
-
|
|
3482
|
+
clearAllSettings();
|
|
3480
3483
|
} catch {
|
|
3481
3484
|
}
|
|
3482
3485
|
setRateLimitReset(null);
|