diff --git a/CHANGELOG.md b/CHANGELOG.md index d07b8773..feb0447f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v1.4.1 + +- Fixed a bug that would flip the front camera preview on some devices ([#112][112]) +- Two new `CameraOptions` APIs: `o.getSupportedPictureSizes()` and `o.getSupportedPictureAspectRatios()` ([#101][101]) +- Most controls (video quality, hdr, grid, session type, audio, white balance, flash, facing) now inherit + from a base `Control` class ([#105][105]). This let us add new APIs: + + - `CameraView.set(Control)`: sets the control to the given value, e.g. `set(Flash.AUTO)` + - `CameraOptions.supports(Control)`: returns true if the control is supported + - `CameraOptions.getSupportedControls(Class)`: returns list of supported controls of a given kind + +https://github.com/natario1/CameraView/compare/v1.4.0...v1.4.1 + ## v1.4.0 - CameraView is now completely thread-safe. All actions are asynchronous. ([#97][97]) @@ -56,3 +69,6 @@ https://github.com/natario1/CameraView/compare/v1.2.3...v1.3.0 [94]: https://github.com/natario1/CameraView/pull/94 [97]: https://github.com/natario1/CameraView/pull/97 [99]: https://github.com/natario1/CameraView/pull/99 +[101]: https://github.com/natario1/CameraView/pull/101 +[105]: https://github.com/natario1/CameraView/pull/105 +[112]: https://github.com/natario1/CameraView/pull/112 diff --git a/README.md b/README.md index d198a24a..2b9dcefc 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ addressing most of the common issues and needs, and still leaving you with flexi See [CHANGELOG](https://github.com/natario1/CameraView/blob/master/CHANGELOG.md). ```groovy -compile 'com.otaliastudios:cameraview:1.4.0' +compile 'com.otaliastudios:cameraview:1.4.1' ```

diff --git a/cameraview/build.gradle b/cameraview/build.gradle index 28c69ea6..adba97e6 100644 --- a/cameraview/build.gradle +++ b/cameraview/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' // Required by bintray -version = '1.4.0' +version = '1.4.1' group = 'com.otaliastudios' //region android dependencies