Merge epi/CHANGELOG.md into eframe/CHANGELOG.md

This commit is contained in:
Emil Ernerfeldt 2021-02-28 19:11:02 +01:00
parent 84cc227f11
commit 24d68cc55e
3 changed files with 7 additions and 31 deletions

View file

@ -2,7 +2,7 @@
All notable changes to the egui crate will be documented in this file.
NOTE: `epi`, `eframe`, `egui_web` and `egui_glium` has their own changelogs!
NOTE: `eframe`, `egui_web` and `egui_glium` has their own changelogs!
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

View file

@ -7,8 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
* You can now set your own app icons. See https://github.com/emilk/egui/pull/193
for example code.
* You can now set your own app icons. See <https://github.com/emilk/egui/pull/193> for example code.
* 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).
## 0.9.0 - 2021-02-07
@ -17,7 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 0.8.0 - 2021-01-17
* Update all egui-related dependencies to `0.8.0`
* Simplify `TextureAllocator` interface.
## 0.7.0 - 2021-01-04

View file

@ -1,27 +0,0 @@
# Changelog for epi
All notable changes to the `epi` crate.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
* 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).
## 0.9.0 - 2021-02-07
* Nothing new
## 0.8.0 - 2021-01-17
* Simplify `TextureAllocator` interface.
## 0.7.0 - 2021-01-04
* Initial release of epi, with http and persistence features.