Changelog ========= unreleased (development) ------------------------ ### Features: #### DOM: - Add the `Canvas` class and `ElementFrom('canvas')` function. Together users of the library can draw using braille and block characters. - Support `flexbox` dom elements. This is build symmetrically to the HTML one. All the following attributes are supported: direction, wrap, justify-content, align-items, align-content, gap - Add the dom elements helper based on `flexbox`: - `paragraph` - `paragraphAlignLeft` - `paragraphAlignCenter` - `paragraphAlignRight` - `paragraphAlignJustify` - Add the helper elements based on `flexbox`: `hflow()`, `vflow()`. - Add: `focusPositionRelative` and `focusPosition` #### Component - Add the `collapsible` component. ### Bug #### Component - `Input` shouldn't take focus when hovered by the mouse. - Modifying `Input`'s during on_enter/on_change event is now working correctly. ### Breaking changes: - The behavior of `paragraph` has been modified. It now returns en Element, instead of a list of elements. 0.11.1 ------ # Component - Feature: Support for PageUp/PageDown/Home/End buttons. - Bugfix: Check the selected element are within bounds for Dropdown. # Build - Bugfix: Package library using the "Release config". Not debug. 0.11 ---- ## github workflow - Add Windows ad MacOS artefacts. - Merge all the workflows. ## Bug - On Unix system, fallback to {80,25} screen dimension on failure. ## CMake - Support for shared library, via `BUILD_SHARED_LIBS` option. - Add library version and symlinks. 0.10 (2021-09-30) -------------------- ## Bug - Fix the automated merge of borders. ### Dom - `Table()` class to build stylised table. See https://github.com/ArthurSonzogni/FTXUI/discussions/228 - `vscroll_indicator`. Show a scrollbar indicator on the right. - `separatorEmpty`. A separator drawing nothing. - `separatorFixed`. A separator drawing the provided character. ### Component - `Maybe`: Display an component conditionnally based on a boolean. - `Dropdown`: A dropdown select list. 0.9 (2021-09-26) ---------------- The initial release where changelog where written. This version includes: ### screen - Style: - Bold. - Blink. - Dim. - Inverted. - Underlined. - Foreground color. - Background color. - Support for UTF8 unicode. - Full wide character: 测试. - Combining characters: a⃒ - A Stencil buffer. - Automatically merge box drawing characters. - Detect terminal dimension. ### DOM - Element: - `text` & `vtext` - `separator` and 5 variations. - `gauge` - `border` and 6 variations. - `window` - `spinner` - `paragraph` and `hflow`. - Layout: - `hbox` - `vbox` - `dbox` - `gridbox` - `frame`: Drawing inside a virtual area, potentially larger than the real one. - `focus`, `select`: scroll the inner view of a frame, to be in view. - `flex` & 8 variations. `filler` - Decorators: - `bold` - `dim` - `inverted` - `blink` - `color` - `bgcolor` - `clearunder` ### Component - Container: - `Container::Vertical` - `Container::Horizontal` - `Container::Tab` - `Button` - `Checkbox` - `Input` - `Menu` - `MenuEntry` - `Radiobox` - `Toggle` - `Slider` - `Renderer` & variations - `CatchEvent` ### MISC - Fuzzer - Tests using gtest. - Doxygen documentation - IWYU - 52 examples. - Support for WebAssembly. - Support for Window and fallback for broken terminal.