mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-11 13:31:29 +11:00
Publish 0.8.0 (#290)
This commit is contained in:
parent
52a78d61bf
commit
3edc8e0cd9
18
CHANGELOG.md
Normal file
18
CHANGELOG.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Unreleased
|
||||||
|
|
||||||
|
# Version 0.8.0 (2017-09-21)
|
||||||
|
|
||||||
|
- Added `Window::set_maximized`, `WindowAttributes::maximized` and `WindowBuilder::with_maximized`.
|
||||||
|
- Added `Window::set_fullscreen`.
|
||||||
|
- Changed `with_fullscreen` to take a `FullscreenState` instead of a `MonitorId`.
|
||||||
|
- Removed `MonitorId::get_native_identifer()` in favor of platform-specific traits in the `os`
|
||||||
|
module.
|
||||||
|
- Changed `get_available_monitors()` and `get_primary_monitor()` to be methods of `EventsLoop`
|
||||||
|
instead of stand-alone methods.
|
||||||
|
- Changed `EventsLoop` to be tied to a specific X11 or Wayland connection.
|
||||||
|
- Added a `os::linux::EventsLoopExt` trait that makes it possible to configure the connection.
|
||||||
|
- Fixed the emscripten code, which now compiles.
|
||||||
|
- Changed the X11 fullscreen code to use `xrandr` instead of `xxf86vm`.
|
||||||
|
- Fixed the Wayland backend to produce `Refresh` event after window creation.
|
||||||
|
- Changed the `Suspended` event to be outside of `WindowEvent`.
|
||||||
|
- Fixed the X11 backend sometimes reporting the wrong virtual key (#273).
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "winit"
|
name = "winit"
|
||||||
version = "0.7.6"
|
version = "0.8.0"
|
||||||
authors = ["The winit contributors, Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
authors = ["The winit contributors, Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
description = "Cross-platform window creation library."
|
description = "Cross-platform window creation library."
|
||||||
keywords = ["windowing"]
|
keywords = ["windowing"]
|
||||||
|
|
Loading…
Reference in a new issue