Skip to content

Commit 79aa95b

Browse files
committed
Winit version 0.30.2
1 parent ecd1468 commit 79aa95b

File tree

5 files changed

+13
-16
lines changed

5 files changed

+13
-16
lines changed

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winit"
3-
version = "0.30.1"
3+
version = "0.30.2"
44
authors = [
55
"The winit contributors",
66
"Pierre Krieger <[email protected]>",

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
```toml
1010
[dependencies]
11-
winit = "0.30.1"
11+
winit = "0.30.2"
1212
```
1313

1414
## [Documentation](https://docs.rs/winit)

Diff for: src/changelog/unreleased.md

-13
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,3 @@ The migration guide could reference other migration examples in the current
3939
changelog entry.
4040

4141
## Unreleased
42-
43-
### Fixed
44-
45-
- On Web, fix `EventLoopProxy::send_event()` triggering event loop immediately
46-
when not called from inside the event loop. Now queues a microtask instead.
47-
- On Web, stop overwriting default cursor with `CursorIcon::Default`.
48-
- On Web, prevent crash when using `InnerSizeWriter::request_inner_size()`.
49-
50-
### Removed
51-
52-
- Remove `EventLoop::run`.
53-
- Remove `EventLoopExtRunOnDemand::run_on_demand`.
54-
- Remove `EventLoopExtPumpEvents::pump_events`.

Diff for: src/changelog/v0.30.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.30.2
2+
3+
### Fixed
4+
5+
- On Web, fix `EventLoopProxy::send_event()` triggering event loop immediately
6+
when not called from inside the event loop. Now queues a microtask instead.
7+
- On Web, stop overwriting default cursor with `CursorIcon::Default`.
8+
- On Web, prevent crash when using `InnerSizeWriter::request_inner_size()`.
9+
- On macOS, fix not working opacity for entire window.
10+
111
## 0.30.1
212

313
### Added

Diff for: src/platform/android.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
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.1",
65+
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.2",
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

0 commit comments

Comments
 (0)