All notable changes to the eframe
and epi
crates.
NOTE: egui_web
, egui-winit
, egui_glium
, and egui_glow
have their own changelogs!
- Removed
Frame::alloc_texture
. Useegui::Context::load_texture
instead (#1110). - The default native backend is now
egui_glow
(instead ofegui_glium
) (#1020). - The default web painter is now
egui_glow
(instead of WebGL) (#1020). - Fix horizontal scrolling direction on Linux.
- Added
App::on_exit_event
(#1038) - Shift-scroll will now result in horizontal scrolling on all platforms (#1136).
Frame
can now be cloned, saved, and passed to background threads (#999).- Added
Frame::request_repaint
to replacerepaint_signal
(#999). - Added
Frame::alloc_texture/free_texture
to replacetex_allocator
(#999).
Frame
now providesset_window_title
to set window title dynamicallyFrame
now providesset_decorations
to set whether to show window decorations.- Remove "http" feature (use https://github.com/emilk/ehttp instead!).
- Increase native scroll speed.
- Add
App::persist_native_window
andApp::persist_egui_memory
to control what gets persisted. - Add new backend
egui_glow
as an alternative toegui_glium
. Enable withdefault-features = false, features = ["default_fonts", "egui_glow"]
.
- Add dragging and dropping files into egui.
- Improve http fetch API.
run_native
now returns when the app is closed.
- Fix
http
feature flag and docs
App::setup
now takes aFrame
andStorage
by argument.App::load
has been removed. ImplementApp::setup
instead.
- Moved options out of
trait App
into newNativeOptions
. - Add option for
always_on_top
.
- You can now turn your window transparent with the
App::transparent
option. - You can now disable window decorations with the
App::decorated
option.
- You can now set your own app icons.
- 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 anOption
(there is always a texture allocator).
- Simplify
TextureAllocator
interface.
- Initial release of
eframe