Skip to content

Commit 6eb79f0

Browse files
committed
Winit version 0.29.8
1 parent 2bf12c7 commit 6eb79f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Unreleased` header.
1515

1616
- On X11, fix IME input lagging behind.
1717
- On X11, fix `ModifiersChanged` not sent from xdotool-like input
18-
- On X11, keymap not updated from xmodmap.
18+
- On X11, fix keymap not updated from xmodmap.
1919
- On X11, reduce the amount of time spent fetching screen resources.
2020
- On Wayland, fix `Window::request_inner_size` being overwritten by resize.
2121
- On Wayland, fix `Window::inner_size` not using the correct rounding.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winit"
3-
version = "0.29.7"
3+
version = "0.29.8"
44
authors = ["The winit contributors", "Pierre Krieger <[email protected]>"]
55
description = "Cross-platform window creation library."
66
edition = "2021"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```toml
88
[dependencies]
9-
winit = "0.29.7"
9+
winit = "0.29.8"
1010
```
1111

1212
## [Documentation](https://docs.rs/winit)
@@ -156,7 +156,7 @@ For more details, refer to these `android-activity` [example applications](https
156156

157157
If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building with `cargo apk`, then the minimal changes would be:
158158
1. Remove `ndk-glue` from your `Cargo.toml`
159-
2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.29.7", features = [ "android-native-activity" ] }`
159+
2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.29.8", features = [ "android-native-activity" ] }`
160160
3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize logging as above).
161161
4. Pass a clone of the `AndroidApp` that your application receives to Winit when building your event loop (as shown above).
162162

0 commit comments

Comments
 (0)