diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eb8627..cbc2fa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +### 0.5 +> #### Added +> * Device product description (`device::Description`) +> * Glium example +> * Restored openpnp-capture HAL +> - libuvc does not support iSight cameras of current-gen MacBooks +> - libuvc remains as the default Windows backend, while macOS defaults to openpnp-capture +> * Device controls (brightness, saturation, ...) for openpnp-capture HAL +> * Support for YUYV formats (autoconversion to RGB) when using the high-level `eye` crate + ### 0.4 > #### Added > * Universal Video Class (UVC) HAL diff --git a/eye/Cargo.toml b/eye/Cargo.toml index 30f7a7f..27f7872 100644 --- a/eye/Cargo.toml +++ b/eye/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "eye" description = "Cross platform camera capture and control" -version = "0.4.1" +version = "0.5.0" authors = ["Christopher N. Hesse "] edition = "2018" license = "MIT" @@ -13,7 +13,7 @@ default = ["jpeg"] jpeg = ["jpeg-decoder"] [dependencies] -eye-hal = { version = "0.1.0", path = "../eye-hal" } +eye-hal = { version = "0.2.0", path = "../eye-hal" } ffimage = "0.10.0" ffimage_yuv = "0.10.0"