summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--llamachat/__init__.py2
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"