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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [1.8.1] - 2026-08-04

### Added
- Published a JSON Schema for the `[cship]` config section at [https://cship.dev/config-schema.json](https://cship.dev/config-schema.json), giving editors autocomplete and validation for `cship.toml` / `starship.toml` via `"$schema" = 'https://cship.dev/config-schema.json'`. A `cship config-schema` subcommand emits the same schema locally ([#197](https://github.com/stephenleo/cship/pull/197), issue [#196](https://github.com/stephenleo/cship/issues/196))
- Added the `family_style` map to `cship.model`, so model families cship does not hardcode (e.g. Fable) can be styled through config alone. Matching is case-insensitive, the longest matching key wins on overlap, and empty keys are ignored with a warn-once diagnostic. The legacy `haiku_style` / `sonnet_style` / `opus_style` entries still take priority ([#195](https://github.com/stephenleo/cship/pull/195))
- Added the `$fill` layout token (`[cship.fill]`), mirroring Starship's `fill` module: it expands to fill the remaining width and right-aligns following content, with multiple `$fill` on a line splitting the space evenly. Configurable `symbol` / `style` / `disabled`. Because Claude Code does not expose the terminal width to statusline commands ([claude-code#22115](https://github.com/anthropics/claude-code/issues/22115)), width is recovered best-effort by reading the controlling terminal of an ancestor process on macOS/Linux, with a `[cship] width` → `80` fallback (and a `[cship] width_offset`, default 3, for the reserved margin). Windows and the web/desktop apps use the fallback.

## [1.8.0] - 2026-06-29
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cship"
version = "1.8.0"
version = "1.8.1"
edition = "2024"
description = "A beautiful, fully customizable statusline for Claude Code — Starship-style TOML config, themeable colours, Nerd Font glyphs, and tunable cost/context/usage thresholds"
license = "Apache-2.0"
Expand Down