From 20bf0d97a3b4318c86fe059f49da358d89037950 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sat, 7 Oct 2023 18:53:30 +0200 Subject: [PATCH] Fix some links --- .github/workflows/{typos.yml => spelling_and_links.yml} | 4 ++-- CHANGELOG.md | 4 ++-- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{typos.yml => spelling_and_links.yml} (86%) diff --git a/.github/workflows/typos.yml b/.github/workflows/spelling_and_links.yml similarity index 86% rename from .github/workflows/typos.yml rename to .github/workflows/spelling_and_links.yml index 89054542067..35ea1d7c43f 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/spelling_and_links.yml @@ -1,4 +1,4 @@ -name: Spell Check and link +name: Check spelling and links on: [pull_request] jobs: @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - uses: jprochazk/linkinator-action@main with: - linksToSkip: "https://crates.io/crates/.*" # Avoid crates.io rate-limiting + linksToSkip: "https://crates.io/crates/.*, http://localhost:.*" # Avoid crates.io rate-limiting retry: true retryErrors: true retryErrorsCount: 5 diff --git a/CHANGELOG.md b/CHANGELOG.md index e57ab538931..8e4da41862c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -329,7 +329,7 @@ egui_extras::install_image_loaders(egui_ctx); ### Contributors 🙏 * [4JX](https://github.com/4JX) -* [AlexxxRu](https://github.com/AlexxxRu) +* [a-liashenko](https://github.com/a-liashenko) * [ascclemens](https://github.com/ascclemens) * [awaken1ng](https://github.com/awaken1ng) * [bigfarts](https://github.com/bigfarts) @@ -425,7 +425,7 @@ egui_extras::install_image_loaders(egui_ctx); * [4JX](https://github.com/4JX) * [55nknown](https://github.com/55nknown) * [AlanRace](https://github.com/AlanRace) -* [AlexxxRu](https://github.com/AlexxxRu) +* [a-liashenko](https://github.com/a-liashenko) * [awaken1ng](https://github.com/awaken1ng) * [BctfN0HUK7Yg](https://github.com/BctfN0HUK7Yg) * [Bromeon](https://github.com/Bromeon) diff --git a/README.md b/README.md index cbfa92eb421..520304b14b7 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ Yes! You can customize the colors, spacing, fonts and sizes of everything using This is not yet as powerful as say CSS, [but this is going to improve soon](https://github.com/emilk/egui/issues/3284). -Here is an example (from https://github.com/AlexxxRu/TinyPomodoro): +Here is an example (from https://github.com/a-liashenko/TinyPomodoro): @@ -332,7 +332,7 @@ If you want to embed 3D into an egui view there are two options. #### `Shape::Callback` Example: -* +* `Shape::Callback` will call your code when egui gets painted, to show anything using whatever the background rendering context is. When using [`eframe`](https://github.com/emilk/egui/tree/master/crates/eframe) this will be [`glow`](https://github.com/grovesNL/glow). Other integrations will give you other rendering contexts, if they support `Shape::Callback` at all.