mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Release 0.4.0 of egui, egui_web and egui_glium
This commit is contained in:
22
egui_web/CHANGELOG.md
Normal file
22
egui_web/CHANGELOG.md
Normal file
@@ -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]
|
||||
name = "egui_web"
|
||||
version = "0.3.0"
|
||||
version = "0.4.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.3.0", path = "../egui", features = ["serde"] }
|
||||
egui = { version = "0.4.0", path = "../egui", features = ["serde"] }
|
||||
js-sys = "0.3"
|
||||
parking_lot = "0.11"
|
||||
serde = "1"
|
||||
|
||||
Reference in New Issue
Block a user