From bc7e48500b645fd1a1a697d8e3f93d81a08373f1 Mon Sep 17 00:00:00 2001 From: cole-io <136556434+cole-io@users.noreply.github.com> Date: Thu, 18 Apr 2024 13:09:08 -0700 Subject: [PATCH] Update README.md tiny fixes --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37f2b889b..bfb27e0fa 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ A simple cross-platform C++ library for terminal based user interfaces! #### DOM -This module defines a hierarchical set of Element. An element manages layout and can be responsive to the terminal dimensions. +This module defines a hierarchical set of Element. An Element manages layout and can be responsive to the terminal dimensions. They are declared in [](https://arthursonzogni.github.io/FTXUI/elements_8hpp_source.html ) @@ -199,7 +199,7 @@ Complex [examples](https://github.com/ArthurSonzogni/FTXUI/blob/master/examples/ #### Component -ftxui/component produces dynamic UI, reactive to the user's input. It defines a set of ftxui::Component. A component reacts to Events (keyboard, mouse, resize, ...) and Renders as an Element (see previous section). +ftxui/component produces dynamic UI, reactive to the user's input. It defines a set of ftxui::Component. A component reacts to Events (keyboard, mouse, resize, ...) and Renders as an Element (see previous section). Prebuilt components are declared in [](https://arthursonzogni.github.io/FTXUI/component_8hpp_source.html) @@ -369,13 +369,15 @@ If you don't, FTXUI may be used from the following packages: - [Arch Linux PKGBUILD](https://aur.archlinux.org/packages/ftxui-git/). - [conan.io](https://conan.io/center/ftxui) - [openSUSE](https://build.opensuse.org/package/show/devel:libraries:c_c++/ftxui) +- +[![Packaging status](https://repology.org/badge/vertical-allrepos/ftxui.svg)](https://repology.org/project/ftxui/versions) If you choose to build and link FTXUI yourself, `ftxui-component` must be first in the linking order relative to the other FTXUI libraries, i.e. ```bash g++ . . . -lftxui-component -lftxui-dom -lftxui-screen . . . ``` -[![Packaging status](https://repology.org/badge/vertical-allrepos/ftxui.svg)](https://repology.org/project/ftxui/versions) + ## Contributors