Skip to content

Commit 82f0949

Browse files
committedDec 21, 2024
Winit version 0.30.6
1 parent 5d2151e commit 82f0949

File tree

5 files changed

+29
-27
lines changed

5 files changed

+29
-27
lines changed
 

‎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.5"
3+
version = "0.30.6"
44
authors = [
55
"The winit contributors",
66
"Pierre Krieger <pierre.krieger1708@gmail.com>",

‎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.5"
11+
winit = "0.30.6"
1212
```
1313

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

‎src/changelog/unreleased.md

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

4141
## Unreleased
42-
43-
### Added
44-
45-
- On macOS, add `WindowExtMacOS::set_borderless_game` and `WindowAttributesExtMacOS::with_borderless_game`
46-
to fully disable the menu bar and dock in Borderless Fullscreen as commonly done in games.
47-
- On X11, the `window` example now understands the `X11_VISUAL_ID` and `X11_SCREEN_ID` env
48-
variables to test the respective modifiers of window creation.
49-
- On Android, the soft keyboard can now be shown using `Window::set_ime_allowed`.
50-
- Add basic iOS IME support. The soft keyboard can now be shown using `Window::set_ime_allowed`.
51-
52-
### Fixed
53-
54-
- On macOS, fix `WindowEvent::Moved` sometimes being triggered unnecessarily on resize.
55-
- On macOS, package manifest definitions of `LSUIElement` will no longer be overridden with the
56-
default activation policy, unless explicitly provided during initialization.
57-
- On macOS, fix crash when calling `drag_window()` without a left click present.
58-
- On X11, key events forward to IME anyway, even when it's disabled.
59-
- On Windows, make `ControlFlow::WaitUntil` work more precisely using `CREATE_WAITABLE_TIMER_HIGH_RESOLUTION`.
60-
- On X11, creating windows on screen that is not the first one (e.g. `DISPLAY=:0.1`) works again.
61-
- On X11, creating windows while passing `with_x11_screen(non_default_screen)` works again.
62-
- On X11, fix XInput handling that prevented a new window from getting the focus in some cases.
63-
- On macOS, fix crash when pressing Caps Lock in certain configurations.
64-
- On iOS, fixed `MonitorHandle`'s `PartialEq` and `Hash` implementations.
65-
- On macOS, fixed undocumented cursors (e.g. zoom, resize, help) always appearing to be invalid and falling back to the default cursor.

‎src/changelog/v0.30.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 0.30.6
2+
3+
### Added
4+
5+
- On macOS, add `WindowExtMacOS::set_borderless_game` and `WindowAttributesExtMacOS::with_borderless_game`
6+
to fully disable the menu bar and dock in Borderless Fullscreen as commonly done in games.
7+
- On X11, the `window` example now understands the `X11_VISUAL_ID` and `X11_SCREEN_ID` env
8+
variables to test the respective modifiers of window creation.
9+
- On Android, the soft keyboard can now be shown using `Window::set_ime_allowed`.
10+
- Add basic iOS IME support. The soft keyboard can now be shown using `Window::set_ime_allowed`.
11+
12+
### Fixed
13+
14+
- On macOS, fix `WindowEvent::Moved` sometimes being triggered unnecessarily on resize.
15+
- On macOS, package manifest definitions of `LSUIElement` will no longer be overridden with the
16+
default activation policy, unless explicitly provided during initialization.
17+
- On macOS, fix crash when calling `drag_window()` without a left click present.
18+
- On X11, key events forward to IME anyway, even when it's disabled.
19+
- On Windows, make `ControlFlow::WaitUntil` work more precisely using `CREATE_WAITABLE_TIMER_HIGH_RESOLUTION`.
20+
- On X11, creating windows on screen that is not the first one (e.g. `DISPLAY=:0.1`) works again.
21+
- On X11, creating windows while passing `with_x11_screen(non_default_screen)` works again.
22+
- On X11, fix XInput handling that prevented a new window from getting the focus in some cases.
23+
- On macOS, fix crash when pressing Caps Lock in certain configurations.
24+
- On iOS, fixed `MonitorHandle`'s `PartialEq` and `Hash` implementations.
25+
- On macOS, fixed undocumented cursors (e.g. zoom, resize, help) always appearing to be invalid and falling back to the default cursor.
26+
127
## 0.30.5
228

329
### Added

‎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.5",
65+
//! 2. Enable the `"android-native-activity"` feature for Winit: `winit = { version = "0.30.6",
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)
Please sign in to comment.