Bump version

pull/104/head^2 v1.4.1
Mattia Iavarone 7 years ago
parent ced60586c2
commit 0716904922
  1. 16
      CHANGELOG.md
  2. 2
      README.md
  3. 2
      cameraview/build.gradle

@ -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<? extends Control>)`: 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

@ -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'
```
<p>

@ -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

Loading…
Cancel
Save