1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

egui_glium: add support for transparent windows

Also support non-decorated windows (without border)
This commit is contained in:
Emil Ernerfeldt
2021-03-31 20:53:13 +02:00
parent 0a21b01c31
commit 3450168e94
6 changed files with 46 additions and 39 deletions

View File

@@ -1,15 +1,15 @@
# Changelog for eframe
All notable changes to the `eframe` crate.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
* You can now turn your window transparent with the `App::transparent` option.
* You can now disable window decorations with the `App::decorated` option.
## 0.10.0 - 2021-02-28
* [You can now set your own app icons](https://github.com/emilk/egui/pull/193).
* 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`.
@@ -17,15 +17,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 0.9.0 - 2021-02-07
* [Add support for HTTP body](https://github.com/emilk/egui/pull/139).
## 0.8.0 - 2021-01-17
* Simplify `TextureAllocator` interface.
## 0.7.0 - 2021-01-04
* Initial release of `eframe`