File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- Future release
4
+ 6.1.9 (2025-05-07)
5
5
------------
6
6
7
+ ### Build
8
+ If all goes well (pending), ftxui should appear in the Bazel central repository.
9
+ It can be imported into your project using the following lines:
10
+
11
+ ** MODULE.bazel**
12
+ ``` bazel
13
+ bazel_dep(name = " ftxui" , version = " 6.1.9" )
14
+ ```
15
+
16
+ Thanks @robinlinden and @kcc for the reviews.
17
+
7
18
### dom
8
19
- Bugfix: Restore the ` dbox ` behavior from ftxui 5.0.0. To apply bgcolor
9
20
blending between the two layers, a new ` dboxBlend ` will be added.
@@ -14,13 +25,6 @@ Future release
14
25
### Build
15
26
- Feature: Support ` bazel ` build system. See #1032 .
16
27
Proposed by Kostya Serebryany @kcc
17
- If all goes well (pending), it should appear in the Bazel central repository.
18
- It can be imported into your project using the following lines:
19
-
20
- ** MODULE.bazel**
21
- ``` bazel
22
- bazel_dep(name = " ftxui" , version = " 6.1.8" )
23
- ```
24
28
25
29
** BUILD.bazel**
26
30
``` bazel
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
2
2
3
3
project (ftxui
4
4
LANGUAGES CXX
5
- VERSION 6.1.8
5
+ VERSION 6.1.9
6
6
DESCRIPTION "C++ Functional Terminal User Interface."
7
7
)
8
8
Original file line number Diff line number Diff line change 1
1
# FTXUI module.
2
2
module (
3
3
name = "ftxui" ,
4
- version = "6.1.8 " ,
4
+ version = "6.1.9 " ,
5
5
compatibility_level = 6 ,
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ include(FetchContent)
373
373
374
374
FetchContent_Declare(ftxui
375
375
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
376
- GIT_TAG v6.1.8
376
+ GIT_TAG v6.1.9
377
377
)
378
378
379
379
FetchContent_GetProperties(ftxui)
You can’t perform that action at this time.
0 commit comments