2020-12-10 22:52:51 +00:00
|
|
|
# Changelog for egui_web
|
2020-11-28 12:47:00 +00:00
|
|
|
|
|
|
|
All notable changes to the `egui_web` integration will be noted in this file.
|
|
|
|
|
2020-12-15 13:26:01 +00:00
|
|
|
|
2020-12-18 21:51:23 +00:00
|
|
|
## Unreleased
|
|
|
|
|
2021-08-25 19:28:42 +00:00
|
|
|
### Fixed 🐛
|
2021-08-28 06:37:07 +00:00
|
|
|
* Fix alpha blending for WebGL2 and WebGL1 with sRGB support backends, now having identical results as egui_glium.
|
|
|
|
* Fix use of egui on devices with both touch and mouse.
|
2021-08-25 19:28:42 +00:00
|
|
|
|
2021-08-24 14:47:10 +00:00
|
|
|
|
|
|
|
## 0.14.0 - 2021-08-24
|
|
|
|
|
2021-08-20 20:20:45 +00:00
|
|
|
### Added ⭐
|
|
|
|
* Added support for dragging and dropping files into the browser window.
|
|
|
|
|
2021-08-21 19:18:00 +00:00
|
|
|
### Fixed 🐛
|
|
|
|
* Made text thicker and less pixelated.
|
|
|
|
|
2021-06-24 18:00:06 +00:00
|
|
|
|
|
|
|
## 0.13.0 - 2021-06-24
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Changed 🔧
|
|
|
|
* Default to light visuals unless the system reports a preference for dark mode.
|
|
|
|
|
|
|
|
### Fixed 🐛
|
2021-06-04 21:03:48 +00:00
|
|
|
* Improve alpha blending, making fonts look much better (especially in light mode)
|
2021-05-11 17:25:31 +00:00
|
|
|
* Fix double-paste bug
|
|
|
|
|
2021-05-10 16:20:32 +00:00
|
|
|
|
|
|
|
## 0.12.0 - 2021-05-10
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Fixed 🐛
|
2021-04-24 09:01:44 +00:00
|
|
|
* Scroll faster when scrolling with mouse wheel.
|
|
|
|
|
2021-03-08 16:48:23 +00:00
|
|
|
|
2021-04-05 12:49:06 +00:00
|
|
|
## 0.11.0 - 2021-04-05
|
|
|
|
|
|
|
|
### Added ⭐
|
2021-03-27 09:37:31 +00:00
|
|
|
* [Fix mobile and IME text input](https://github.com/emilk/egui/pull/253)
|
2021-03-08 16:48:23 +00:00
|
|
|
* Hold down a modifier key when clicking a link to open it in a new tab.
|
|
|
|
|
2021-03-27 09:37:31 +00:00
|
|
|
Contributors: [n2](https://github.com/n2)
|
|
|
|
|
2021-02-28 19:01:18 +00:00
|
|
|
## 0.10.0 - 2021-02-28
|
2021-02-12 16:57:53 +00:00
|
|
|
### Added ⭐
|
|
|
|
* You can control the maximum egui canvas size with `App::max_size_points`.
|
|
|
|
|
2021-02-07 16:06:42 +00:00
|
|
|
|
|
|
|
## 0.9.0 - 2021-02-07
|
2021-01-25 17:50:19 +00:00
|
|
|
### Added ⭐
|
|
|
|
* Right-clicks will no longer open browser context menu.
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Fixed 🐛
|
2021-01-25 17:50:19 +00:00
|
|
|
* Fix a bug where one couldn't select items in a combo box on a touch screen.
|
|
|
|
|
2021-01-17 14:16:00 +00:00
|
|
|
|
|
|
|
## 0.8.0 - 2021-01-17
|
2021-01-16 00:30:00 +00:00
|
|
|
### Added ⭐
|
|
|
|
* WebGL2 is now supported, with improved texture sampler. WebGL1 will be used as a fallback.
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Changed 🔧
|
2021-01-16 00:30:00 +00:00
|
|
|
* Slightly improved alpha-blending (work-around for non-existing linear-space blending).
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Fixed 🐛
|
2021-01-17 11:22:19 +00:00
|
|
|
* Call prevent_default for arrow keys when entering text
|
|
|
|
|
2021-01-04 14:38:57 +00:00
|
|
|
|
|
|
|
## 0.7.0 - 2021-01-04
|
2021-06-07 18:56:18 +00:00
|
|
|
### Changed 🔧
|
2021-01-04 14:38:57 +00:00
|
|
|
* `http` and `persistence` are now optional (and opt-in) features.
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Fixed 🐛
|
2021-01-04 14:38:57 +00:00
|
|
|
* egui_web now compiled without `RUSTFLAGS=--cfg=web_sys_unstable_apis`, but copy/paste won't work.
|
|
|
|
|
|
|
|
|
2020-12-26 21:43:29 +00:00
|
|
|
## 0.6.0 - 2020-12-26
|
2020-12-19 19:50:00 +00:00
|
|
|
### Added ⭐
|
|
|
|
* Auto-save of app state to local storage
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Changed 🔧
|
2020-12-18 21:51:23 +00:00
|
|
|
* Set a maximum canvas size to alleviate performance issues on some machines
|
2020-12-19 20:15:07 +00:00
|
|
|
* Simplify `egui_web::start` arguments
|
2020-12-18 21:51:23 +00:00
|
|
|
|
2020-11-28 12:47:00 +00:00
|
|
|
## 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
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Changed 🔧
|
2020-11-28 12:47:00 +00:00
|
|
|
* Automatic repaint every second
|
|
|
|
|
2021-06-07 18:56:18 +00:00
|
|
|
### Fixed 🐛
|
2020-11-28 12:47:00 +00:00
|
|
|
* Web browser zooming should now work as expected
|
|
|
|
* A bunch of bug fixes related to keyboard events
|