bumping changelog

This commit is contained in:
Jonathan Spira 2025-01-19 12:29:03 -05:00
parent 763b34eaa2
commit e78f50512f

View File

@ -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`.