2020-12-10 22:52:51 +00:00
# Changelog for egui_glium
All notable changes to the `egui_glium` integration will be noted in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ).
2020-12-15 13:26:01 +00:00
2020-12-10 22:52:51 +00:00
## Unreleased
2021-01-17 14:16:00 +00:00
2021-02-07 16:06:42 +00:00
## 0.9.0 - 2021-02-07
* Nothing new
2021-01-17 14:16:00 +00:00
## 0.8.0 - 2021-01-17
2021-01-11 17:05:50 +00:00
### Fixed 🐛
2021-01-17 13:48:59 +00:00
* Fix a bug where key releases weren't sent to egui
2021-01-17 10:53:55 +00:00
* Fix `set_window_size` for non-native `pixels_per_point` .
2021-01-11 17:05:50 +00:00
2021-01-04 14:38:57 +00:00
## 0.7.0 - 2021-01-04
### Changed
* `http` `persistence` and `time` are now optional (and opt-in) features.
2020-12-26 21:43:29 +00:00
## 0.6.0 - 2020-12-26
2020-12-19 20:06:59 +00:00
### Added
* `egui_glium` will auto-save your app state every 30 seconds.
2020-12-22 14:20:38 +00:00
* `egui_glium` can now set windows as fixed size (e.g. the user can't resize the window). See `egui::App::is_resizable()` .
2020-12-19 20:06:59 +00:00
2020-12-10 17:35:48 +00:00
### Changed
2020-12-21 21:10:31 +00:00
* `egui_glium` will now save you app state to [a better directory ](https://docs.rs/directories-next/2.0.0/directories_next/struct.ProjectDirs.html#method.data_dir ).
2020-12-14 10:24:37 +00:00
* `egui_glium::run` : the parameter `app` now has signature `Box<dyn App>` (you need to add `Box::new(app)` to your code).
2020-12-21 21:10:31 +00:00
* Window title is now passed via the `trait` function `egui::App::name()` .
2020-12-14 10:24:37 +00:00
2020-12-15 20:58:14 +00:00
### Fixed 🐛
2020-12-21 21:10:31 +00:00
* Serialize window size in logical points instead of physical pixels.
* Window position is now restored on restart.
2020-12-15 13:26:01 +00:00
2020-12-14 10:24:37 +00:00
## 0.5.0 - 2020-12-13
### Changed
2020-12-10 17:35:48 +00:00
* FileStorage::from_path now takes `Into<Path>` instead of `String`
2020-12-15 13:26:01 +00:00
2020-12-10 22:52:51 +00:00
## 0.4.0 - 2020-11-28
Started changelog. Features:
* Input
* Painting
* Clipboard handling
* Open URL:s
* Simple JSON-backed storage