mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
Compare commits
31 Commits
v6.1.0
...
ee80e956dd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ee80e956dd | ||
|
|
aa6d1df1dd | ||
|
|
cabb7cad91 | ||
|
|
a0d59acf62 | ||
|
|
30304f1668 | ||
|
|
c2df863e5d | ||
|
|
2a5d7646da | ||
|
|
8e055a5a61 | ||
|
|
378e30bef0 | ||
|
|
2270fe628f | ||
|
|
44d25564ee | ||
|
|
a9b54106d4 | ||
|
|
31ec197811 | ||
|
|
3184033f4d | ||
|
|
632f8032bc | ||
|
|
1d7d84c155 | ||
|
|
fd5e5c77e5 | ||
|
|
c8a14f5d70 | ||
|
|
321c308a98 | ||
|
|
8feac77d8c | ||
|
|
dad4a67fcb | ||
|
|
d6006d3475 | ||
|
|
f69adb605a | ||
|
|
e185d6d475 | ||
|
|
f8d4880517 | ||
|
|
38869c4aaa | ||
|
|
4a75d49478 | ||
|
|
c3d03dc716 | ||
|
|
053a1d8290 | ||
|
|
45bf24f8ea | ||
|
|
f128c442cc |
30
CHANGELOG.md
30
CHANGELOG.md
@@ -1,35 +1,11 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
Future release
|
Next release (2025-04-01)
|
||||||
------------
|
-------------------------
|
||||||
|
|
||||||
6.1.0 (2025-04-29)
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
### Build
|
### Build
|
||||||
- Feature: Support `bazel` build system. See #1032.
|
- Feature: Support `bazel`. See #1032. Proposed by @kcc.
|
||||||
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.0")
|
|
||||||
```
|
|
||||||
|
|
||||||
**BUILD.bazel**
|
|
||||||
```bazel
|
|
||||||
deps = [
|
|
||||||
// Depend on the whole library:
|
|
||||||
"@ftxui//:ftxui",
|
|
||||||
|
|
||||||
// Choose a specific submodule:
|
|
||||||
"@ftxui//:component",
|
|
||||||
"@ftxui//:dom",
|
|
||||||
"@ftxui//:screen",
|
|
||||||
]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Component
|
### Component
|
||||||
- Bugfix: Fix a crash with ResizeableSplit. See #1023.
|
- Bugfix: Fix a crash with ResizeableSplit. See #1023.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
|
|||||||
|
|
||||||
project(ftxui
|
project(ftxui
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
VERSION 6.1.0
|
VERSION 6.0.2
|
||||||
DESCRIPTION "C++ Functional Terminal User Interface."
|
DESCRIPTION "C++ Functional Terminal User Interface."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# the LICENSE file.
|
# the LICENSE file.
|
||||||
|
|
||||||
# FTXUI Module.
|
# FTXUI Module.
|
||||||
module(name = "ftxui", version = "6.1.0")
|
module(name = "ftxui", version = "6.0.3")
|
||||||
|
|
||||||
# Build deps.
|
# Build deps.
|
||||||
bazel_dep(name = "rules_cc", version = "0.1.1")
|
bazel_dep(name = "rules_cc", version = "0.1.1")
|
||||||
|
|||||||
@@ -372,7 +372,7 @@ include(FetchContent)
|
|||||||
|
|
||||||
FetchContent_Declare(ftxui
|
FetchContent_Declare(ftxui
|
||||||
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
||||||
GIT_TAG v6.1.0
|
GIT_TAG v6.0.2
|
||||||
)
|
)
|
||||||
|
|
||||||
FetchContent_GetProperties(ftxui)
|
FetchContent_GetProperties(ftxui)
|
||||||
|
|||||||
Reference in New Issue
Block a user