Synchronize changelogs with v0.30.13

This commit is contained in:
Mads Marquart
2026-03-17 05:38:58 +01:00
committed by Kirill Chibisov
parent 7864d02077
commit 4f29aed5ee
3 changed files with 16 additions and 7 deletions

View File

@@ -53,11 +53,7 @@ changelog entry.
### Fixed
- On X11, fix `set_hittest` not working on some window managers.
- On Redox, handle `EINTR` when reading from `event_socket` instead of panicking.
- On Wayland, switch from using the `ahash` hashing algorithm to `foldhash`.
- On macOS, fix borderless game presentation options not sticking after switching spaces.
- On Windows, fix `WM_IME_SETCONTEXT` IME UI flag masking on `lParam`.
- On macOS, fix crash in `set_marked_text` when native Pinyin IME sends out-of-bounds `selected_range`.
- On X11, fix debug mode overflow panic in `set_timestamp`.
- On macOS, fix IME being locked on (regardless of requests to disable) after being enabled once.
- On macOS, fix IME being locked on (regardless of requests to disable) after being enabled once.

View File

@@ -1,3 +1,18 @@
## 0.30.13
### Added
- On Wayland, add `Window::set_resize_increments`.
### Fixed
- On macOS, fixed crash when dragging non-file content onto window.
- On X11, fix `set_hittest` not working on some window managers.
- On X11, fix debug mode overflow panic in `set_timestamp`.
- On macOS, fix crash in `set_marked_text` when native Pinyin IME sends out-of-bounds `selected_range`.
- On Windows, fix `WM_IME_SETCONTEXT` IME UI flag masking on `lParam`.
- On Android, populate `KeyEvent::text` and `KeyEvent::text_with_all_modifiers` via `Key::to_text()`
## 0.30.12
### Fixed

View File

@@ -14,7 +14,6 @@
### Fixed
- Fixed panic when calling `Window::set_ime_allowed`.
- On Android, populate `KeyEvent::text` and `KeyEvent::text_with_all_modifiers` via `Key::to_text()`
## 0.31.0-beta.1
@@ -250,4 +249,3 @@
- On Web, device events are emitted regardless of cursor type.
- On Wayland, `axis_value120` scroll events now generate `MouseScrollDelta::LineDelta`
- On X11, mouse scroll button events no longer cause duplicated `WindowEvent::MouseWheel` events.
- On macOS, fixed crash when dragging non-file content onto window.