Releases: charmbracelet/bubbletea
v0.23.1
This bugfix release addresses an issue that was introduced by v0.23.0
and prevented programs from re-using stdin
after a tea.Program
had finished execution.
Changelog
Fixed!
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.
v0.23.0
If you are closely following Bubble Tea's development, you may have already noticed that we have been really busy fixing a lot of issues and merged more than just a couple of feature requests in recent weeks. This v0.23.0
release is in fact our biggest update since the initial release of the package: in the last 3 months over 100 commits have reached us by more than 30 individual contributors! Thank you everyone! 💕
Here's a quick overview of what has changed:
Custom Outputs
Don't want to render your beautiful TUI to stdout
? A buffer or an alternative file descriptor like stderr
seems more
appropriate? We got you covered now:
Render to stderr
p := tea.NewProgram(model, tea.WithOutput(os.Stderr))
Render to a Buffer
var buf bytes.Buffer
p := tea.NewProgram(model, tea.WithOutput(&buf))
Run Like the Wind
We've introduced the aptly named method Program.Run
which replaces and deprecates the existing Program.Start
and
Program.StartReturningModel
methods. This unifies and clarifies the blocking behavior of the Bubble Tea program execution.
The old methods will continue to work for now, but please update your programs accordingly:
p := tea.NewProgram(model, tea.WithOutput(os.Stderr))
model, err := p.Run() // instead of p.Start or p.StartReturningModel
...
Bug Fix Galore!
The initialization and tear-down methods of tea.Program
have been revised and some long-standing problems have been resolved. We couldn't list every single fix in the release notes, so please check out the full changelog below!
🤗 Thanks
We would like to particularly thank @knz who is the sole author of more than a dozen PRs since the last release. Outstanding work!
Changelog
New
- Render to custom outputs, io.Writers and buffers (
tea.WithOutput
) - Support for new keys: Ctrl(+Alt) - Page, Home, End, and Insert keys
- Signal handler is optional with program option
tea.WithoutSignalHandler
tea.ClearScreen
,tea.ShowCursor
commands- Exported
BatchMsg
Fixed!
- Race conditions in console renderer
- Issues restoring terminal state on shutdown
- Kill not resulting in an error returned by
Program.Run
- Repaint behavior
- Skip over unrecognized CSI sequences
- Function keys on urxvt
- Function keys on Linux console
- Rendering issues with overflowing output buffers
- Ensure final render on clean shutdown
- Cursor visibility on altscreen state switch
- Deadlock in
Program.Send
on shutdown
Deprecated
Program.Start
,Program.StartReturningModel
: please useProgram.Run
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.
v0.22.1
Mutli-Byte Character Support on Windows
This is a small release with a big impact for Chinese, Japanese, and Korean users on Windows. The long as short of it is that if you’re using a multi-byte character set that’s not UTF-8, Bubble Tea will covert stuff for you so things work as expected. For details see #343.
🤗 Enormous thanks to @mattn for the contribution as well as his Go libraries that make CJK support in the Charm ecosystem possible.
👾 Also, thanks to @aklyachkin, if Bubble Tea on AIX is something you want your dream is a now a reality.
Changelog
- support multi-byte strings on Windows by @mattn in #343
- enable compilation on AIX by @aklyachkin in #381
Full Changelog: v0.22.0...v0.22.1
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Slack.
v0.22.0
Unmanaged Output
Now you can print unmanaged output above your inline applications. This means you can print stuff above your app that won't be cleared on the next render. It’s super useful for cases where you want to build an apt
-like package manager.
Let’s Print
This release introduces two new Cmd
s that print output above your inline Bubble Tea program:
tea.Println("Hello, Bubble Tea")
tea.Printf("%s, %s", "Hello", "Bubble Tea")
Use it anytime you want to add log-type info to the terminal’s scrollback buffer, such as building your own package manager 📦. And keep in mind that these methods are no-op’s in altscreen mode.
For details see the full example and the docs.
🤗 Thanks
@fiws has been bugging us to implement this forever and then @Adjective-Object swooped in and did it with style and grace! It’s been a great collaboration all around.
Changelog
New
- Credit card input form example by @maaslalani in #338
- Allow unmanaged output above the app in standard renderer by @Adjective-Object in #249
Fixed!
New Contributors
- @georgijd made their first contribution in #330
- @joaom00 made their first contribution in #313
- @maaslalani made their first contribution in #338
- @Adjective-Object made their first contribution in #249
Full Changelog: v0.21.0...v0.22.0
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Slack.
v0.21.0
Spawn Interactive Processes + More Keybindings
Finally! This update allows you to run blocking, interactive processes from Bubble Tea like vim
, htop
, curl
, and even entire shells like fish
. It also adds a bunch of new keybindings. Read on for more!
Let’s Exec
As we were saying, you can now spawn interactive processes in the terminal from Bubble Tea and resume Bubble Tea when they exit. For example, you could have your Bubble Tea program spawn vim
to edit a file, or temporarily open a shell, like fish
. Here’s what it looks like:
type editorFinishedMsg struct{ err error }
func openInVim(path string) tea.Cmd {
c := exec.Command("vim", path)
return tea.ExecProcess(c, func(err error) tea.Msg {
return editorFinishedMsg{err}
})
}
See the full example for details.
Keys Galore
Prior to this update, you couldn't bind to the functions keys. Isn't that crazy? @mrusme certainly thought so. With this update you can can now respond to F1 through F20, modifiers included.
And thanks to @Bwahharharrr you can also now bind to arrow keys with the ctrl, shift and alt modifiers.
High-Level Changelog
New
- move cancelreader into a separate package by @muesli in #222
- Exec, program.ReleaseTerminal and RestoreTerminal to re-use input and terminal by @muesli in #237
- add support for shift/ctrl + arrow keys by @meowgorithm in #292
- add function key support by @meowgorithm in #263
Changed
- spacebar now sends a
KeySpace
by @bashbunni in #289 and #315 - Program#Send, Program#Quit, and Program#Kill no longer provisional by @meowgorithm in #271
New Contributors
- @r-darwish made their first contribution in #225
- @wolves made their first contribution in #250
- @imranZERO made their first contribution in #254
- @iamjaredwalters made their first contribution in #279
- @bashbunni made their first contribution in #289
Full Changelog: v0.20.0...v0.21.0
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Slack.
v0.20.0
Force Kill, Bugfixes, and Small Improvements
This is mostly a bugfix release, but there’s also a new feature where you can quit a Bubble Tea program immediately, skipping the final render, but still restoring the terminal state:
p := tea.NewProgram(model{})
go func() {
if err := p.Start(); err != nil {
fmt.Println("Oh no:", err)
os.Exit(1)
}
}()
// Later
p.Kill()
This can be useful in when to you need fine-grained management over a Bubble Tea program when using something like Wish. Special thanks to @aymanbagabas for implementing this swiftly and acutely.
New
- Added
Kill()
method to force quit the program and restore terminal state #219 - Support batched mouse events #215 (see #212 for details)
Fixed
- Allocate msgs channel in constructor to fix a data race (thanks @paralin!) #180
- Handle
nil
cmds intea.Sequentially
(thanks @ajeetdsouza!) #214 tea.Batch
now returnsnil
if all cmds are nil #217- Don't check terminal size if output is not a terminal #228
New Contributors
- @mamachanko made their first contribution in #178
- @paralin made their first contribution in #180
- @dependabot made their first contribution in #203
- @ajeetdsouza made their first contribution in #214
Full Changelog: v0.19.3...v0.20.0
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Slack.
v0.19.3
Altscreen Repaints
This release fixes a small bug where views would render blank if the view’s return value didn’t change after toggling the altscreen.
🤗 Special thanks to @chris-miner for flagging this one.
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Slack.
v0.19.2
It’s all about BSD
This release restores support for Dragonfly BSD and fixes a bug where general BSD builds would fail with Go 1.17. BSD users, let us know if you notice anything else is awry.
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter or The Fediverse.
v0.19.1
Welcome back, BSD
This update fixes a regression introduced in v0.16.0 that prevented Bubble Tea from building on BSD systems (excluding Darwin).
Here’s the changelog.
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter or The Fediverse.
v0.19.0
Final Model Access
This release features Program.StartReturningModel
, a handy alternative start method for returning the final Model
after a Program
exits. This makes it easy to access data collected in a Bubble Tea program while still working in an immutable fashion.
Here’s an example illustrating how it works:
type MyModel struct {
Name string
FaveCatColor string
}
p := tea.NewProgram(MyModel{})
// Return the final model when we're done
finalModel, err := p.StartReturningModel()
if err != nil {
fmt.Println("Uh oh", err)
os.Exit(1)
}
// The final model is a generalized tea.Model, so be sure to assert it into
// your actual model type.
if m, ok := finalModel.(MyModel); ok {
fmt.Printf("Hello, %s. I have a %s kitty for you.\n", m.Name, m.FaveCatColor)
}
🤗 A big thanks to @Raphexion for both conceptualizing and executing this feature.
ANSI Compression, Now Opt-In
We’ve also made the ANSI compressor opt-in by default as we noticed that it was incurring a larger performance hit than we’d like in some cases. To enable the ANSI compressor just use the WithANSICompressor
program option:
tea.NewProgram(model, tea.WithANSICompressor())
Changelog
Here’s the full changelog for this release.
Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter or The Fediverse.