From 96be848e4209687ee941554c216797aeb2c4f0ee Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 18 Oct 2021 20:19:43 +0200 Subject: [PATCH] rename egui_template to eframe_template --- README.md | 2 +- eframe/README.md | 2 +- eframe/src/lib.rs | 2 +- egui/src/lib.rs | 4 ++-- egui_web/README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 119bc9fa..9329b633 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Sections: ## Quick start -If you just want to write a GUI application in Rust (for the web or for native), go to and follow the instructions there! +If you just want to write a GUI application in Rust (for the web or for native), go to and follow the instructions there! If you want to integrate egui into an existing engine, go to the [Integrations](#integrations) section. diff --git a/eframe/README.md b/eframe/README.md index b811c04f..3502dc0d 100644 --- a/eframe/README.md +++ b/eframe/README.md @@ -8,7 +8,7 @@ `eframe` is the official framework library for writing apps using [`egui`](https://github.com/emilk/egui). The app can be compiled both to run natively (cross platform) or be compiled to a web app (using WASM). -To get started, go to and follow the instructions there! +To get started, go to and follow the instructions there! --- diff --git a/eframe/src/lib.rs b/eframe/src/lib.rs index 1f330f76..19bb1a41 100644 --- a/eframe/src/lib.rs +++ b/eframe/src/lib.rs @@ -4,7 +4,7 @@ //! and are happy with just using egui for all visuals, //! Then `eframe` is for you! //! -//! To get started, look at . +//! To get started, look at . //! //! You write your application code for [`epi`] (implementing [`epi::App`]) and then //! call from [`crate::run_native`] your `main.rs`, and/or call `eframe::start_web` from your `lib.rs`. diff --git a/egui/src/lib.rs b/egui/src/lib.rs index 84d0e560..c88bf6b4 100644 --- a/egui/src/lib.rs +++ b/egui/src/lib.rs @@ -5,7 +5,7 @@ //! `egui` is in heavy development, with each new version having breaking changes. //! You need to have rust 1.54.0 or later to use `egui`. //! -//! To quickly get started with egui, you can take a look at [`egui_template`](https://github.com/emilk/egui_template) +//! To quickly get started with egui, you can take a look at [`eframe_template`](https://github.com/emilk/eframe_template) //! which uses [`eframe`](https://docs.rs/eframe). //! //! To create a GUI using egui you first need a [`CtxRef`] (by convention referred to by `ctx`). @@ -16,7 +16,7 @@ //! //! To see what is possible to build with egui you can check out the online demo at . //! -//! If you like the "learning by doing" approach, clone and get started using egui right away. +//! If you like the "learning by doing" approach, clone and get started using egui right away. //! //! ### A simple example //! diff --git a/egui_web/README.md b/egui_web/README.md index 74b5c80e..78d18b12 100644 --- a/egui_web/README.md +++ b/egui_web/README.md @@ -10,7 +10,7 @@ This crates allows you to compile GUI code written with [egui](https://crates.io [Run the web demo](https://emilk.github.io/egui/index.html) to try it now. -Check out [egui_template](https://github.com/emilk/egui_template) for an example of how to set it up. +Check out [eframe_template](https://github.com/emilk/eframe_template) for an example of how to set it up. ## Downsides with using egui on the web