Add Changelog and remove flag.

This commit is contained in:
ArthurSonzogni
2025-04-09 12:35:46 +02:00
parent 84f691e9d3
commit 85c3dc45ca
4 changed files with 114 additions and 46 deletions

View File

@@ -3,6 +3,22 @@ Changelog
Development
-----------
### Build
- Feature: Support C++20 modules.
This requires:
- Using the Ninja or MSVC generator
- A recent Clang/GCC/MSVC compiler.
- Cmake 3.28 or higher.
Usage:
```cpp
import ftxui;
import ftxui.component;
import ftxui.dom;
import ftxui.screen;
```
Thanks @mikomikotaishi for PR #1015.
### Component
- Bugfix: Fix a crash with ResizeableSplit. See #1023.
- Clamp screen size to terminal size.