Skip to content

Commit f30f2cd

Browse files
committed
Add community-made logo to the README and documentation.
1 parent 619ddb6 commit f30f2cd

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Jaap Aarts
1717
Maximilian Köstler
1818
Bruno Dupuis
1919
Christopher Noel Hesse
20+
Marcin Zając

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Druid
1+
![druid banner](https://raw.githubusercontent.com/linebender/druid/screenshots/images/small_banner.png)
22

33
## A data-first Rust-native UI toolkit.
44

@@ -91,7 +91,7 @@ druid = { git = "https://github.com/linebender/druid.git" }
9191

9292
#### Linux
9393

94-
On Linux, Druid requires gtk+3; see [GTK installation page].
94+
On Linux, Druid requires gtk+3; see [GTK installation page].
9595
(On ubuntu-based distro, running `sudo apt-get install libgtk-3-dev` from the terminal will do the job.)
9696

9797

druid-derive/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
//! derive macros for druid.
1616
1717
#![deny(clippy::trivially_copy_pass_by_ref)]
18+
#![doc(
19+
html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png"
20+
)]
1821

1922
extern crate proc_macro;
2023

druid-shell/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
#![warn(broken_intra_doc_links)]
3030
#![allow(clippy::new_without_default)]
3131
#![deny(clippy::trivially_copy_pass_by_ref)]
32+
#![doc(
33+
html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png"
34+
)]
3235

3336
// Rename `gtk_rs` back to `gtk`.
3437
// This allows us to use `gtk` as the feature name.

druid/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@
134134
#![warn(missing_docs)]
135135
#![allow(clippy::new_ret_no_self, clippy::needless_doctest_main)]
136136
#![cfg_attr(docsrs, feature(doc_cfg))]
137+
#![doc(
138+
html_logo_url = "https://raw.githubusercontent.com/linebender/druid/screenshots/images/doc_logo.png"
139+
)]
137140

138141
// Allows to use macros from druid_derive in this crate
139142
extern crate self as druid;

0 commit comments

Comments
 (0)