Release 0.4.0 of egui, egui_web and egui_glium
This commit is contained in:
parent
861573c497
commit
a7e7826d2c
|
|
@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.4.0 - 2020-11-28
|
||||||
|
|
||||||
### Added ⭐
|
### Added ⭐
|
||||||
|
|
||||||
* `TextEdit` improvements:
|
* `TextEdit` improvements:
|
||||||
|
|
|
||||||
|
|
@ -569,7 +569,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui"
|
name = "egui"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"criterion",
|
"criterion",
|
||||||
|
|
@ -581,7 +581,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui_glium"
|
name = "egui_glium"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clipboard",
|
"clipboard",
|
||||||
|
|
@ -594,7 +594,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui_web"
|
name = "egui_web"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"egui",
|
"egui",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui"
|
name = "egui"
|
||||||
version = "0.3.0"
|
version = "0.4.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"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui_glium"
|
name = "egui_glium"
|
||||||
version = "0.3.0"
|
version = "0.4.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"
|
||||||
|
|
@ -15,7 +15,7 @@ include = [ "**/*.rs", "Cargo.toml"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4" }
|
chrono = { version = "0.4" }
|
||||||
clipboard = "0.5"
|
clipboard = "0.5"
|
||||||
egui = { version = "0.3.0", path = "../egui", features = ["serde", "serde_json"] }
|
egui = { version = "0.4.0", path = "../egui", features = ["serde", "serde_json"] }
|
||||||
glium = "0.28"
|
glium = "0.28"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
# Egui Changelog
|
||||||
|
|
||||||
|
All notable changes to the `egui_web` integration will be noted in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## 0.4.0 - 2020-11-28
|
||||||
|
|
||||||
|
### Added ⭐
|
||||||
|
|
||||||
|
* A simple HTTP fetch API (wraps `web_sys`).
|
||||||
|
* Add ability to request a repaint
|
||||||
|
* Copy/cut/paste suppoert
|
||||||
|
|
||||||
|
### Changed ⭐
|
||||||
|
|
||||||
|
* Automatic repaint every second
|
||||||
|
|
||||||
|
### Fixed ⭐
|
||||||
|
|
||||||
|
* Web browser zooming should now work as expected
|
||||||
|
* A bunch of bug fixes related to keyboard events
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "egui_web"
|
name = "egui_web"
|
||||||
version = "0.3.0"
|
version = "0.4.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.3.0", path = "../egui", features = ["serde"] }
|
egui = { version = "0.4.0", path = "../egui", features = ["serde"] }
|
||||||
js-sys = "0.3"
|
js-sys = "0.3"
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue