1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-03 07:10:04 -04:00

egui_glium::run parameter app now has signature Box<dyn App>

This commit is contained in:
Emil Ernerfeldt
2020-12-14 11:24:37 +01:00
parent 0f7a5287b2
commit 09aa905f7c
4 changed files with 9 additions and 7 deletions

View File

@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
* `egui_glium::run`: the parameter `app` now has signature `Box<dyn App>` (you need to add `Box::new(app)` to your code).
## 0.5.0 - 2020-12-13
### Changed
* FileStorage::from_path now takes `Into<Path>` instead of `String`
## 0.4.0 - 2020-11-28