mirror of https://github.com/emilk/egui.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.8 KiB
121 lines
3.8 KiB
3 years ago
|
# Legacy changelog for egui_web
|
||
|
Between versions 0.17 and 0.18, `egui_web` was absorbed into `eframe`. Most of this changelog was then merged into [the `eframe` changelog](../eframe/CHANGELOG.md). This changelog is now only kept for historical reasons.
|
||
4 years ago
|
|
||
4 years ago
|
|
||
3 years ago
|
|
||
|
## 0.17.0 - 2022-02-22
|
||
3 years ago
|
* The default painter is now glow instead of WebGL ([#1020](https://github.com/emilk/egui/pull/1020)).
|
||
|
* Made the WebGL painter opt-in ([#1020](https://github.com/emilk/egui/pull/1020)).
|
||
3 years ago
|
* Fixed glow failure on Chromium ([#1092](https://github.com/emilk/egui/pull/1092)).
|
||
3 years ago
|
* Shift-scroll will now result in horizontal scrolling ([#1136](https://github.com/emilk/egui/pull/1136)).
|
||
3 years ago
|
* Updated `epi::IntegrationInfo::web_location_hash` on `hashchange` event ([#1140](https://github.com/emilk/egui/pull/1140)).
|
||
3 years ago
|
* Parse and percent-decode the web location query string ([#1258](https://github.com/emilk/egui/pull/1258)).
|
||
3 years ago
|
|
||
|
|
||
|
## 0.16.0 - 2021-12-29
|
||
|
* Fixed [dark rendering in WebKitGTK](https://github.com/emilk/egui/issues/794) ([#888](https://github.com/emilk/egui/pull/888/)).
|
||
|
* Added feature `glow` to switch to a [`glow`](https://github.com/grovesNL/glow) based painter ([#868](https://github.com/emilk/egui/pull/868)).
|
||
3 years ago
|
|
||
3 years ago
|
|
||
3 years ago
|
## 0.15.0 - 2021-10-24
|
||
3 years ago
|
### Added
|
||
|
* Remove "http" feature (use https://github.com/emilk/ehttp instead!).
|
||
3 years ago
|
* Implement `epi::NativeTexture` trait for the WebGL painter.
|
||
3 years ago
|
* Deprecate `Painter::register_webgl_texture.
|
||
|
|
||
|
### Fixed 🐛
|
||
2 years ago
|
* Fixed multiline paste.
|
||
|
* Fixed painting with non-opaque backgrounds.
|
||
3 years ago
|
* Improve text input on mobile and for IME.
|
||
3 years ago
|
|
||
3 years ago
|
|
||
|
## 0.14.1 - 2021-08-28
|
||
3 years ago
|
### Fixed 🐛
|
||
2 years ago
|
* Fixed alpha blending for WebGL2 and WebGL1 with sRGB support backends, now having identical results as egui_glium.
|
||
|
* Fixed use of egui on devices with both touch and mouse.
|
||
3 years ago
|
|
||
3 years ago
|
|
||
|
## 0.14.0 - 2021-08-24
|
||
3 years ago
|
### Added ⭐
|
||
|
* Added support for dragging and dropping files into the browser window.
|
||
|
|
||
3 years ago
|
### Fixed 🐛
|
||
|
* Made text thicker and less pixelated.
|
||
|
|
||
3 years ago
|
|
||
|
## 0.13.0 - 2021-06-24
|
||
3 years ago
|
### Changed 🔧
|
||
|
* Default to light visuals unless the system reports a preference for dark mode.
|
||
|
|
||
|
### Fixed 🐛
|
||
3 years ago
|
* Improve alpha blending, making fonts look much better (especially in light mode)
|
||
2 years ago
|
* Fixed double-paste bug
|
||
4 years ago
|
|
||
4 years ago
|
|
||
|
## 0.12.0 - 2021-05-10
|
||
3 years ago
|
### Fixed 🐛
|
||
4 years ago
|
* Scroll faster when scrolling with mouse wheel.
|
||
|
|
||
4 years ago
|
|
||
4 years ago
|
## 0.11.0 - 2021-04-05
|
||
|
### Added ⭐
|
||
4 years ago
|
* [Fix mobile and IME text input](https://github.com/emilk/egui/pull/253)
|
||
4 years ago
|
* Hold down a modifier key when clicking a link to open it in a new tab.
|
||
|
|
||
4 years ago
|
Contributors: [n2](https://github.com/n2)
|
||
|
|
||
3 years ago
|
|
||
4 years ago
|
## 0.10.0 - 2021-02-28
|
||
4 years ago
|
### Added ⭐
|
||
|
* You can control the maximum egui canvas size with `App::max_size_points`.
|
||
|
|
||
4 years ago
|
|
||
|
## 0.9.0 - 2021-02-07
|
||
4 years ago
|
### Added ⭐
|
||
|
* Right-clicks will no longer open browser context menu.
|
||
|
|
||
3 years ago
|
### Fixed 🐛
|
||
2 years ago
|
* Fixed a bug where one couldn't select items in a combo box on a touch screen.
|
||
4 years ago
|
|
||
4 years ago
|
|
||
|
## 0.8.0 - 2021-01-17
|
||
4 years ago
|
### Added ⭐
|
||
|
* WebGL2 is now supported, with improved texture sampler. WebGL1 will be used as a fallback.
|
||
|
|
||
3 years ago
|
### Changed 🔧
|
||
4 years ago
|
* Slightly improved alpha-blending (work-around for non-existing linear-space blending).
|
||
|
|
||
3 years ago
|
### Fixed 🐛
|
||
4 years ago
|
* Call prevent_default for arrow keys when entering text
|
||
|
|
||
4 years ago
|
|
||
|
## 0.7.0 - 2021-01-04
|
||
3 years ago
|
### Changed 🔧
|
||
4 years ago
|
* `http` and `persistence` are now optional (and opt-in) features.
|
||
|
|
||
3 years ago
|
### Fixed 🐛
|
||
4 years ago
|
* egui_web now compiled without `RUSTFLAGS=--cfg=web_sys_unstable_apis`, but copy/paste won't work.
|
||
|
|
||
|
|
||
4 years ago
|
## 0.6.0 - 2020-12-26
|
||
4 years ago
|
### Added ⭐
|
||
|
* Auto-save of app state to local storage
|
||
|
|
||
3 years ago
|
### Changed 🔧
|
||
4 years ago
|
* Set a maximum canvas size to alleviate performance issues on some machines
|
||
4 years ago
|
* Simplify `egui_web::start` arguments
|
||
4 years ago
|
|
||
3 years ago
|
|
||
4 years ago
|
## 0.4.0 - 2020-11-28
|
||
|
### Added ⭐
|
||
|
* A simple HTTP fetch API (wraps `web_sys`).
|
||
2 years ago
|
* Added ability to request a repaint
|
||
4 years ago
|
* Copy/cut/paste suppoert
|
||
|
|
||
3 years ago
|
### Changed 🔧
|
||
4 years ago
|
* Automatic repaint every second
|
||
|
|
||
3 years ago
|
### Fixed 🐛
|
||
4 years ago
|
* Web browser zooming should now work as expected
|
||
|
* A bunch of bug fixes related to keyboard events
|