mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
Bump version on master
This commit does not represent a release and only synchronizes CHANGELOG from the latest release.
This commit is contained in:
parent
92592ec605
commit
596c0edf0f
|
@ -8,6 +8,7 @@ And please only add new entries to the top of this list, right below the `# Unre
|
||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
- On macOS, fixed memory leak when getting monitor handle.
|
||||||
- On Wayland, fix maximized startup not taking full size on GNOME.
|
- On Wayland, fix maximized startup not taking full size on GNOME.
|
||||||
- On Wayland, fix initial window size not restored for maximized/fullscreened on startup window.
|
- On Wayland, fix initial window size not restored for maximized/fullscreened on startup window.
|
||||||
- On Wayland, `Window::outer_size` now accounts for **client side** decorations.
|
- On Wayland, `Window::outer_size` now accounts for **client side** decorations.
|
||||||
|
@ -17,14 +18,16 @@ And please only add new entries to the top of this list, right below the `# Unre
|
||||||
- On Wayland, add `Window::drag_resize_window` method.
|
- On Wayland, add `Window::drag_resize_window` method.
|
||||||
- On Wayland, drop `WINIT_WAYLAND_CSD_THEME` variable.
|
- On Wayland, drop `WINIT_WAYLAND_CSD_THEME` variable.
|
||||||
- Bump MSRV from `1.60` to `1.64`.
|
- Bump MSRV from `1.60` to `1.64`.
|
||||||
- On macOS, fix `key_up` beind ignored when `Ime` is disabled.
|
|
||||||
|
# 0.28.5
|
||||||
|
|
||||||
|
- On macOS, fix `key_up` being ignored when `Ime` is disabled.
|
||||||
|
|
||||||
# 0.28.4
|
# 0.28.4
|
||||||
|
|
||||||
- On macOS, fix empty marked text blocking regular input.
|
- On macOS, fix empty marked text blocking regular input.
|
||||||
- On macOS, fix potential panic when getting refresh rate.
|
- On macOS, fix potential panic when getting refresh rate.
|
||||||
- On macOS, fix crash when calling `Window::set_ime_position` from another thread.
|
- On macOS, fix crash when calling `Window::set_ime_position` from another thread.
|
||||||
- On macOS, fixed memory leak when getting monitor handle.
|
|
||||||
|
|
||||||
# 0.28.3
|
# 0.28.3
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "winit"
|
name = "winit"
|
||||||
version = "0.28.4"
|
version = "0.28.5"
|
||||||
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
description = "Cross-platform window creation library."
|
description = "Cross-platform window creation library."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
Loading…
Reference in a new issue