From 934fcd7e99dd698d3d5188e9e013e52ebc4d0173 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 16 May 2022 16:44:29 +0200 Subject: [PATCH] Add hex_color clipboard fixes to changelogs --- CHANGELOG.md | 1 + eframe/CHANGELOG.md | 1 + egui-winit/CHANGELOG.md | 1 + epaint/CHANGELOG.md | 3 ++- 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e47470630..2ff6e4f9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w ## Unreleased ### Added ⭐ * Added `*_released` & `*_clicked` methods for `PointerState` ([#1582](https://github.com/emilk/egui/pull/1582)). +* Added `egui::hex_color!` to create `Color32`'s from hex strings under the `color-hex` feature ([#1596](https://github.com/emilk/egui/pull/1596)). * Optimized painting of filled circles (e.g. for scatter plots) by 10x or more ([#1616](https://github.com/emilk/egui/pull/1616)). * Added `InputState::stable_dt`: a more stable estimate for the delta-time in reactive mode ([#1625](https://github.com/emilk/egui/pull/1625)). diff --git a/eframe/CHANGELOG.md b/eframe/CHANGELOG.md index fb049271a..f514d4f8a 100644 --- a/eframe/CHANGELOG.md +++ b/eframe/CHANGELOG.md @@ -9,6 +9,7 @@ NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/C * Add `wgpu` rendering backed ([#1564](https://github.com/emilk/egui/pull/1564)): * Add features "wgpu" and "glow" * Add `NativeOptions::renderer` to switch between the rendering backends +* Fix clipboard on Wayland ([#1613](https://github.com/emilk/egui/pull/1613)). ## 0.18.0 - 2022-04-30 diff --git a/egui-winit/CHANGELOG.md b/egui-winit/CHANGELOG.md index 3c91028ab..a1e264571 100644 --- a/egui-winit/CHANGELOG.md +++ b/egui-winit/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to the `egui-winit` integration will be noted in this file. ## Unreleased +* Fix clipboard on Wayland ([#1613](https://github.com/emilk/egui/pull/1613)). ## 0.18.0 - 2022-04-30 diff --git a/epaint/CHANGELOG.md b/epaint/CHANGELOG.md index 6d437345e..6bd7d9409 100644 --- a/epaint/CHANGELOG.md +++ b/epaint/CHANGELOG.md @@ -4,7 +4,8 @@ All notable changes to the epaint crate will be documented in this file. ## Unreleased * Optimize tessellation of filled circles by 10x or more ([#1616](https://github.com/emilk/egui/pull/1616)). -* Added `epaint::hex_color` macro to create Color32's from hex strings under the `color-hex` feature ([#1596](https://github.com/emilk/egui/pull/1596)). +* Added `epaint::hex_color!` to create `Color32`'s from hex strings under the `color-hex` feature ([#1596](https://github.com/emilk/egui/pull/1596)). + ## 0.18.1 - 2022-05-01 * Change `Shape::Callback` from `&dyn Any` to `&mut dyn Any` to support more backends.