gh-manager-cli 1.25.0 → 1.26.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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [1.26.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.25.1...v1.26.0) (2025-09-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * add green monochrome logo-mark variant ([ec31eeb](https://github.com/wiiiimm/gh-manager-cli/commit/ec31eeb52f6af564568fe4346cd22085a39460fa)), closes [#22c55](https://github.com/wiiiimm/gh-manager-cli/issues/22c55)
7
+
8
+ ## [1.25.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.25.0...v1.25.1) (2025-09-05)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * slow down OAuth loading spinner to update every 2 seconds ([bb2b9f0](https://github.com/wiiiimm/gh-manager-cli/commit/bb2b9f04f3410f5870884a3db74246ad4b8110bd))
14
+
1
15
  # [1.25.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.24.3...v1.25.0) (2025-09-05)
2
16
 
3
17
 
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.25.0",
34
+ version: "1.26.0",
35
35
  private: false,
36
36
  description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
37
37
  license: "MIT",
@@ -594,15 +594,15 @@ import chalk2 from "chalk";
594
594
  import { useEffect as useEffect2, useState as useState2 } from "react";
595
595
  import { Text as Text2 } from "ink";
596
596
  import { jsx as jsx2 } from "react/jsx-runtime";
597
- function SlowSpinner() {
597
+ function SlowSpinner({ interval = 500 } = {}) {
598
598
  const frames = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
599
599
  const [frame, setFrame] = useState2(0);
600
600
  useEffect2(() => {
601
601
  const timer = setInterval(() => {
602
602
  setFrame((f) => (f + 1) % frames.length);
603
- }, 500);
603
+ }, interval);
604
604
  return () => clearInterval(timer);
605
- }, [frames.length]);
605
+ }, [frames.length, interval]);
606
606
  return /* @__PURE__ */ jsx2(Text2, { children: frames[frame] });
607
607
  }
608
608
 
@@ -3189,7 +3189,6 @@ function AuthMethodSelector({ onSelect, onQuit }) {
3189
3189
 
3190
3190
  // src/ui/components/auth/OAuthProgress.tsx
3191
3191
  import { Box as Box17, Text as Text18 } from "ink";
3192
- import Spinner from "ink-spinner";
3193
3192
  import { jsx as jsx18, jsxs as jsxs17 } from "react/jsx-runtime";
3194
3193
  function OAuthProgress({ status, error, deviceCode }) {
3195
3194
  const statusMessages = {
@@ -3230,7 +3229,7 @@ function OAuthProgress({ status, error, deviceCode }) {
3230
3229
  return /* @__PURE__ */ jsxs17(Box17, { flexDirection: "column", borderStyle: "single", borderColor: status === "error" ? "red" : "cyan", paddingX: 2, paddingY: 1, children: [
3231
3230
  /* @__PURE__ */ jsx18(Text18, { bold: true, marginBottom: 1, children: "GitHub OAuth Authentication" }),
3232
3231
  /* @__PURE__ */ jsx18(Box17, { marginY: 1, children: showSpinner ? /* @__PURE__ */ jsxs17(Box17, { children: [
3233
- /* @__PURE__ */ jsx18(Text18, { color: "green", children: /* @__PURE__ */ jsx18(Spinner, { type: "dots" }) }),
3232
+ /* @__PURE__ */ jsx18(Text18, { color: "green", children: /* @__PURE__ */ jsx18(SlowSpinner, { interval: 2e3 }) }),
3234
3233
  /* @__PURE__ */ jsxs17(Text18, { children: [
3235
3234
  " ",
3236
3235
  message
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",