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
|
||||
|
||||
## 0.6.0 - 2020-12-26
|
||||
|
||||
### Added ⭐
|
||||
|
||||
* 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.
|
||||
* `Response` now contains the `Id` of the widget it pertains to.
|
||||
* `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 🔧
|
||||
|
||||
|
@ -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
|
||||
* `ui.columns`: Columns now defaults to justified top-to-down layouts.
|
||||
* Rename `Sense::nothing()` to `Sense::hover()`.
|
||||
* Replaced `parking_lot` dependency with `atomic_refcell` by default.
|
||||
|
||||
### Fixed 🐛
|
||||
|
||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -582,7 +582,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
|
|||
|
||||
[[package]]
|
||||
name = "egui"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"atomic_refcell",
|
||||
|
@ -607,7 +607,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "egui_glium"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clipboard",
|
||||
|
@ -621,7 +621,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "egui_web"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"egui",
|
||||
"js-sys",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "egui"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
description = "Simple, portable immediate mode GUI library for Rust"
|
||||
edition = "2018"
|
||||
|
|
|
@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 0.6.0 - 2020-12-26
|
||||
|
||||
### Added
|
||||
|
||||
* `egui_glium` will auto-save your app state every 30 seconds.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "egui_glium"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
description = "Bindings for using Egui natively using the glium library"
|
||||
edition = "2018"
|
||||
|
@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
|
|||
chrono = { version = "0.4" }
|
||||
clipboard = "0.5"
|
||||
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"
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
|
|
|
@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 0.6.0 - 2020-12-26
|
||||
|
||||
### Added ⭐
|
||||
|
||||
* Auto-save of app state to local storage
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "egui_web"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
description = "Bindings for compiling Egui code to WASM for a web page"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
|
|||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
egui = { version = "0.5.0", path = "../egui", features = ["serde"] }
|
||||
egui = { version = "0.6.0", path = "../egui", features = ["serde"] }
|
||||
js-sys = "0.3"
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
|
|
Loading…
Reference in a new issue