2021-01-02 10:59:20 +00:00
# Changelog for eframe
2021-09-29 06:45:13 +00:00
All notable changes to the `eframe` and `epi` crates.
2021-01-02 10:59:20 +00:00
2022-01-22 10:33:39 +00:00
NOTE: [`egui_web` ](../egui_web/CHANGELOG.md ), [`egui-winit` ](../egui-winit/CHANGELOG.md ), [`egui_glium` ](../egui_glium/CHANGELOG.md ), and [`egui_glow` ](../egui_glow/CHANGELOG.md ) have their own changelogs!
2021-09-30 16:53:41 +00:00
2021-01-02 10:59:20 +00:00
## Unreleased
2022-01-15 12:59:52 +00:00
* Removed `Frame::alloc_texture` . Use `egui::Context::load_texture` instead ([#1110](https://github.com/emilk/egui/pull/1110)).
2021-12-31 14:17:55 +00:00
* The default native backend is now `egui_glow` (instead of `egui_glium` ) ([#1020](https://github.com/emilk/egui/pull/1020)).
* The default web painter is now `egui_glow` (instead of WebGL) ([#1020](https://github.com/emilk/egui/pull/1020)).
2022-02-02 16:09:36 +00:00
* Automatically detect and apply dark or light mode from system ([#1045](https://github.com/emilk/egui/pull/1045)).
2022-01-16 08:49:22 +00:00
* Fix horizontal scrolling direction on Linux.
2022-01-17 17:45:09 +00:00
* Added `App::on_exit_event` ([#1038](https://github.com/emilk/egui/pull/1038))
2022-02-05 18:12:03 +00:00
* Added `NativeOptions::initial_window_pos` .
2022-02-21 15:10:05 +00:00
* Fixed `enable_drag` for Windows OS ([#1108](https://github.com/emilk/egui/pull/1108)).
2022-01-24 13:32:36 +00:00
* Shift-scroll will now result in horizontal scrolling on all platforms ([#1136](https://github.com/emilk/egui/pull/1136)).
2022-02-01 11:27:39 +00:00
* Log using the `tracing` crate. Log to stdout by adding `tracing_subscriber::fmt::init();` to your `main` ([#1192](https://github.com/emilk/egui/pull/1192)).
2022-02-17 15:46:43 +00:00
* Expose all parts of the location/url in `frame.info().web_info` ([#1258](https://github.com/emilk/egui/pull/1258)).
2021-12-29 11:07:05 +00:00
## 0.16.0 - 2021-12-29
2021-12-26 20:21:28 +00:00
* `Frame` can now be cloned, saved, and passed to background threads ([#999](https://github.com/emilk/egui/pull/999)).
* Added `Frame::request_repaint` to replace `repaint_signal` ([#999](https://github.com/emilk/egui/pull/999)).
* Added `Frame::alloc_texture/free_texture` to replace `tex_allocator` ([#999](https://github.com/emilk/egui/pull/999)).
2021-10-24 14:08:44 +00:00
## 0.15.0 - 2021-10-24
2021-10-22 22:03:17 +00:00
* `Frame` now provides `set_window_title` to set window title dynamically
2021-09-07 19:42:14 +00:00
* `Frame` now provides `set_decorations` to set whether to show window decorations.
2021-09-03 19:04:43 +00:00
* Remove "http" feature (use https://github.com/emilk/ehttp instead!).
2021-09-07 18:47:53 +00:00
* Increase native scroll speed.
2021-09-29 06:45:13 +00:00
* Add `App::persist_native_window` and `App::persist_egui_memory` to control what gets persisted.
2021-10-19 13:32:23 +00:00
* Add new backend `egui_glow` as an alternative to `egui_glium` . Enable with `default-features = false, features = ["default_fonts", "egui_glow"]` .
2021-08-24 14:47:10 +00:00
## 0.14.0 - 2021-08-24
2021-08-20 20:20:45 +00:00
* Add dragging and dropping files into egui.
2021-08-15 16:31:50 +00:00
* Improve http fetch API.
2021-08-20 16:59:32 +00:00
* `run_native` now returns when the app is closed.
2021-06-24 18:00:06 +00:00
2021-06-24 18:36:36 +00:00
## 0.13.1 - 2021-06-24
* Fix `http` feature flag and docs
2021-06-24 18:00:06 +00:00
## 0.13.0 - 2021-06-24
2021-06-07 18:53:33 +00:00
* `App::setup` now takes a `Frame` and `Storage` by argument.
* `App::load` has been removed. Implement `App::setup` instead.
2021-05-10 16:20:32 +00:00
## 0.12.0 - 2021-05-10
2021-05-08 08:14:56 +00:00
* Moved options out of `trait App` into new `NativeOptions` .
2021-05-08 08:19:47 +00:00
* Add option for `always_on_top` .
2021-04-05 12:49:06 +00:00
## 0.11.0 - 2021-04-05
2021-03-31 18:53:13 +00:00
* You can now turn your window transparent with the `App::transparent` option.
* You can now disable window decorations with the `App::decorated` option.
2021-01-02 10:59:20 +00:00
2021-02-28 19:01:18 +00:00
## 0.10.0 - 2021-02-28
* [You can now set your own app icons ](https://github.com/emilk/egui/pull/193 ).
2021-02-28 18:11:02 +00:00
* You can control the initial size of the native window with `App::initial_window_size` .
* You can control the maximum egui web canvas size with `App::max_size_points` .
* `Frame::tex_allocator()` no longer returns an `Option` (there is always a texture allocator).
2021-01-17 14:16:00 +00:00
2021-02-07 16:06:42 +00:00
## 0.9.0 - 2021-02-07
2021-02-28 19:01:18 +00:00
* [Add support for HTTP body ](https://github.com/emilk/egui/pull/139 ).
2021-02-07 16:06:42 +00:00
2021-01-17 14:16:00 +00:00
## 0.8.0 - 2021-01-17
2021-02-28 18:11:02 +00:00
* Simplify `TextureAllocator` interface.
2021-01-17 14:16:00 +00:00
## 0.7.0 - 2021-01-04
2021-01-04 14:38:57 +00:00
* Initial release of `eframe`