diff --git a/AUTHORS b/AUTHORS index 433b42ce09..b7c9b3d08c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -17,3 +17,4 @@ Jaap Aarts Maximilian Köstler Bruno Dupuis Christopher Noel Hesse +Marcin Zając diff --git a/README.md b/README.md index 7f88d79d80..d2e4a537c8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Druid +![druid banner](https://raw.githubusercontent.com/linebender/druid/screenshots/images/small_banner.png) ## A data-first Rust-native UI toolkit. @@ -91,7 +91,7 @@ druid = { git = "https://github.com/linebender/druid.git" } #### Linux -On Linux, Druid requires gtk+3; see [GTK installation page]. +On Linux, Druid requires gtk+3; see [GTK installation page]. (On ubuntu-based distro, running `sudo apt-get install libgtk-3-dev` from the terminal will do the job.) diff --git a/druid-derive/src/lib.rs b/druid-derive/src/lib.rs index 4099a6edaf..095f78addb 100644 --- a/druid-derive/src/lib.rs +++ b/druid-derive/src/lib.rs @@ -15,6 +15,9 @@ //! derive macros for druid. #![deny(clippy::trivially_copy_pass_by_ref)] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png" +)] extern crate proc_macro; diff --git a/druid-shell/src/lib.rs b/druid-shell/src/lib.rs index 4f0b83f16d..d80f1c782d 100644 --- a/druid-shell/src/lib.rs +++ b/druid-shell/src/lib.rs @@ -29,6 +29,9 @@ #![warn(broken_intra_doc_links)] #![allow(clippy::new_without_default)] #![deny(clippy::trivially_copy_pass_by_ref)] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png" +)] // Rename `gtk_rs` back to `gtk`. // This allows us to use `gtk` as the feature name. diff --git a/druid/src/lib.rs b/druid/src/lib.rs index 181a58ca85..9769cb7799 100644 --- a/druid/src/lib.rs +++ b/druid/src/lib.rs @@ -134,6 +134,9 @@ #![warn(missing_docs)] #![allow(clippy::new_ret_no_self, clippy::needless_doctest_main)] #![cfg_attr(docsrs, feature(doc_cfg))] +#![doc( + html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png" +)] // Allows to use macros from druid_derive in this crate extern crate self as druid;