Release Egui 0.6.0
This commit is contained in:
parent
085485b2f9
commit
dca7f85f21
7 changed files with 16 additions and 9 deletions
|
@ -9,6 +9,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.6.0 - 2020-12-26
|
||||||
|
|
||||||
### Added ⭐
|
### Added ⭐
|
||||||
|
|
||||||
* Turn off `Window` title bars with `window.title_bar(false)`.
|
* Turn off `Window` title bars with `window.title_bar(false)`.
|
||||||
|
@ -21,7 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
* Add `egui::math::Rot2`: rotation helper.
|
* Add `egui::math::Rot2`: rotation helper.
|
||||||
* `Response` now contains the `Id` of the widget it pertains to.
|
* `Response` now contains the `Id` of the widget it pertains to.
|
||||||
* `ui.allocate_response` that allocates space and checks for interactions.
|
* `ui.allocate_response` that allocates space and checks for interactions.
|
||||||
* Add response.interact(sense), e.g. to check for clicks on labels.
|
* Add `response.interact(sense)`, e.g. to check for clicks on labels.
|
||||||
|
|
||||||
### Changed 🔧
|
### Changed 🔧
|
||||||
|
|
||||||
|
@ -38,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
* Expand `Window` + `Resize` containers to be large enough for last frames content
|
* Expand `Window` + `Resize` containers to be large enough for last frames content
|
||||||
* `ui.columns`: Columns now defaults to justified top-to-down layouts.
|
* `ui.columns`: Columns now defaults to justified top-to-down layouts.
|
||||||
* Rename `Sense::nothing()` to `Sense::hover()`.
|
* Rename `Sense::nothing()` to `Sense::hover()`.
|
||||||
|
* Replaced `parking_lot` dependency with `atomic_refcell` by default.
|
||||||
|
|
||||||
### Fixed 🐛
|
### Fixed 🐛
|
||||||
|
|
||||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -582,7 +582,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui"
|
name = "egui"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"atomic_refcell",
|
"atomic_refcell",
|
||||||
|
@ -607,7 +607,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui_glium"
|
name = "egui_glium"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clipboard",
|
"clipboard",
|
||||||
|
@ -621,7 +621,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui_web"
|
name = "egui_web"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"egui",
|
"egui",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui"
|
name = "egui"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||||
description = "Simple, portable immediate mode GUI library for Rust"
|
description = "Simple, portable immediate mode GUI library for Rust"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.6.0 - 2020-12-26
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
* `egui_glium` will auto-save your app state every 30 seconds.
|
* `egui_glium` will auto-save your app state every 30 seconds.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui_glium"
|
name = "egui_glium"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
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"
|
||||||
|
@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
|
||||||
chrono = { version = "0.4" }
|
chrono = { version = "0.4" }
|
||||||
clipboard = "0.5"
|
clipboard = "0.5"
|
||||||
directories-next = "2"
|
directories-next = "2"
|
||||||
egui = { version = "0.5.0", path = "../egui", features = ["serde", "serde_json"] }
|
egui = { version = "0.6.0", path = "../egui", features = ["serde", "serde_json"] }
|
||||||
glium = "0.29"
|
glium = "0.29"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|
|
@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.6.0 - 2020-12-26
|
||||||
|
|
||||||
### Added ⭐
|
### Added ⭐
|
||||||
|
|
||||||
* Auto-save of app state to local storage
|
* Auto-save of app state to local storage
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui_web"
|
name = "egui_web"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||||
description = "Bindings for compiling Egui code to WASM for a web page"
|
description = "Bindings for compiling Egui code to WASM for a web page"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
|
||||||
crate-type = ["cdylib", "rlib"]
|
crate-type = ["cdylib", "rlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
egui = { version = "0.5.0", path = "../egui", features = ["serde"] }
|
egui = { version = "0.6.0", path = "../egui", features = ["serde"] }
|
||||||
js-sys = "0.3"
|
js-sys = "0.3"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|
Loading…
Reference in a new issue