Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ Changelog
current (development)
---------------------

#### DOM:
- The `inverted` decorator now toggle in the inverted attribute.
### Build
- **breaking**: The library prefix is now back to "lib" (the default). This
means non-cmake users should not link against "libftxui-dom" for instance.

### DOM:
- **breaking**: The `inverted` decorator now toggle in the inverted attribute.
- Add `gauge` for the 4 directions. Expose the following API:
```cpp
Element gauge(float ratio);
Expand All @@ -20,7 +24,7 @@ Element gaugeDirection(float ratio, GaugeDirection);
- Fix the `Table` rendering function, to allow automerging characters.
- Bugfix: The `vscroll_indicator` now computes its offset and size correctly.

#### Component
### Component
- Support SIGTSTP. (ctrl+z).
- Support task posting. `ScreenInteractive::Post(Task)`.

Expand Down
2 changes: 1 addition & 1 deletion cmake/ftxui_set_options.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function(ftxui_set_options library)
set_target_properties(${library} PROPERTIES PREFIX "ftxui-")
set_target_properties(${library} PROPERTIES OUTPUT_NAME "ftxui-${library}")


target_include_directories(${library}
Expand Down