Remove `egui::special_emojis::TWITTER` (#5622)

Twitter is gone, as is its icon.

Also, fuck Elon Musk

Find me on https://bsky.app/profile/ernerfeldt.bsky.social
This commit is contained in:
Emil Ernerfeldt 2025-01-21 11:56:45 +01:00 committed by GitHub
parent 30e66e4575
commit 5b740f97ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 12 additions and 16 deletions

View File

@ -114,6 +114,7 @@ rust_2018_idioms = { level = "warn", priority = -1 }
rust_2021_prelude_collisions = "warn" rust_2021_prelude_collisions = "warn"
semicolon_in_expressions_from_macros = "warn" semicolon_in_expressions_from_macros = "warn"
trivial_numeric_casts = "warn" trivial_numeric_casts = "warn"
unexpected_cfgs = "warn"
unsafe_op_in_unsafe_fn = "warn" # `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668 unsafe_op_in_unsafe_fn = "warn" # `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
unused_extern_crates = "warn" unused_extern_crates = "warn"
unused_import_braces = "warn" unused_import_braces = "warn"
@ -203,7 +204,6 @@ match_same_arms = "warn"
match_wild_err_arm = "warn" match_wild_err_arm = "warn"
match_wildcard_for_single_variants = "warn" match_wildcard_for_single_variants = "warn"
mem_forget = "warn" mem_forget = "warn"
mismatched_target_os = "warn"
mismatching_type_param_order = "warn" mismatching_type_param_order = "warn"
missing_enforced_import_renames = "warn" missing_enforced_import_renames = "warn"
missing_errors_doc = "warn" missing_errors_doc = "warn"

View File

@ -52,7 +52,7 @@ We don't update the MSRV in a patch release, unless we really, really need to.
## Preparation ## Preparation
* [ ] run `scripts/generate_example_screenshots.sh` if needed * [ ] run `scripts/generate_example_screenshots.sh` if needed
* [ ] write a short release note that fits in a tweet * [ ] write a short release note that fits in a tweet
* [ ] record gif for `CHANGELOG.md` release note (and later twitter post) * [ ] record gif for `CHANGELOG.md` release note (and later bluesky post)
* [ ] update changelogs using `scripts/generate_changelog.py --version 0.x.0 --write` * [ ] update changelogs using `scripts/generate_changelog.py --version 0.x.0 --write`
* [ ] bump version numbers in workspace `Cargo.toml` * [ ] bump version numbers in workspace `Cargo.toml`
@ -87,7 +87,7 @@ I usually do this all on the `master` branch, but doing it in a release branch i
``` ```
## Announcements ## Announcements
* [ ] [twitter](https://x.com/ernerfeldt/status/1772665412225823105) * [ ] [Bluesky](https://bsky.app/profile/ernerfeldt.bsky.social)
* [ ] egui discord * [ ] egui discord
* [ ] [r/rust](https://www.reddit.com/r/rust/comments/1bocr5s/announcing_egui_027_with_improved_menus_and/) * [ ] [r/rust](https://www.reddit.com/r/rust/comments/1bocr5s/announcing_egui_027_with_improved_menus_and/)
* [ ] [r/programming](https://www.reddit.com/r/programming/comments/1bocsf6/announcing_egui_027_an_easytouse_crossplatform/) * [ ] [r/programming](https://www.reddit.com/r/programming/comments/1bocsf6/announcing_egui_027_an_easytouse_crossplatform/)

View File

@ -625,9 +625,6 @@ pub mod special_emojis {
/// The Github logo. /// The Github logo.
pub const GITHUB: char = ''; pub const GITHUB: char = '';
/// The Twitter bird.
pub const TWITTER: char = '';
/// The word `git`. /// The word `git`.
pub const GIT: char = ''; pub const GIT: char = '';

View File

@ -98,14 +98,14 @@ fn about_immediate_mode(ui: &mut egui::Ui) {
} }
fn links(ui: &mut egui::Ui) { fn links(ui: &mut egui::Ui) {
use egui::special_emojis::{GITHUB, TWITTER}; use egui::special_emojis::GITHUB;
ui.hyperlink_to( ui.hyperlink_to(
format!("{GITHUB} github.com/emilk/egui"), format!("{GITHUB} github.com/emilk/egui"),
"https://github.com/emilk/egui", "https://github.com/emilk/egui",
); );
ui.hyperlink_to( ui.hyperlink_to(
format!("{TWITTER} @ernerfeldt"), "@ernerfeldt.bsky.social",
"https://twitter.com/ernerfeldt", "https://bsky.app/profile/ernerfeldt.bsky.social",
); );
ui.hyperlink_to("📓 egui documentation", "https://docs.rs/egui/"); ui.hyperlink_to("📓 egui documentation", "https://docs.rs/egui/");
} }

View File

@ -237,10 +237,10 @@ impl DemoWindows {
}); });
ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), |ui| { ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), |ui| {
use egui::special_emojis::{GITHUB, TWITTER}; use egui::special_emojis::GITHUB;
ui.hyperlink_to( ui.hyperlink_to(
egui::RichText::new(TWITTER).size(font_size), egui::RichText::new("🦋").size(font_size),
"https://twitter.com/ernerfeldt", "https://bsky.app/profile/ernerfeldt.bsky.social",
); );
ui.hyperlink_to( ui.hyperlink_to(
egui::RichText::new(GITHUB).size(font_size), egui::RichText::new(GITHUB).size(font_size),
@ -264,14 +264,14 @@ impl DemoWindows {
ui.separator(); ui.separator();
use egui::special_emojis::{GITHUB, TWITTER}; use egui::special_emojis::GITHUB;
ui.hyperlink_to( ui.hyperlink_to(
format!("{GITHUB} egui on GitHub"), format!("{GITHUB} egui on GitHub"),
"https://github.com/emilk/egui", "https://github.com/emilk/egui",
); );
ui.hyperlink_to( ui.hyperlink_to(
format!("{TWITTER} @ernerfeldt"), "@ernerfeldt.bsky.social",
"https://twitter.com/ernerfeldt", "https://bsky.app/profile/ernerfeldt.bsky.social",
); );
ui.separator(); ui.separator();

View File

@ -200,7 +200,6 @@ fn special_char_name(chr: char) -> Option<&'static str> {
'\u{E600}' => Some("web-dribbble"), '\u{E600}' => Some("web-dribbble"),
'\u{E601}' => Some("web-stackoverflow"), '\u{E601}' => Some("web-stackoverflow"),
'\u{E602}' => Some("web-vimeo"), '\u{E602}' => Some("web-vimeo"),
'\u{E603}' => Some("web-twitter"),
'\u{E604}' => Some("web-facebook"), '\u{E604}' => Some("web-facebook"),
'\u{E605}' => Some("web-googleplus"), '\u{E605}' => Some("web-googleplus"),
'\u{E606}' => Some("web-pinterest"), '\u{E606}' => Some("web-pinterest"),