From cf591da1a0bdb57c9495a3dcf0448b3c0d8e64e0 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sat, 23 Jul 2022 23:55:21 +0200 Subject: [PATCH] Use past tense in all changelogs (for consistency) --- CHANGELOG.md | 150 +++++++++++++++++++-------------------- eframe/CHANGELOG.md | 22 +++--- egui-winit/CHANGELOG.md | 2 +- egui_extras/CHANGELOG.md | 2 +- egui_glium/CHANGELOG.md | 12 ++-- egui_glow/CHANGELOG.md | 6 +- egui_web/CHANGELOG.md | 14 ++-- epaint/CHANGELOG.md | 8 +-- 8 files changed, 108 insertions(+), 108 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afffbeb8..fec0e8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,9 +71,9 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w * Fixed `ComboBox`es always being rendered left-aligned ([#1304](https://github.com/emilk/egui/pull/1304)). * Fixed ui code that could lead to a deadlock ([#1380](https://github.com/emilk/egui/pull/1380)). * Text is darker and more readable in bright mode ([#1412](https://github.com/emilk/egui/pull/1412)). -* Fix a lot of broken/missing doclinks ([#1419](https://github.com/emilk/egui/pull/1419)). +* Fixed a lot of broken/missing doclinks ([#1419](https://github.com/emilk/egui/pull/1419)). * Fixed `Ui::add_visible` sometimes leaving the `Ui` in a disabled state ([#1436](https://github.com/emilk/egui/issues/1436)). -* Add line breaking rules for Japanese text ([#1498](https://github.com/emilk/egui/pull/1498)). +* Added line breaking rules for Japanese text ([#1498](https://github.com/emilk/egui/pull/1498)). ### Deprecated ☢️ * Deprecated `CollapsingHeader::selectable` ([#1538](https://github.com/emilk/egui/pull/1538)). @@ -209,7 +209,7 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w ## 0.16.1 - 2021-12-31 - Add back `CtxRef::begin_frame,end_frame` ### Added ⭐ -* Add back `CtxRef::begin_frame,end_frame` as an alternative to `CtxRef::run`. +* Added back `CtxRef::begin_frame,end_frame` as an alternative to `CtxRef::run`. ## 0.16.0 - 2021-12-29 - Context menus and rich text @@ -268,15 +268,15 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w ### Added ⭐ -* Add horizontal scrolling support to `ScrollArea` and `Window` (opt-in). +* Added horizontal scrolling support to `ScrollArea` and `Window` (opt-in). * `TextEdit::layouter`: Add custom text layout for e.g. syntax highlighting or WYSIWYG. * `Fonts::layout_job`: New text layout engine allowing mixing fonts, colors and styles, with underlining and strikethrough. -* Add `ui.add_enabled(bool, widget)` to easily add a possibly disabled widget. -* Add `ui.add_enabled_ui(bool, |ui| …)` to create a possibly disabled UI section. -* Add feature `"serialize"` separatedly from `"persistence"`. -* Add `egui::widgets::global_dark_light_mode_buttons` to easily add buttons for switching the egui theme. +* Added `ui.add_enabled(bool, widget)` to easily add a possibly disabled widget. +* Added `ui.add_enabled_ui(bool, |ui| …)` to create a possibly disabled UI section. +* Added feature `"serialize"` separatedly from `"persistence"`. +* Added `egui::widgets::global_dark_light_mode_buttons` to easily add buttons for switching the egui theme. * `TextEdit` can now be used to show text which can be selected and copied, but not edited. -* Add `Memory::caches` for caching things from one frame to the next. +* Added `Memory::caches` for caching things from one frame to the next. ### Changed 🔧 * Change the default monospace font to [Hack](https://github.com/source-foundry/Hack). @@ -290,14 +290,14 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w * Smaller and nicer color picker. * `ScrollArea` will auto-shrink to content size unless told otherwise using `ScollArea::auto_shrink`. * By default, `Slider`'s `clamp_to_range` is set to true. -* Rename `TextEdit::enabled` to `TextEdit::interactive`. +* Renamed `TextEdit::enabled` to `TextEdit::interactive`. * `ui.label` (and friends) now take `impl ToString` as argument instead of `impl Into