From e78f50512fdf76fe6176d5bdca0c1e74c90bd4ac Mon Sep 17 00:00:00 2001 From: Jonathan Spira Date: Sun, 19 Jan 2025 12:29:03 -0500 Subject: [PATCH] bumping changelog --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d891628..91408e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,11 @@ - MSRV is now `1.82`. We will bump the MSRV to `1.85` in the future. - Keys now communicate with `imgui` in a far simpler manner -- rather than going through a complex keymap, they instead simply notate if they are or are not down to `imgui` directly. - Multiple functions, such as `Ui::key_index`, `Ui::is_key_index_down`, `Ui::is_key_index_pressed`, `Ui::is_key_index_pressed_no_repeat`, and `Ui::key_index_pressed_amount` were removed. Use the corresponding non-`index` version. + Multiple functions, such as `Ui::key_index`, `Ui::is_key_index_down`, `Ui::is_key_index_pressed`, + `Ui::is_key_index_pressed_no_repeat`, and `Ui::key_index_pressed_amount` were removed. Use the corresponding non-`index` version. +- Added `Key::ModCtrl`, `Key::ModShift`, `Key::ModAlt`, and `Key::ModSuper`. This is now the correct way + to interface with modifiers (though you can also check particular modifiers, like `Key::LeftCtrl`). + This may require updating your backend! - The default `oversample_h` on the `FontConfig` has changed to 2 instead of 3. - `SelectableFlags::DONT_CLOSE_POPUPS` has been renamed to `SelectableFlags::NO_AUTO_CLOSE_POPUPS` - `SelectableFlags::ALLOW_ITEM_OVERLAP` has been renamed to `SelectableFlags::ALLOW_OVERLAP`.