File tree Expand file tree Collapse file tree 6 files changed +21
-14
lines changed
Expand file tree Collapse file tree 6 files changed +21
-14
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,12 @@ jobs:
107107
108108 - name : Generate lockfile
109109 # Also updates the crates.io index
110- run : cargo generate-lockfile && cargo update -p ahash --precise 0.8.7 && cargo update -p bumpalo --precise 3.14.0
110+ run : |
111+ cargo generate-lockfile
112+ cargo update -p ahash --precise 0.8.7
113+ cargo update -p bumpalo --precise 3.14.0
114+ cargo update -p objc2-encode --precise 4.0.3
115+ cargo update -p orbclient --precise 0.3.47
111116
112117 - name : Install GCC Multilib
113118 if : (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')
Original file line number Diff line number Diff line change 11[package ]
22name = " winit"
3- version = " 0.30.8 "
3+ version = " 0.30.9 "
44authors = [
55 " The winit contributors" ,
66 " Pierre Krieger <pierre.krieger1708@gmail.com>" ,
Original file line number Diff line number Diff line change 88
99``` toml
1010[dependencies ]
11- winit = " 0.30.8 "
11+ winit = " 0.30.9 "
1212```
1313
1414## [ Documentation] ( https://docs.rs/winit )
Original file line number Diff line number Diff line change @@ -39,13 +39,3 @@ The migration guide could reference other migration examples in the current
3939changelog entry.
4040
4141## Unreleased
42-
43- ### Changed
44-
45- - On Wayland, no longer send an explicit clearing ` Ime::Preedit ` just prior to a new ` Ime::Preedit ` .
46-
47- ### Fixed
48-
49- - On X11, fix crash with uim.
50- - On X11, fix modifiers for keys that were sent by the same X11 request.
51- - On iOS, fix high CPU usage even when using ` ControlFlow::Wait ` .
Original file line number Diff line number Diff line change 1+ ## 0.30.9
2+
3+ ### Changed
4+
5+ - On Wayland, no longer send an explicit clearing ` Ime::Preedit ` just prior to a new ` Ime::Preedit ` .
6+
7+ ### Fixed
8+
9+ - On X11, fix crash with uim.
10+ - On X11, fix modifiers for keys that were sent by the same X11 request.
11+ - On iOS, fix high CPU usage even when using ` ControlFlow::Wait ` .
12+
113## 0.30.8
214
315### Added
Original file line number Diff line number Diff line change 6262//! If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building
6363//! with `cargo apk`, then the minimal changes would be:
6464//! 1. Remove `ndk-glue` from your `Cargo.toml`
65- //! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.8 ",
65+ //! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.9 ",
6666//! features = [ "android-native-activity" ] }`
6767//! 3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc
6868//! macro from `ndk-macros` (optionally add a dependency on `android_logger` and initialize
You can’t perform that action at this time.
0 commit comments