File tree 6 files changed +21
-14
lines changed
6 files changed +21
-14
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,12 @@ jobs:
107
107
108
108
- name : Generate lockfile
109
109
# 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
111
116
112
117
- name : Install GCC Multilib
113
118
if : (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " winit"
3
- version = " 0.30.8 "
3
+ version = " 0.30.9 "
4
4
authors = [
5
5
" The winit contributors" ,
6
6
" Pierre Krieger <[email protected] >" ,
Original file line number Diff line number Diff line change 8
8
9
9
``` toml
10
10
[dependencies ]
11
- winit = " 0.30.8 "
11
+ winit = " 0.30.9 "
12
12
```
13
13
14
14
## [ 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
39
39
changelog entry.
40
40
41
41
## 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
+
1
13
## 0.30.8
2
14
3
15
### Added
Original file line number Diff line number Diff line change 62
62
//! If your application is currently based on `NativeActivity` via the `ndk-glue` crate and building
63
63
//! with `cargo apk`, then the minimal changes would be:
64
64
//! 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 ",
66
66
//! features = [ "android-native-activity" ] }`
67
67
//! 3. Add an `android_main` entrypoint (as above), instead of using the '`[ndk_glue::main]` proc
68
68
//! 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