mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-12-16 01:48:56 +08:00
Compare commits
3 Commits
7ef651f7e9
...
v6.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcdcf70348 | ||
|
|
4231c4903b | ||
|
|
10d73d365f |
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
@@ -231,7 +231,7 @@ jobs:
|
||||
|
||||
- name: "Create source package"
|
||||
run: >
|
||||
git archive --format=tar.gz --prefix=ftxui/ -o source.tar.gz HEAD
|
||||
git archive --format=tar.gz -o source.tar.gz HEAD
|
||||
|
||||
- name: "Upload source package"
|
||||
uses: shogo82148/actions-upload-release-asset@v1
|
||||
|
||||
7
.github/workflows/publish.yaml
vendored
7
.github/workflows/publish.yaml
vendored
@@ -1,11 +1,4 @@
|
||||
on:
|
||||
# On new releases:
|
||||
workflow_call:
|
||||
inputs:
|
||||
tag_name:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
# On manual trigger:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
30
CHANGELOG.md
30
CHANGELOG.md
@@ -1,11 +1,35 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
Next release (2025-04-01)
|
||||
-------------------------
|
||||
Future release
|
||||
------------
|
||||
|
||||
6.1.1 (2025-04-30)
|
||||
-----------------
|
||||
|
||||
### Build
|
||||
- Feature: Support `bazel`. See #1032. Proposed by @kcc.
|
||||
- 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.1")
|
||||
```
|
||||
|
||||
**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.
|
||||
|
||||
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
|
||||
|
||||
project(ftxui
|
||||
LANGUAGES CXX
|
||||
VERSION 6.0.2
|
||||
VERSION 6.1.1
|
||||
DESCRIPTION "C++ Functional Terminal User Interface."
|
||||
)
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# the LICENSE file.
|
||||
|
||||
# FTXUI Module.
|
||||
module(name = "ftxui", version = "6.0.3")
|
||||
module(name = "ftxui", version = "6.1.1")
|
||||
|
||||
# Build deps.
|
||||
bazel_dep(name = "rules_cc", version = "0.1.1")
|
||||
|
||||
Reference in New Issue
Block a user