From aadc795e62e7788b1e64b348f85565ec9a618df8 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 1 Aug 2024 23:58:15 +0100
Subject: [PATCH] chore(deps): bump tui-big-text from 0.4.5 to 0.5.2 (#60)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [tui-big-text](https://github.com/joshka/tui-widgets) from 0.4.5
to 0.5.2.
Sourced from tui-big-text's
releases. Remove anyhow dependency Replaced with color_eyre generally Update READMEs and licensing info (tui-big-text) Add alignment helper methods Adds helper methods to the let right = BigText::builder()
.right_aligned()
.lines(vec!["Right".green().into()])
.build()?; let centered = BigText::builder()
.centered()
.lines(vec!["Centered".red().into()])
.build()?;
Release notes
tui-big-text-v0.5.2
⚙️ Miscellaneous Tasks
tui-big-text-v0.5.1
⚙️ Miscellaneous Tasks
tui-big-text-v0.5.0
🚀 Features
BigTextBuilder
struct to set
the alignment
of the text. This makes it simpler to set the alignment of the text.let left = BigText::builder()
.left_aligned()
.lines(vec!["Left".white().into()])
.build()?;
(tui-big-text) [breaking] Make
BigText
builder infallible (#14)
BigTextBuilder.build() no longer returns a Result. Instead it returns the BigText widget directly. This change is made to simplify rendering code which often otherwise doesn't have any error conditions.
This also makes the fields on BigText public (marked as non-exhaustive)
BREAKING CHANGE:BigTextBuilder.build() no longer returns a Result.
... (truncated)