mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +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
f6ca8515ab
commit
462bb4d324
|
@ -8,8 +8,6 @@ And please only add new entries to the top of this list, right below the `# Unre
|
||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
- On Windows, emit `ReceivedCharacter` events on system keybindings.
|
|
||||||
- On Windows, fixed focus event emission on minimize.
|
|
||||||
- On MacOS, made `accepts_first_mouse` configurable.
|
- On MacOS, made `accepts_first_mouse` configurable.
|
||||||
- Migrated `WindowBuilderExtUnix::with_resize_increments` to `WindowBuilder`.
|
- Migrated `WindowBuilderExtUnix::with_resize_increments` to `WindowBuilder`.
|
||||||
- Added `Window::resize_increments`/`Window::set_resize_increments` to update resize increments at runtime for X11/macOS.
|
- Added `Window::resize_increments`/`Window::set_resize_increments` to update resize increments at runtime for X11/macOS.
|
||||||
|
@ -24,6 +22,11 @@ And please only add new entries to the top of this list, right below the `# Unre
|
||||||
- On Wayland, a new `wayland-csd-adwaita-crossfont` feature was added to use `crossfont` instead of `ab_glyph` for decorations.
|
- On Wayland, a new `wayland-csd-adwaita-crossfont` feature was added to use `crossfont` instead of `ab_glyph` for decorations.
|
||||||
- On Wayland, if not otherwise specified use upstream automatic CSD theme selection.
|
- On Wayland, if not otherwise specified use upstream automatic CSD theme selection.
|
||||||
- On X11, added `WindowExtX11::with_parent` to create child windows.
|
- On X11, added `WindowExtX11::with_parent` to create child windows.
|
||||||
|
|
||||||
|
# 0.27.4
|
||||||
|
|
||||||
|
- On Windows, emit `ReceivedCharacter` events on system keybindings.
|
||||||
|
- On Windows, fixed focus event emission on minimize.
|
||||||
- On X11, fixed IME crashing during reload.
|
- On X11, fixed IME crashing during reload.
|
||||||
|
|
||||||
# 0.27.3
|
# 0.27.3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "winit"
|
name = "winit"
|
||||||
version = "0.27.3"
|
version = "0.27.4"
|
||||||
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