Update winit to 0.26 (#930)

Also update glium, glutin and rfd
This commit is contained in:
Jay Oster 2021-12-20 13:44:53 -08:00 committed by GitHub
parent 214d2b5d4f
commit dd99f68e82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 351 additions and 380 deletions

718
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -38,7 +38,7 @@ egui_web = { version = "0.15.0", path = "../egui_web", default-features = false
[dev-dependencies]
image = { version = "0.23", default-features = false, features = ["png"] }
rfd = "0.5.0"
rfd = "0.6"
[features]
default = ["default_fonts", "egui_glium"]

View file

@ -7,6 +7,7 @@ All notable changes to the `egui-winit` integration will be noted in this file.
* Add helper `EpiIntegration` ([#871](https://github.com/emilk/egui/pull/871)).
* Fix shift key getting stuck enabled with the X11 option `shift:both_capslock` enabled ([#849](https://github.com/emilk/egui/pull/849)).
* Remove `State::is_quit_event` and `State::is_quit_shortcut` ([#881](https://github.com/emilk/egui/pull/881)).
* Updated `winit` to 0.26 ([#930](https://github.com/emilk/egui/pull/930)).
## 0.15.0 - 2021-10-24
First stand-alone release. Previously part of `egui_glium`.

View file

@ -22,7 +22,7 @@ all-features = true
[dependencies]
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] }
winit = "0.25"
winit = "0.26"
epi = { version = "0.15.0", path = "../epi", optional = true }

View file

@ -8,7 +8,7 @@ fn main() {
let app = egui_demo_lib::WrapApp::default();
let options = eframe::NativeOptions {
// Let's show off that we support transparent windows
transparent: true,
// transparent: true,
drag_and_drop_support: true,
..Default::default()
};

View file

@ -5,6 +5,7 @@ All notable changes to the `egui_glium` integration will be noted in this file.
## Unreleased
* Simplify `EguiGlium` interface ([#871](https://github.com/emilk/egui/pull/871)).
* Remove `EguiGlium::is_quit_event` ([#881](https://github.com/emilk/egui/pull/881)).
* Updated `glium` to 0.31 ([#930](https://github.com/emilk/egui/pull/930)).
## 0.15.0 - 2021-10-24

View file

@ -26,7 +26,7 @@ egui = { version = "0.15.0", path = "../egui", default-features = false, feature
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false, features = ["epi"] }
epi = { version = "0.15.0", path = "../epi", optional = true }
glium = "0.30"
glium = "0.31"
[dev-dependencies]
image = { version = "0.23", default-features = false, features = ["png"] }

View file

@ -6,6 +6,7 @@ All notable changes to the `egui_glow` integration will be noted in this file.
* Make winit/glutin an optional dependency ([#868](https://github.com/emilk/egui/pull/868)).
* Simplify `EguiGlow` interface ([#871](https://github.com/emilk/egui/pull/871)).
* Remove `EguiGlow::is_quit_event` ([#881](https://github.com/emilk/egui/pull/881)).
* Updated `glutin` to 0.28 ([#930](https://github.com/emilk/egui/pull/930)).
## 0.15.0 - 2021-10-24

View file

@ -30,7 +30,7 @@ memoffset = "0.6"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false, features = ["epi"], optional = true }
glutin = { version = "0.27.0", optional = true }
glutin = { version = "0.28.0", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features=["console"] }