From ccecad88b13e62c53d606f781df1f41625937070 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 24 Jun 2021 20:36:36 +0200 Subject: [PATCH] egui_glium and eframe 0.13.1: fix http feature and docs --- Cargo.lock | 4 ++-- eframe/CHANGELOG.md | 5 +++++ eframe/Cargo.toml | 4 ++-- egui_glium/CHANGELOG.md | 5 +++++ egui_glium/Cargo.toml | 4 ++-- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e2d17653..5fae169f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -766,7 +766,7 @@ checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf" [[package]] name = "eframe" -version = "0.13.0" +version = "0.13.1" dependencies = [ "egui", "egui_glium", @@ -807,7 +807,7 @@ dependencies = [ [[package]] name = "egui_glium" -version = "0.13.0" +version = "0.13.1" dependencies = [ "chrono", "copypasta", diff --git a/eframe/CHANGELOG.md b/eframe/CHANGELOG.md index 1e05697b..570eefbe 100644 --- a/eframe/CHANGELOG.md +++ b/eframe/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to the `eframe` crate. ## Unreleased +## 0.13.1 - 2021-06-24 + +* Fix `http` feature flag and docs + + ## 0.13.0 - 2021-06-24 * `App::setup` now takes a `Frame` and `Storage` by argument. diff --git a/eframe/Cargo.toml b/eframe/Cargo.toml index cddfd7dc..6e190df3 100644 --- a/eframe/Cargo.toml +++ b/eframe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eframe" -version = "0.13.0" +version = "0.13.1" authors = ["Emil Ernerfeldt "] description = "egui framework - write GUI apps that compiles to web and/or natively" edition = "2018" @@ -28,7 +28,7 @@ epi = { version = "0.13.0", path = "../epi" } # For compiling natively: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -egui_glium = { version = "0.13.0", path = "../egui_glium", default-features = false } +egui_glium = { version = "0.13.1", path = "../egui_glium", default-features = false } # For compiling to web: [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/egui_glium/CHANGELOG.md b/egui_glium/CHANGELOG.md index 1ccf10ad..4746529c 100644 --- a/egui_glium/CHANGELOG.md +++ b/egui_glium/CHANGELOG.md @@ -6,6 +6,11 @@ All notable changes to the `egui_glium` integration will be noted in this file. ## Unreleased +## 0.13.1 - 2021-06-24 + +* Fix `http` feature flag and docs + + ## 0.13.0 - 2021-06-24 * Add `EguiGlium::is_quit_event` to replace `control_flow` arguemnt to `EguiGlium::on_event`. diff --git a/egui_glium/Cargo.toml b/egui_glium/Cargo.toml index dc5102d7..fe9d2a06 100644 --- a/egui_glium/Cargo.toml +++ b/egui_glium/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_glium" -version = "0.13.0" +version = "0.13.1" authors = ["Emil Ernerfeldt "] description = "Bindings for using egui natively using the glium library" edition = "2018" @@ -48,7 +48,7 @@ default = ["default_fonts"] # If set, egui will use `include_bytes!` to bundle some fonts. # If you plan on specifying your own fonts you may disable this feature. default_fonts = ["egui/default_fonts"] -http = ["ureq"] +http = ["epi/http", "ureq"] persistence = [ "directories-next", "egui/persistence",