diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-31 11:26:28 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-31 11:26:28 +0200 |
| commit | 879c1bf3af959234ef608ca90e96ded4c8a81498 (patch) | |
| tree | 94d0ab5d152639636158093a9f7bacaf06f06626 | |
| parent | 08e11d04ef1150e5b4a862bf82179e2196daa850 (diff) | |
| download | llamachat-0.2.0.tar.gz llamachat-0.2.0.zip | |
chore: release 0.2.0v0.2.0
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | llamachat/__init__.py | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b8e099..8a6a83c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2026-07-31 + ### Added - Context meter in the top bar showing how much of the active model's @@ -26,6 +28,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - A toggle for the history panel, on the `☰` button and `Ctrl+\`. The panel's width and hidden state are remembered between runs in `~/.config/llamachat/state.ini`. +- `Ctrl+N` starts a fresh conversation, `Ctrl+F` jumps to the search field. + +### Fixed + +- Escape while filtering history dismissed the whole window. It now backs + out of the search field first: clear the text, then return to the input, + and only then hide. ### Changed diff --git a/llamachat/__init__.py b/llamachat/__init__.py index 34974b8..1eae2d4 100644 --- a/llamachat/__init__.py +++ b/llamachat/__init__.py @@ -12,4 +12,4 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -__version__ = "0.1.0" +__version__ = "0.2.0" |
