# gitui v0.26.3-rc.1 - Product: gitui (https://whatsnew.fyi/product/gitui) - Vendor: gitui project - Date: 2024-06-02 - Version: v0.26.3-rc.1 - Original notes: https://github.com/gitui-org/gitui/releases/tag/v0.26.3-rc.1 - Permalink: https://whatsnew.fyi/product/gitui/releases/v0.26.3-rc.1 - Labels: Pre-release; Platforms: Desktop What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **changed** — Theme file format now requires quoted color names and supports hex color format (selection_fg: Some("White") and selection_fg: Some("#00ff00")) - **added** — Support intel x86 apple build in nightlies and releases - **added** — Support BUILD_GIT_COMMIT_ID enabling builds from git archive generated source tarballs or other outside a git repo - **fixed** — Update yanked dependency to libc to fix building with --locked ###### Breaking Changes ###### Theme file format **note:** this actually applied to the previous release already: `0.26.2` Ratatui (upstream terminal rendering crate) changed its serialization format for Colors. So the theme files have to be adjusted. `selection_fg: Some(White)` -> `selection_fg: Some("White")` but this also allows us now to define colors in the common hex format: `selection_fg: Some(Rgb(0,255,0))` -> `selection_fg: Some("#00ff00")` Checkout [THEMES.md](./THEMES.md) for more info. ###### Added * support intel x86 apple build in nightlies and releases * support `BUILD_GIT_COMMIT_ID` enabling builds from `git archive` generated source tarballs or other outside a git repo [[@alerque](https://github.com/alerque)] ([#2187](https://github.com/extrawurst/gitui/pull/2187)) ###### Fixes * update yanked dependency to `libc` to fix building with `--locked`. * document breaking change in theme file format.