mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-23 19:31:30 +11:00
Updated to 0.17
This commit is contained in:
parent
f94eef1c7b
commit
d33084f860
|
@ -2,6 +2,13 @@
|
|||
|
||||
This project follows semantic versioning.
|
||||
|
||||
### v0.17 (2020-07-09)
|
||||
|
||||
- [changed] unix renamed to posix. (Thanks LoganDark)
|
||||
- [changed] bunch of Linux/x11 fixes by Antonino Siena. Such as Transparency support, Borderless, Cursor Visibility. Thanks!
|
||||
- [changed] use `std::ptr::null_mut()` to Windows `PeekMessageW` it fix alt-tab stall on Window 7. Thanks lynnux for the report!
|
||||
- [added] Implemented std::error::Error for minifb::Error. (Thanks Christofer Nolander!)
|
||||
|
||||
### v0.16 (2020-04-05)
|
||||
|
||||
- [added] Wayland support. (Big thanks to Antonino Siena add this support with assistance by Cole Helbling!)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "minifb"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
license = "MIT/Apache-2.0"
|
||||
authors = ["Daniel Collin <daniel@collin.com>"]
|
||||
description = "Cross-platform window setup with optional bitmap rendering"
|
||||
|
|
|
@ -13,7 +13,7 @@ Usage
|
|||
```toml
|
||||
# Cargo.toml
|
||||
[dependencies]
|
||||
minifb = "0.16"
|
||||
minifb = "0.17"
|
||||
```
|
||||
|
||||
Example
|
||||
|
@ -64,6 +64,12 @@ Notice: That after 0.13 Redox hasn't been updated and some work is required to g
|
|||
Build instructions
|
||||
------------------
|
||||
|
||||
On Linux you may need to install these dependencies first:
|
||||
|
||||
```
|
||||
sudo apt install libxkbcommon-dev libwayland-cursor0 libwayland-dev
|
||||
```
|
||||
|
||||
```
|
||||
cargo build
|
||||
cargo run --example noise
|
||||
|
|
Loading…
Reference in a new issue