You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement shell completions, help command, and improved configuration loading.
- feat(cli): add `kairo completion` command with support for bash, zsh, fish, and powershell
- feat(cli): add `kairo help` command for subcommand discovery
- feat(config): implement multi-location config loading (including `~/.kairo/` and `~/.config/kairo/`)
- feat(ui): add task ID to detail view metadata
- feat(ui): add "NEW TASK" and "EDIT TASK" titles to the editor
- feat(ui): add editor shortcut toolbar/hints
- feat(ui): improve active tab styling with accent background
- feat(ui): make rainbow logo animation toggleable via config
- chore: update version to 1.1.5 in VERSION.txt and lua engine
- chore: update goreleaser configuration with Homebrew support
- docs: update README with installation and completion instructions
- docs: update CHANGELOG with 1.1.5 release notes
- fixes#9
- fixes #8
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.1.5]
9
+
10
+
### Added
11
+
-**New `help` Command**: Added a comprehensive `kairo help` command to explore subcommands and their usage.
12
+
-**Shell Tab Completions**: Added `kairo completion [bash|zsh|fish|powershell]` for full command and dynamic task ID completion.
13
+
-**Completion Auto-Install**: Use `kairo completion <shell> install` to automatically add completion to your shell profile (Bash, Zsh, Fish).
14
+
-**Task ID in Detail View**: Task details now display the unique task ID in the metadata section for easier API/plugin reference.
15
+
-**Editor Shortcut Toolbar**: Added a visual footer to the New/Edit Task screen with keybind hints (`ctrl+s` save, `esc` cancel, `tab` navigate).
16
+
-**Editor Clarity**: Added prominent "NEW TASK" and "EDIT TASK" titles to the editor card.
17
+
-**Multi-location Config Loading**: Kairo now searches for `config.toml` in `~/.kairo/` and `~/.config/kairo/` in addition to standard platform paths.
18
+
19
+
### Fixed
20
+
-**Rainbow Toggle**: Fixed the `rainbow` configuration setting not being correctly detected and applied to the animated logo.
21
+
22
+
### Changed
23
+
-**Active Tab Styling**: The active view tab now uses the theme's accent color as a background with contrasting text for significantly better visibility.
0 commit comments