mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2025-01-28 03:26:32 +11:00
Updated to 0.10.5
This commit is contained in:
parent
26e6eca208
commit
f1bd963821
3 changed files with 8 additions and 3 deletions
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
This project follows semantic versioning.
|
This project follows semantic versioning.
|
||||||
|
|
||||||
|
### v0.10.5 (2018-05-05)
|
||||||
|
|
||||||
|
- [added] Scale x8 added for Unix
|
||||||
|
- [fixed] Auto scaling now works correct if scale up is >= screen size
|
||||||
|
|
||||||
### v0.10.4 (2018-01-08)
|
### v0.10.4 (2018-01-08)
|
||||||
|
|
||||||
- [fixed] Bumped kernel32 to 0.2.2 due to compile errors on Windows. Thanks to Thomas Versteeg for this fix.
|
- [fixed] Bumped kernel32 to 0.2.2 due to compile errors on Windows. Thanks to Thomas Versteeg for this fix.
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "minifb"
|
name = "minifb"
|
||||||
version = "0.10.4"
|
version = "0.10.5"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
authors = ["Daniel Collin <daniel@collin.com>"]
|
authors = ["Daniel Collin <daniel@collin.com>"]
|
||||||
description = "Cross-platform window setup with optional bitmap rendering"
|
description = "Cross-platform window setup with optional bitmap rendering"
|
||||||
keywords = ["windowing", "window", "framebuffer"]
|
keywords = ["windowing", "window", "framebuffer"]
|
||||||
categories = ["rendering"]
|
categories = ["rendering"]
|
||||||
repository = "https://github.com/emoon/rust_minifb"
|
repository = "https://github.com/emoon/rust_minifb"
|
||||||
documentation = "https://docs.rs/minifb/0.10.1/minifb"
|
documentation = "https://docs.rs/minifb/0.10.5/minifb"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ Usage
|
||||||
```toml
|
```toml
|
||||||
# Cargo.toml
|
# Cargo.toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
minifb = "0.10.4"
|
minifb = "0.10.5"
|
||||||
```
|
```
|
||||||
|
|
||||||
Example
|
Example
|
||||||
|
|
Loading…
Add table
Reference in a new issue