-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Winit version 0.30.6 #4042
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Winit version 0.30.6 #4042
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d6f0b0f
m: Ignore mutex poisoning in X11_BACKEND
notgull 2b586ca
x11: use more information in X11 "not supported" errors
notgull 400fbf9
macOS: add option to explicitly hide menu/dock in Borderless (#3882)
TarekAS e1eb251
Prevent winit from overriding LSUIElement in package manifests (#3920)
purajit d0480b9
chore: fix nightly CI on linux/ios
kchibisov c48cd9e
macOS: Fix move event sometimes being triggered on resize (#3914)
madsmtm d3d5585
x11: don't forward key events to IME when it's disabled
kchibisov a8e5c6e
macOS: fix panic during drag_window
shanecelis 2579d49
Improve waiting for messages on Windows
AngelicosPhosphoros a7ee8c9
x11: iterate only visuals from the matching screen
strohel 8a023c0
x11: fix WindowAttributesExtX11::with_x11_screen()
strohel 2031673
docs: add `fn main` to root examples
madsmtm c330c7c
android: use show_soft_input to summon the keyboard
podusowski e666502
Basic iOS IME support (#3823)
lucasmerlin dc576e2
macOS: set activation policy by default if app is not bundled (#3961)
nicoburns e01bd37
x11: move up XInput2 event registration
rodrigorc 8937151
chore: fix clippy lints
madsmtm 7e71641
macOS: Fix crash when pressing Caps Lock (#4024)
madsmtm f757a9e
Fix MonitorHandle PartialEq and Hash on iOS (#4013)
madsmtm 97a5fc9
macOS: Fix checking for undocumented cursors (#4033)
slice c9c20b7
build(deps): bump EmbarkStudios/cargo-deny-action
dependabot[bot] 093fb4b
ci: fix cargo deny
madsmtm 44c415c
Update minimum version of `wasm-bindgen` (#3860)
daxpedda 32cf569
chore: fix typos
kchibisov 74bc57a
Winit version 0.30.6
kchibisov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [package] | ||
| name = "winit" | ||
| version = "0.30.5" | ||
| version = "0.30.6" | ||
| authors = [ | ||
| "The winit contributors", | ||
| "Pierre Krieger <[email protected]>", | ||
|
|
@@ -14,7 +14,17 @@ rust-version.workspace = true | |
| repository.workspace = true | ||
| license.workspace = true | ||
| edition.workspace = true | ||
| exclude = ["/.cargo"] | ||
| include = [ | ||
| "/build.rs", | ||
| "/docs", | ||
| "/examples", | ||
| "/FEATURES.md", | ||
| "/LICENSE", | ||
| "/src", | ||
| "!/src/platform_impl/web/script", | ||
| "/src/platform_impl/web/script/**/*.min.js", | ||
| "/tests", | ||
| ] | ||
|
|
||
| [package.metadata.docs.rs] | ||
| features = [ | ||
|
|
@@ -189,6 +199,8 @@ features = [ | |
| "UIEvent", | ||
| "UIGeometry", | ||
| "UIGestureRecognizer", | ||
| "UITextInput", | ||
| "UITextInputTraits", | ||
| "UIOrientation", | ||
| "UIPanGestureRecognizer", | ||
| "UIPinchGestureRecognizer", | ||
|
|
@@ -220,6 +232,7 @@ features = [ | |
| "Win32_System_Com", | ||
| "Win32_System_LibraryLoader", | ||
| "Win32_System_Ole", | ||
| "Win32_Security", | ||
| "Win32_System_SystemInformation", | ||
| "Win32_System_SystemServices", | ||
| "Win32_System_Threading", | ||
|
|
@@ -278,60 +291,63 @@ xkbcommon-dl = "0.4.2" | |
| orbclient = { version = "0.3.47", default-features = false } | ||
| redox_syscall = "0.4.1" | ||
|
|
||
| [target.'cfg(target_family = "wasm")'.dependencies.web_sys] | ||
| package = "web-sys" | ||
| version = "0.3.64" | ||
| features = [ | ||
| 'AbortController', | ||
| 'AbortSignal', | ||
| 'Blob', | ||
| 'BlobPropertyBag', | ||
| 'console', | ||
| 'CssStyleDeclaration', | ||
| 'Document', | ||
| 'DomException', | ||
| 'DomRect', | ||
| 'DomRectReadOnly', | ||
| 'Element', | ||
| 'Event', | ||
| 'EventTarget', | ||
| 'FocusEvent', | ||
| 'HtmlCanvasElement', | ||
| 'HtmlElement', | ||
| 'HtmlImageElement', | ||
| 'ImageBitmap', | ||
| 'ImageBitmapOptions', | ||
| 'ImageBitmapRenderingContext', | ||
| 'ImageData', | ||
| 'IntersectionObserver', | ||
| 'IntersectionObserverEntry', | ||
| 'KeyboardEvent', | ||
| 'MediaQueryList', | ||
| 'MessageChannel', | ||
| 'MessagePort', | ||
| 'Navigator', | ||
| 'Node', | ||
| 'PageTransitionEvent', | ||
| 'PointerEvent', | ||
| 'PremultiplyAlpha', | ||
| 'ResizeObserver', | ||
| 'ResizeObserverBoxOptions', | ||
| 'ResizeObserverEntry', | ||
| 'ResizeObserverOptions', | ||
| 'ResizeObserverSize', | ||
| 'VisibilityState', | ||
| 'Window', | ||
| 'WheelEvent', | ||
| 'Worker', | ||
| 'Url', | ||
| ] | ||
|
|
||
| [target.'cfg(target_family = "wasm")'.dependencies] | ||
| js-sys = "0.3.64" | ||
| js-sys = "0.3.70" | ||
| pin-project = "1" | ||
| wasm-bindgen = "0.2" | ||
| wasm-bindgen-futures = "0.4" | ||
| wasm-bindgen = "0.2.93" | ||
| wasm-bindgen-futures = "0.4.43" | ||
| web-time = "1" | ||
| web_sys = { package = "web-sys", version = "0.3.70", features = [ | ||
| "AbortController", | ||
| "AbortSignal", | ||
| "Blob", | ||
| "BlobPropertyBag", | ||
| "console", | ||
| "CssStyleDeclaration", | ||
| "Document", | ||
| "DomException", | ||
| "DomRect", | ||
| "DomRectReadOnly", | ||
| "Element", | ||
| "Event", | ||
| "EventTarget", | ||
| "FocusEvent", | ||
| "HtmlCanvasElement", | ||
| "HtmlElement", | ||
| "HtmlImageElement", | ||
| "ImageBitmap", | ||
| "ImageBitmapOptions", | ||
| "ImageBitmapRenderingContext", | ||
| "ImageData", | ||
| "IntersectionObserver", | ||
| "IntersectionObserverEntry", | ||
| "KeyboardEvent", | ||
| "MediaQueryList", | ||
| "MessageChannel", | ||
| "MessagePort", | ||
| "Navigator", | ||
| "Node", | ||
| "OrientationLockType", | ||
| "OrientationType", | ||
| "PageTransitionEvent", | ||
| "Permissions", | ||
| "PermissionState", | ||
| "PermissionStatus", | ||
| "PointerEvent", | ||
| "PremultiplyAlpha", | ||
| "ResizeObserver", | ||
| "ResizeObserverBoxOptions", | ||
| "ResizeObserverEntry", | ||
| "ResizeObserverOptions", | ||
| "ResizeObserverSize", | ||
| "Screen", | ||
| "ScreenOrientation", | ||
| "Url", | ||
| "VisibilityState", | ||
| "WheelEvent", | ||
| "Window", | ||
| "Worker", | ||
| ] } | ||
|
|
||
| [target.'cfg(all(target_family = "wasm", target_feature = "atomics"))'.dependencies] | ||
| atomic-waker = "1" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.