From 410d08b2b5812d7e29302adc0e8ddf18eb7d1d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 12 Feb 2024 12:54:05 +0300 Subject: [PATCH] docs: add link to FOSDEM 2024 talk (#944) --- README.md | 4 ++++ src/lib.rs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 8b4b4fa4..e341aa87 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,9 @@ This is in contrast to the retained mode style of rendering where widgets are up automatically redrawn on the next frame. See the [Rendering] section of the [Ratatui Website] for more info. +You can also watch the [FOSDEM 2024 talk] about Ratatui which gives a brief introduction to +terminal user interfaces and showcases the features of Ratatui, along with a hello world demo. + ## Other documentation - [Ratatui Website] - explains the library's concepts and provides step-by-step tutorials @@ -301,6 +304,7 @@ Running this example produces the following output: [Changelog]: https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md [Contributing]: https://github.com/ratatui-org/ratatui/blob/main/CONTRIBUTING.md [Breaking Changes]: https://github.com/ratatui-org/ratatui/blob/main/BREAKING-CHANGES.md +[FOSDEM 2024 talk]: https://www.youtube.com/watch?v=NU0q6NOLJ20 [docsrs-hello]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-hello.png?raw=true [docsrs-layout]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-layout.png?raw=true [docsrs-styling]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-styling.png?raw=true diff --git a/src/lib.rs b/src/lib.rs index 9d1cc948..ae503ad6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,6 +40,9 @@ //! automatically redrawn on the next frame. See the [Rendering] section of the [Ratatui Website] //! for more info. //! +//! You can also watch the [FOSDEM 2024 talk] about Ratatui which gives a brief introduction to +//! terminal user interfaces and showcases the features of Ratatui, along with a hello world demo. +//! //! ## Other documentation //! //! - [Ratatui Website] - explains the library's concepts and provides step-by-step tutorials @@ -299,6 +302,7 @@ //! [Changelog]: https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md //! [Contributing]: https://github.com/ratatui-org/ratatui/blob/main/CONTRIBUTING.md //! [Breaking Changes]: https://github.com/ratatui-org/ratatui/blob/main/BREAKING-CHANGES.md +//! [FOSDEM 2024 talk]: https://www.youtube.com/watch?v=NU0q6NOLJ20 //! [docsrs-hello]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-hello.png?raw=true //! [docsrs-layout]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-layout.png?raw=true //! [docsrs-styling]: https://github.com/ratatui-org/ratatui/blob/c3c3c289b1eb8d562afb1931adb4dc719cd48490/examples/docsrs-styling.png?raw=true