Skip to content

Releases: sorinirimies/tui-checkbox

v0.4.3

20 Feb 18:01

Choose a tag to compare

tui-checkbox 0.4.3

🚀 What's New

📝 Changes since v0.4.2:

0.4.3 - 2026-02-20

🔄 Updated

  • Update tui-checkbox to 0.4.2 and improve bump_version.sh

🔧 Chores

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.4.3"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.4.2

20 Feb 13:47

Choose a tag to compare

tui-checkbox 0.4.2

🚀 What's New

📝 Changes since v0.3.3:

0.4.2 - 2026-02-20

♻️ Refactor

  • Refactor release and push commands for dual hosting
  • Refactor Checkbox label wrapping and clean up justfile

➕ Added

  • Add Gitea dual-hosting support and setup scripts
  • Add full release workflow commands for GitHub and Gitea
  • Add label positioning, alignment, width, and wrapping options
  • Add pull commands for GitHub and Gitea; remove hosting info from README
  • Add scripts for publish checks and just setup

📦 Other Changes

  • Document dual hosting setup and expand justfile commands
  • Merge branch 'main' of ssh://192.168.1.204:30009/sorin/tui-checkbox
  • Create JUSTFILE_PATTERNS.md

🔄 Updated

  • Update checkbox.tape for faster demo and new theme Speed up checkbox
  • Update README.md
  • Update theme to Catppuccin Mocha in checkbox example
  • Update dual hosting guide for tui-checkbox and justfile commands
  • Update README contributing section and remove dual hosting note
  • Update ratatui to 0.30 and crossterm to 0.29

🔧 Chores

  • chore: bump version to 0.3.4
  • chore: bump version to 0.3.5
  • chore: bump version to 0.3.6
  • chore: bump version to 0.3.7
  • chore: bump version to 0.3.8
  • chore: bump version to 0.3.9
  • chore: bump version to 0.4.0
  • chore: bump version to 0.4.1
  • chore: bump version to 0.4.2
    Full Changelog: v0.3.3...v0.4.2

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.4.2"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.3.3

27 Oct 02:12

Choose a tag to compare

tui-checkbox 0.3.3

🚀 What's New

📝 Changes since v0.2.6:

0.3.3 - 2025-10-27

🔄 Updated

  • Update README.md

🔧 Chores

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.3.3"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.2.6

23 Oct 23:53

Choose a tag to compare

tui-checkbox 0.2.6

🚀 What's New

📝 Changes since v0.2.5:

0.2.6 - 2025-10-23

🔧 Chores

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.2.6"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.2.5

23 Oct 23:44

Choose a tag to compare

tui-checkbox 0.2.5

🚀 What's New

📝 Changes since v0.2.4:

0.2.5 - 2025-10-23

✨ Features

  • feat: improve version bump script

🔧 Chores

  • chore: update Cargo.lock for version 0.2.4
  • chore: bump version to 0.2.5
    Full Changelog: v0.2.4...v0.2.5

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.2.5"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.2.4

23 Oct 23:31

Choose a tag to compare

tui-checkbox 0.2.4

🚀 What's New

📝 Changes since v0.2.3:

0.2.4 - 2025-10-23

📦 Other Changes

  • Updates dependencies

🔧 Chores

  • chore: bump version to 0.2.3
  • chore: bump version to 0.2.3
  • chore: bump version to 0.2.3
  • chore: bump version to 0.2.3
  • chore: bump version to 0.2.4
    Full Changelog: v0.2.3...v0.2.4

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.2.4"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.2.3

23 Oct 23:26

Choose a tag to compare

tui-checkbox 0.2.3

🚀 What's New

📝 Changes since v0.2.2:

0.2.3 - 2025-10-23

📦 Other Changes

  • Bump tui-checkbox to version 0.2.2

🔧 Chores

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.2.3"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));

v0.2.2

23 Oct 21:16

Choose a tag to compare

tui-checkbox 0.2.2

🚀 What's New

📝 Changes since v0.2.1:

0.2.2 - 2025-10-23

➕ Added

  • Add CI and release GitHub Actions workflows

🔧 Chores

📦 Installation

Add this to your Cargo.toml:

[dependencies]
tui-checkbox = "0.2.2"

Or install with cargo:

cargo add tui-checkbox

🚀 Quick Start

use ratatui::style::{Color, Style};
use tui_checkbox::Checkbox;

let checkbox = Checkbox::new("Enable feature", true)
    .checkbox_style(Style::default().fg(Color::Green));