gh-manager-cli 1.43.0 → 1.44.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,10 @@
1
+ # [1.44.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.43.0...v1.44.0) (2026-06-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * theme-aware selected-row highlight with better contrast (SWR-364) ([#59](https://github.com/wiiiimm/gh-manager-cli/issues/59)) ([1b71cb2](https://github.com/wiiiimm/gh-manager-cli/commit/1b71cb2144b0773bb0d9538e3f30141e53346890)), closes [#1f4a57](https://github.com/wiiiimm/gh-manager-cli/issues/1f4a57) [#11294d](https://github.com/wiiiimm/gh-manager-cli/issues/11294d) [#14391f](https://github.com/wiiiimm/gh-manager-cli/issues/14391f) [#333333](https://github.com/wiiiimm/gh-manager-cli/issues/333333)
7
+
1
8
  # [1.43.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.42.0...v1.43.0) (2026-06-05)
2
9
 
3
10
 
package/README.md CHANGED
@@ -95,7 +95,7 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
95
95
  ### User Interface & Experience
96
96
  - **Keyboard Navigation**: Full keyboard control (arrow keys, PageUp/Down, `Ctrl+G`/`G`)
97
97
  - **Display Density**: Toggle between compact/cozy/comfy spacing (`T`)
98
- - **Colour Themes**: Four themes (Default, Ocean, Forest, Monochrome) cycled with `Shift+T`, persisted across restarts
98
+ - **Colour Themes**: Four themes (Default, Ocean, Forest, Monochrome) cycled with `Shift+T`, persisted across restarts; the selected-row highlight is theme-aware and tuned per theme for readable contrast
99
99
  - **Visual Indicators**: Fork status, private/internal/archived badges, language colors, visibility status
100
100
  - **Enterprise Support**: Full support for GitHub Enterprise with Internal repository visibility
101
101
  - **Organization Context**: Switch between personal and organization accounts with ENT badge for enterprise orgs
@@ -272,7 +272,7 @@ Launch the app, then use the keys below:
272
272
  - Stars: Number of stars
273
273
  - **Sort Direction**: `D` to open sort direction modal (ascending/descending)
274
274
  - **Display Density**: `T` to toggle compact/cozy/comfy
275
- - **Colour Theme**: `Shift+T` to cycle themes (Default → Ocean → Forest → Monochrome); selection persists across restarts
275
+ - **Colour Theme**: `Shift+T` to cycle themes (Default → Ocean → Forest → Monochrome); selection persists across restarts. Each theme defines its own selected-row highlight (a darker on-theme background) so the highlighted repository stays high-contrast
276
276
  - **Fork Status**: Always enabled — shows commits **ahead** and **behind** upstream once enrichment completes (see below)
277
277
  - **Visibility Filter**: `V` opens modal (All, Public, Private/Internal for enterprise)
278
278
  - **Archive Filter**: `A` toggles archive filter (All → Unarchived → Archived)
package/dist/index.js CHANGED
@@ -35,7 +35,7 @@ var require_package = __commonJS({
35
35
  "package.json"(exports, module) {
36
36
  module.exports = {
37
37
  name: "gh-manager-cli",
38
- version: "1.43.0",
38
+ version: "1.44.0",
39
39
  private: false,
40
40
  description: "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
41
41
  license: "MIT",
@@ -427,6 +427,8 @@ var THEMES = {
427
427
  muted: "gray",
428
428
  text: "white",
429
429
  selected: "cyan",
430
+ selectedBg: "#1f4a57",
431
+ // dark teal — contrasts the cyan/white selected text
430
432
  private: "yellow",
431
433
  archived: "gray",
432
434
  internal: "magenta",
@@ -444,6 +446,8 @@ var THEMES = {
444
446
  muted: "blue",
445
447
  text: "whiteBright",
446
448
  selected: "blueBright",
449
+ selectedBg: "#11294d",
450
+ // deep blue — sits behind the bright blue/white text
447
451
  private: "cyan",
448
452
  archived: "blue",
449
453
  internal: "magenta",
@@ -461,6 +465,8 @@ var THEMES = {
461
465
  muted: "gray",
462
466
  text: "white",
463
467
  selected: "green",
468
+ selectedBg: "#14391f",
469
+ // deep forest green behind the green/white text
464
470
  private: "yellow",
465
471
  archived: "gray",
466
472
  internal: "magenta",
@@ -478,6 +484,8 @@ var THEMES = {
478
484
  muted: "gray",
479
485
  text: "white",
480
486
  selected: "whiteBright",
487
+ selectedBg: "#333333",
488
+ // neutral dark grey — darker than the old bright grey
481
489
  private: "white",
482
490
  archived: "gray",
483
491
  internal: "white",
@@ -2102,7 +2110,7 @@ function RepoRow({
2102
2110
  if (line3) fullText += "\n" + metaColor(line3);
2103
2111
  const spacingAbove = Math.floor(spacingLines / 2);
2104
2112
  const spacingBelow = spacingLines - spacingAbove;
2105
- return /* @__PURE__ */ jsxs17(Box17, { flexDirection: "column", backgroundColor: selected ? "gray" : void 0, children: [
2113
+ return /* @__PURE__ */ jsxs17(Box17, { flexDirection: "column", backgroundColor: selected ? theme.selectedBg : void 0, children: [
2106
2114
  spacingAbove > 0 && /* @__PURE__ */ jsx18(Box17, { height: spacingAbove, children: /* @__PURE__ */ jsx18(Text18, { children: " " }) }),
2107
2115
  /* @__PURE__ */ jsx18(Text18, { children: dim ? chalk14.dim(fullText) : fullText }),
2108
2116
  spacingBelow > 0 && /* @__PURE__ */ jsx18(Box17, { height: spacingBelow, children: /* @__PURE__ */ jsx18(Text18, { children: " " }) })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.43.0",
3
+ "version": "1.44.0",
4
4
  "private": false,
5
5
  "description": "TUI terminal app to manage GitHub repos. Clean up your account in 5 minutes. Archive, delete, rename repos with keyboard shortcuts. Alternative to clicking through github.com",
6
6
  "license": "MIT",