Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,30 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https://

## [Unreleased]

## [1.21.2] - 2026-07-22

### Fixed
- Typing a new message while the agent is processing no longer drops spaces.
Bubble Tea delivers the spacebar as `tea.KeySpace` (not `tea.KeyRunes`);
the turn-running input viewport was missing that case so every space was
silently discarded — messages appeared as a single run-on word (#154).

## [1.21.1] - 2026-07-18

### Fixed
- The input panel is no longer overwritten or displaced by streamed agent
output while a turn is running (#153).

## [1.21.0] - 2026-07-18

### Added
- Exposure Receipt: a per-session log of every LLM and cloud-API egress
(QUA-1316). Guards all egress paths and includes concurrent-body snapshot
tests (#149, #150, #151).

### Changed
- Terminal input status layout improvements (#152).

## [1.20.9] - 2026-07-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

// Version is set at build time via -ldflags "-X main.Version=x.y.z"
var Version = "1.20.9"
var Version = "1.21.2"

const Name = "qmax-code"

Expand Down
Loading