rename egui_template to eframe_template

This commit is contained in:
Emil Ernerfeldt 2021-10-18 20:19:43 +02:00
parent 2af2e8bad5
commit 96be848e42
5 changed files with 6 additions and 6 deletions

View file

@ -30,7 +30,7 @@ Sections:
## Quick start ## Quick start
If you just want to write a GUI application in Rust (for the web or for native), go to <https://github.com/emilk/egui_template/> and follow the instructions there! If you just want to write a GUI application in Rust (for the web or for native), go to <https://github.com/emilk/eframe_template/> and follow the instructions there!
If you want to integrate egui into an existing engine, go to the [Integrations](#integrations) section. If you want to integrate egui into an existing engine, go to the [Integrations](#integrations) section.

View file

@ -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). `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 <https://github.com/emilk/egui_template/> and follow the instructions there! To get started, go to <https://github.com/emilk/eframe_template/> and follow the instructions there!
--- ---

View file

@ -4,7 +4,7 @@
//! and are happy with just using egui for all visuals, //! and are happy with just using egui for all visuals,
//! Then `eframe` is for you! //! Then `eframe` is for you!
//! //!
//! To get started, look at <https://github.com/emilk/egui_template>. //! To get started, look at <https://github.com/emilk/eframe_template>.
//! //!
//! You write your application code for [`epi`] (implementing [`epi::App`]) and then //! 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`. //! call from [`crate::run_native`] your `main.rs`, and/or call `eframe::start_web` from your `lib.rs`.

View file

@ -5,7 +5,7 @@
//! `egui` is in heavy development, with each new version having breaking changes. //! `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`. //! 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). //! which uses [`eframe`](https://docs.rs/eframe).
//! //!
//! To create a GUI using egui you first need a [`CtxRef`] (by convention referred to by `ctx`). //! 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 <https://emilk.github.io/egui/#demo>. //! To see what is possible to build with egui you can check out the online demo at <https://emilk.github.io/egui/#demo>.
//! //!
//! If you like the "learning by doing" approach, clone <https://github.com/emilk/egui_template> and get started using egui right away. //! If you like the "learning by doing" approach, clone <https://github.com/emilk/eframe_template> and get started using egui right away.
//! //!
//! ### A simple example //! ### A simple example
//! //!

View file

@ -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. [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 ## Downsides with using egui on the web