diff --git a/README.md b/README.md index ac834d92..5362cea1 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ CameraView is a well documented, high-level library that makes capturing picture addressing most of the common issues and needs, and still leaving you with flexibility where needed. ```groovy -compile 'com.otaliastudios:cameraview:2.0.0-beta04' +compile 'com.otaliastudios:cameraview:2.0.0-beta05' ``` - Fast & reliable diff --git a/cameraview/build.gradle b/cameraview/build.gradle index be1a5062..739cfd01 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 = '2.0.0-beta04' +version = '2.0.0-beta05' group = 'com.otaliastudios' //region android dependencies diff --git a/docs/_posts/2018-12-20-changelog.md b/docs/_posts/2018-12-20-changelog.md index 79fa8b22..b5523ccc 100644 --- a/docs/_posts/2018-12-20-changelog.md +++ b/docs/_posts/2018-12-20-changelog.md @@ -8,6 +8,13 @@ order: 3 New versions are released through GitHub, so the reference page is the [GitHub Releases](https://github.com/natario1/CameraView/releases) page. +### v2.0.0-beta05 + +- Fixed `FrameProcessor` freeze and release behavior, was broken ([#431][431]) +- New: new api `setAutoFocusResetDelay` to control the delay to reset the focus after autofocus was performed, thanks to [@cneuwirt][cneuwirt] ([#435][435]) +- Faster camera preview on layout changes ([#403][403]) +- A few bug fixes ([#471][471]) + ### v2.0.0-beta04 - Renames setPreviewSize to setPreviewStreamSize (previewSize suggests it is related to the view size but it's not) ([#393][393]) @@ -28,8 +35,14 @@ New versions are released through GitHub, so the reference page is the [GitHub R This is the first beta release. For changes with respect to v1, please take a look at the [migration guide](../extra/v1-migration-guide.html). +[cneuwirt]: https://github.com/cneuwirt + [356]: https://github.com/natario1/CameraView/pull/356 [360]: https://github.com/natario1/CameraView/pull/360 [374]: https://github.com/natario1/CameraView/pull/374 [392]: https://github.com/natario1/CameraView/pull/392 -[393]: https://github.com/natario1/CameraView/pull/393 \ No newline at end of file +[393]: https://github.com/natario1/CameraView/pull/393 +[471]: https://github.com/natario1/CameraView/pull/471 +[431]: https://github.com/natario1/CameraView/pull/431 +[403]: https://github.com/natario1/CameraView/pull/403 +[435]: https://github.com/natario1/CameraView/pull/435 \ No newline at end of file diff --git a/docs/_posts/2018-12-20-install.md b/docs/_posts/2018-12-20-install.md index be6bf81d..ab84bb9a 100644 --- a/docs/_posts/2018-12-20-install.md +++ b/docs/_posts/2018-12-20-install.md @@ -24,7 +24,7 @@ allprojects { Then simply download the latest version: ```groovy -api 'com.otaliastudios:cameraview:2.0.0-beta04' +api 'com.otaliastudios:cameraview:2.0.0-beta05' ``` No other configuration steps are needed. \ No newline at end of file