From 97bdb2851cc2fc5341e069a5076c0822da4b7b4b Mon Sep 17 00:00:00 2001 From: Joshua Holmes <91363480+joshua-holmes@users.noreply.github.com> Date: Wed, 22 Jan 2025 06:28:23 -0800 Subject: [PATCH] Remove references to glium (#5626) * Remove references to `glium` backend, because it is deprecated since egui v0.18.0 * [x] I have followed the instructions in the PR template --- crates/eframe/CHANGELOG.md | 2 +- crates/eframe/src/native/file_storage.rs | 2 +- crates/egui_demo_lib/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index cbb6cf41..0ddfa4b0 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog for eframe All notable changes to the `eframe` crate. -NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/CHANGELOG.md), [`egui_glow`](../egui_glow/CHANGELOG.md),and [`egui-wgpu`](../egui-wgpu/CHANGELOG.md) have their own changelogs! +NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glow`](../egui_glow/CHANGELOG.md),and [`egui-wgpu`](../egui-wgpu/CHANGELOG.md) have their own changelogs! This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. diff --git a/crates/eframe/src/native/file_storage.rs b/crates/eframe/src/native/file_storage.rs index 3cb33851..7fde2d28 100644 --- a/crates/eframe/src/native/file_storage.rs +++ b/crates/eframe/src/native/file_storage.rs @@ -96,7 +96,7 @@ fn roaming_appdata() -> Option { // ---------------------------------------------------------------------------- /// A key-value store backed by a [RON](https://github.com/ron-rs/ron) file on disk. -/// Used to restore egui state, glium window position/size and app state. +/// Used to restore egui state, glow window position/size and app state. pub struct FileStorage { ron_filepath: PathBuf, kv: HashMap, diff --git a/crates/egui_demo_lib/Cargo.toml b/crates/egui_demo_lib/Cargo.toml index 047ed305..0e0299f1 100644 --- a/crates/egui_demo_lib/Cargo.toml +++ b/crates/egui_demo_lib/Cargo.toml @@ -10,7 +10,7 @@ license.workspace = true readme = "README.md" repository = "https://github.com/emilk/egui/tree/master/crates/egui_demo_lib" categories = ["gui", "graphics"] -keywords = ["glium", "egui", "gui", "gamedev"] +keywords = ["glow", "egui", "gui", "gamedev"] include = [ "../LICENSE-APACHE", "../LICENSE-MIT",