gh-manager-cli 1.24.1 → 1.24.2

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.24.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.1...v1.24.2) (2025-09-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * prevent Ctrl+R from triggering refresh instead of rename ([987f505](https://github.com/wiiiimm/gh-manager-cli/commit/987f505ada3c2b17175e24cace81330ea8db9709))
7
+
1
8
  ## [1.24.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.0...v1.24.1) (2025-09-05)
2
9
 
3
10
 
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.24.1",
34
+ version: "1.24.2",
35
35
  private: false,
36
36
  description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
37
37
  license: "MIT",
@@ -2366,7 +2366,7 @@ function RepoList({ token, maxVisibleRows, onLogout, viewerLogin, onOrgContextCh
2366
2366
  setCursor(visibleItems.length - 1);
2367
2367
  return;
2368
2368
  }
2369
- if (input && input.toUpperCase() === "R") {
2369
+ if (input && input.toUpperCase() === "R" && !key.ctrl) {
2370
2370
  setCursor(0);
2371
2371
  setRefreshing(true);
2372
2372
  setSortingLoading(true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.24.1",
3
+ "version": "1.24.2",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",