Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
ftxui-6.1.8-win64.deb | 2025-05-01 | 7.5 MB | |
ftxui-6.1.8-win64.tar.gz | 2025-05-01 | 7.5 MB | |
ftxui-6.1.8-win64.zip | 2025-05-01 | 7.6 MB | |
ftxui-6.1.8-Darwin.dmg | 2025-05-01 | 573.9 kB | |
ftxui-6.1.8-Darwin.tar.gz | 2025-05-01 | 560.0 kB | |
ftxui-6.1.8-Darwin.zip | 2025-05-01 | 580.6 kB | |
ftxui-6.1.8-Linux.deb | 2025-05-01 | 678.6 kB | |
ftxui-6.1.8-Linux.json | 2025-05-01 | 785 Bytes | |
ftxui-6.1.8-Linux.rpm | 2025-05-01 | 676.6 kB | |
ftxui-6.1.8-Linux.sh | 2025-05-01 | 682.4 kB | |
ftxui-6.1.8-Linux.tar.bz2 | 2025-05-01 | 526.6 kB | |
ftxui-6.1.8-Linux.tar.gz | 2025-05-01 | 677.4 kB | |
ftxui-6.1.8-Linux.tar.xz | 2025-05-01 | 397.1 kB | |
ftxui-6.1.8-Linux.tar.Z | 2025-05-01 | 1.1 MB | |
ftxui-6.1.8-Linux.tar.zst | 2025-05-01 | 577.8 kB | |
ftxui-6.1.8-Linux.zip | 2025-05-01 | 697.7 kB | |
source.tar.gz | 2025-05-01 | 261.4 kB | |
README.md | 2025-05-01 | 818 Bytes | |
v6.1.8 source code.tar.gz | 2025-05-01 | 261.9 kB | |
v6.1.8 source code.zip | 2025-05-01 | 417.4 kB | |
Totals: 20 Items | 31.3 MB | 0 |
Build
- Feature: Support
bazel
build system. See [#1032]. Proposed by Kostya Serebryany @kcc If all goes well (pending), it should appear in the Bazel central repository. It can be imported into your project using the following lines:
MODULE.bazel
bazel
bazel_dep(name = "ftxui", version = "6.1.8")
BUILD.bazel ```bazel deps = [ // Depend on the whole library: "@ftxui//:ftxui",
// Choose a specific submodule:
"@ftxui//:component",
"@ftxui//:dom",
"@ftxui//:screen",
] ```
Component
- Bugfix: Fix a crash with ResizeableSplit. See [#1023].
- Clamp screen size to terminal size.
- Disallow
ResizeableSplit
with negative size.
Dom
- Bugfix: Disallow specifying a negative size constraint. See [#1023].