Skip to content

Commit

Permalink
docs: update copyright years, fix tiny typos
Browse files Browse the repository at this point in the history
  • Loading branch information
7sDream committed Nov 14, 2023
1 parent 9084824 commit 2040e1c
Show file tree
Hide file tree
Showing 24 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Find fonts which can show a specified character and preview them in browser.

This is port from my early python script called [which_fonts_support][which_fonts_support-github], but with some improvements:

- 🛡️ Write in Rust. Safety
- 🛡️ Write in Rust, without unsafe. Safety
- 🚀️ Mmap to load font file. Fast
- 🚀️ Only parse font table we need, not all bytes of font file. Faster
- 🖥 Support preview in terminal and browser. Friendly
Expand Down
4 changes: 2 additions & 2 deletions src/args.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand All @@ -23,7 +23,7 @@ use super::one_char::OneChar;
#[derive(clap::Parser)]
#[command(author, version, about, arg_required_else_help(true))]
pub struct Args {
/// Verbose mode, -v show all font styles, -vv adds file and font face index
/// Verbose mode, -v show all font styles, -vv adds font file and face index
#[arg(short, long, action = clap::ArgAction::Count)]
pub verbose: u8,

Expand Down
2 changes: 1 addition & 1 deletion src/family.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/loader/cmap.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/loader/face_info.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/loader/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/one_char.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/browser/builder.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/browser/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/browser/server.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/render/ascii.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/render/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/render/mono.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/render/moon.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/ui/cache.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/ui/event.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/ui/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/preview/terminal/ui/state.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/rasterizer/bitmap.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/rasterizer/font_face.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down
2 changes: 1 addition & 1 deletion src/rasterizer/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// FontFor: find fonts which can show a specified character
// Copyright (C) 2019 - 2020 7sDream <[email protected]> and contributors
// Copyright (C) 2019 - 2023 7sDream <[email protected]> and contributors
//
// This file is part of FontFor.
//
Expand Down

0 comments on commit 2040e1c

Please sign in to comment.