All notable changes to the eframe
crate.
- 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