gh-manager-cli 1.40.1 → 1.41.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 +4 -1
- package/dist/index.js +396 -295
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.41.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.40.2...v1.41.0) (2026-06-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* colour themes with Shift+T cycle keybinding and persisted preference (SWR-354) [semantic pr title] ([#56](https://github.com/wiiiimm/gh-manager-cli/issues/56)) ([1a307c6](https://github.com/wiiiimm/gh-manager-cli/commit/1a307c6a8442a0d295f8a92aeb98eb544eb80d51))
|
|
7
|
+
|
|
8
|
+
## [1.40.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.40.1...v1.40.2) (2026-06-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* stars toggle footer hint truncation and contextual labels (SWR-359) ([#52](https://github.com/wiiiimm/gh-manager-cli/issues/52)) ([f19ca6f](https://github.com/wiiiimm/gh-manager-cli/commit/f19ca6f4ba81b71133ddc7e5e98df67191d348b0))
|
|
14
|
+
|
|
1
15
|
## [1.40.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.40.0...v1.40.1) (2026-06-05)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
94
94
|
### User Interface & Experience
|
|
95
95
|
- **Keyboard Navigation**: Full keyboard control (arrow keys, PageUp/Down, `Ctrl+G`/`G`)
|
|
96
96
|
- **Display Density**: Toggle between compact/cozy/comfy spacing (`T`)
|
|
97
|
+
- **Colour Themes**: Four themes (Default, Ocean, Forest, Monochrome) cycled with `Shift+T`, persisted across restarts
|
|
97
98
|
- **Visual Indicators**: Fork status, private/internal/archived badges, language colors, visibility status
|
|
98
99
|
- **Enterprise Support**: Full support for GitHub Enterprise with Internal repository visibility
|
|
99
100
|
- **Organization Context**: Switch between personal and organization accounts with ENT badge for enterprise orgs
|
|
@@ -270,10 +271,12 @@ Launch the app, then use the keys below:
|
|
|
270
271
|
- Stars: Number of stars
|
|
271
272
|
- **Sort Direction**: `D` to open sort direction modal (ascending/descending)
|
|
272
273
|
- **Display Density**: `T` to toggle compact/cozy/comfy
|
|
274
|
+
- **Colour Theme**: `Shift+T` to cycle themes (Default → Ocean → Forest → Monochrome); selection persists across restarts
|
|
273
275
|
- **Fork Status**: Always enabled - shows commits behind upstream for all forks
|
|
274
276
|
- **Visibility Filter**: `V` opens modal (All, Public, Private/Internal for enterprise)
|
|
275
277
|
- **Archive Filter**: `A` toggles archive filter (All → Unarchived → Archived)
|
|
276
|
-
- **Stars Mode**: `Shift+S` (personal account only) to
|
|
278
|
+
- **Stars Mode**: `Shift+S` (personal account only) to toggle between your own repos and your starred repos
|
|
279
|
+
- Footer hint shows `Shift+S Starred` in normal mode and `Shift+S My Repos` in starred mode
|
|
277
280
|
|
|
278
281
|
### Navigation & Account
|
|
279
282
|
- **Open in browser**: Enter or `O`
|