1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Release 0.11.0 - Optimization, screen reader & new layout logic

This commit is contained in:
Emil Ernerfeldt
2021-04-05 14:49:06 +02:00
parent c96819e95e
commit d544c3dd8b
14 changed files with 47 additions and 61 deletions

View File

@@ -2,88 +2,67 @@
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/).
## Unreleased
### Added ⭐
## 0.11.0 - 2021-04-05
### Added ⭐
* [Fix mobile and IME text input](https://github.com/emilk/egui/pull/253)
* Hold down a modifier key when clicking a link to open it in a new tab.
Contributors: [n2](https://github.com/n2)
## 0.10.0 - 2021-02-28
### Added ⭐
* You can control the maximum egui canvas size with `App::max_size_points`.
## 0.9.0 - 2021-02-07
### Added ⭐
* Right-clicks will no longer open browser context menu.
### Fixed ⭐
* Fix a bug where one couldn't select items in a combo box on a touch screen.
## 0.8.0 - 2021-01-17
### Added ⭐
* WebGL2 is now supported, with improved texture sampler. WebGL1 will be used as a fallback.
### Changed
* Slightly improved alpha-blending (work-around for non-existing linear-space blending).
### Fixed ⭐
* Call prevent_default for arrow keys when entering text
## 0.7.0 - 2021-01-04
### Changed
* `http` and `persistence` are now optional (and opt-in) features.
### Fixed ⭐
* egui_web now compiled without `RUSTFLAGS=--cfg=web_sys_unstable_apis`, but copy/paste won't work.
## 0.6.0 - 2020-12-26
### Added ⭐
* Auto-save of app state to local storage
### Changed ⭐
* Set a maximum canvas size to alleviate performance issues on some machines
* Simplify `egui_web::start` arguments
## 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

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_web"
version = "0.10.0"
version = "0.11.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"
@@ -22,8 +22,8 @@ include = [
crate-type = ["cdylib", "rlib"]
[dependencies]
egui = { version = "0.10.0", path = "../egui" }
epi = { version = "0.10.0", path = "../epi" }
egui = { version = "0.11.0", path = "../egui" }
epi = { version = "0.11.0", path = "../epi" }
js-sys = "0.3"
ron = { version = "0.6", optional = true }
serde = { version = "1", optional = true }