egui_glium and eframe 0.13.1: fix http feature and docs

This commit is contained in:
Emil Ernerfeldt 2021-06-24 20:36:36 +02:00
parent 4f6dac27e6
commit ccecad88b1
5 changed files with 16 additions and 6 deletions

4
Cargo.lock generated
View file

@ -766,7 +766,7 @@ checksum = "ee2626afccd7561a06cf1367e2950c4718ea04565e20fb5029b6c7d8ad09abcf"
[[package]] [[package]]
name = "eframe" name = "eframe"
version = "0.13.0" version = "0.13.1"
dependencies = [ dependencies = [
"egui", "egui",
"egui_glium", "egui_glium",
@ -807,7 +807,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_glium" name = "egui_glium"
version = "0.13.0" version = "0.13.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"copypasta", "copypasta",

View file

@ -5,6 +5,11 @@ All notable changes to the `eframe` crate.
## Unreleased ## Unreleased
## 0.13.1 - 2021-06-24
* Fix `http` feature flag and docs
## 0.13.0 - 2021-06-24 ## 0.13.0 - 2021-06-24
* `App::setup` now takes a `Frame` and `Storage` by argument. * `App::setup` now takes a `Frame` and `Storage` by argument.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "eframe" name = "eframe"
version = "0.13.0" version = "0.13.1"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"] authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "egui framework - write GUI apps that compiles to web and/or natively" description = "egui framework - write GUI apps that compiles to web and/or natively"
edition = "2018" edition = "2018"
@ -28,7 +28,7 @@ epi = { version = "0.13.0", path = "../epi" }
# For compiling natively: # For compiling natively:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [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: # For compiling to web:
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]

View file

@ -6,6 +6,11 @@ All notable changes to the `egui_glium` integration will be noted in this file.
## Unreleased ## Unreleased
## 0.13.1 - 2021-06-24
* Fix `http` feature flag and docs
## 0.13.0 - 2021-06-24 ## 0.13.0 - 2021-06-24
* Add `EguiGlium::is_quit_event` to replace `control_flow` arguemnt to `EguiGlium::on_event`. * Add `EguiGlium::is_quit_event` to replace `control_flow` arguemnt to `EguiGlium::on_event`.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "egui_glium" name = "egui_glium"
version = "0.13.0" version = "0.13.1"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"] authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Bindings for using egui natively using the glium library" description = "Bindings for using egui natively using the glium library"
edition = "2018" edition = "2018"
@ -48,7 +48,7 @@ default = ["default_fonts"]
# If set, egui will use `include_bytes!` to bundle some 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. # If you plan on specifying your own fonts you may disable this feature.
default_fonts = ["egui/default_fonts"] default_fonts = ["egui/default_fonts"]
http = ["ureq"] http = ["epi/http", "ureq"]
persistence = [ persistence = [
"directories-next", "directories-next",
"egui/persistence", "egui/persistence",