Browse Source

Update winit to 0.26 (#930)

Also update glium, glutin and rfd
pull/990/head
Jay Oster 3 years ago
committed by GitHub
parent
commit
dd99f68e82
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 712
      Cargo.lock
  2. 2
      eframe/Cargo.toml
  3. 1
      egui-winit/CHANGELOG.md
  4. 2
      egui-winit/Cargo.toml
  5. 2
      egui_demo_app/src/main.rs
  6. 1
      egui_glium/CHANGELOG.md
  7. 2
      egui_glium/Cargo.toml
  8. 1
      egui_glow/CHANGELOG.md
  9. 2
      egui_glow/Cargo.toml

712
Cargo.lock

File diff suppressed because it is too large

2
eframe/Cargo.toml

@ -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"]

1
egui-winit/CHANGELOG.md

@ -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`.

2
egui-winit/Cargo.toml

@ -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 }

2
egui_demo_app/src/main.rs

@ -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()
};

1
egui_glium/CHANGELOG.md

@ -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

2
egui_glium/Cargo.toml

@ -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"] }

1
egui_glow/CHANGELOG.md

@ -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

2
egui_glow/Cargo.toml

@ -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"] }

Loading…
Cancel
Save