Implement a changelog-generator tool and example

This commit is contained in:
Héctor Ramón Jiménez 2024-09-17 04:44:56 +02:00
parent 8fb939b5a9
commit 547e509683
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
6 changed files with 759 additions and 1 deletions

View file

@ -0,0 +1,10 @@
use iced::widget::{text, Text};
use iced::Font;
pub const FONT_BYTES: &[u8] = include_bytes!("../fonts/changelog-icons.ttf");
const FONT: Font = Font::with_name("changelog-icons");
pub fn copy() -> Text<'static> {
text('\u{e800}').font(FONT)
}