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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.3.59

- One command installs or updates rook: scripts/install.ps1 (Windows) and scripts/install.sh (Linux) fetch the latest release and swap the binary in place, handling a running rook.exe and unwritable locations. The startup update notice now prints the exact command for your platform, and the README leads with the one-liners. (#322)
- /sessions has two tabs: This directory (default) and All sessions, switched with Tab; rows on the All tab also name their folder, and type-to-filter works within the active tab. Sessions record the directory they were saved from. (#323)
- --continue and -c resume the newest session saved from the current directory instead of the newest anywhere. Sessions saved before this release have no recorded directory and appear only under All sessions. (#323)

## 0.3.58

- The thinking indicator no longer appears to flash green during tool-heavy turns: a permanent spacer row separates it from the transcript's green tool bullets, and it is indented past their column, so nothing green ever sits in or beside the animation.
Expand Down
2 changes: 1 addition & 1 deletion rv.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rook"
version = "0.3.58"
version = "0.3.59"
edition = "v2"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/version.rv
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
// version_test.rv: bump both together for a release or CI fails.

fun version() -> String {
return "0.3.58"
return "0.3.59"
}