Release v2.6.3 (#912)

pull/931/head v2.6.3
Mattia Iavarone 4 years ago committed by GitHub
parent a7c18324a5
commit 610f511a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 2
      cameraview/build.gradle.kts
  3. 18
      docs/_about/changelog.md
  4. 2
      docs/_config.yml

@ -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. addressing most of the common issues and needs, and still leaving you with flexibility where needed.
```groovy ```groovy
api 'com.otaliastudios:cameraview:2.6.2' api 'com.otaliastudios:cameraview:2.6.3'
``` ```
- Fast & reliable - Fast & reliable

@ -14,7 +14,7 @@ android {
setMinSdkVersion(rootProject.property("minSdkVersion") as Int) setMinSdkVersion(rootProject.property("minSdkVersion") as Int)
setTargetSdkVersion(rootProject.property("targetSdkVersion") as Int) setTargetSdkVersion(rootProject.property("targetSdkVersion") as Int)
versionCode = 1 versionCode = 1
versionName = "2.6.2" versionName = "2.6.3"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArgument("filter", "" + testInstrumentationRunnerArgument("filter", "" +
"com.otaliastudios.cameraview.tools.SdkExcludeFilter," + "com.otaliastudios.cameraview.tools.SdkExcludeFilter," +

@ -9,6 +9,16 @@ New versions are released through GitHub, so the reference page is the [GitHub R
> Starting from 2.4.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program. > Starting from 2.4.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program.
Companies can share a tiny part of their revenue and get private support hours in return. Thanks! Companies can share a tiny part of their revenue and get private support hours in return. Thanks!
##### v2.6.3
- <small>[Video]</small> New: `setAudioCodec` and `app:cameraAudioCodec` to choose the audio encoding format, thanks to [@EverydayPineapple][EverydayPineapple] ([#861][861])
- <small>[Camera1, Frame processing]</small> Fix: frame processing restarts automatically after taking a picture, thanks to [@jeffreyfjohnson][jeffreyfjohnson] ([#877][877])
- <small>[Camera1]</small> Improvement: catch more errors in Camera1 lifecycle to avoid crashes, thanks to [@Namazed][Namazed] ([#851][851] and [#897][897])
- <small>[CameraView]</small> Improvement: `setLifecycleOwner` is now nullable and will unbind the lifecycle, thanks to [@Namazed][Namazed] ([#798][798])
- <small>[Preview]</small> Improvement: the `CameraPreview` APIs are much more friendly for subclassing ([#816][816])
<https://github.com/natario1/CameraView/compare/v2.6.2...v2.6.3>
##### v2.6.2 ##### v2.6.2
- <small>[Frame processing]</small> New: `frame.getRotationToUser()` and `frame.getRotationToView()` APIs to help with processing vs. rendering ([#745][745]) - <small>[Frame processing]</small> New: `frame.getRotationToUser()` and `frame.getRotationToView()` APIs to help with processing vs. rendering ([#745][745])
@ -326,6 +336,8 @@ This is the last release before v2.
[vaibhavbhandula]: https://github.com/vaibhavbhandula [vaibhavbhandula]: https://github.com/vaibhavbhandula
[sewar]: https://github.com/sewar [sewar]: https://github.com/sewar
[hualong-shen]: https://github.com/hualong-shen [hualong-shen]: https://github.com/hualong-shen
[EverydayPineapple]: https://github.com/EverydayPineapple
[jeffreyfjohnson]: https://github.com/jeffreyfjohnson
[73]: https://github.com/natario1/CameraView/pull/73 [73]: https://github.com/natario1/CameraView/pull/73
@ -417,3 +429,9 @@ This is the last release before v2.
[754]: https://github.com/natario1/CameraView/pull/754 [754]: https://github.com/natario1/CameraView/pull/754
[775]: https://github.com/natario1/CameraView/pull/775 [775]: https://github.com/natario1/CameraView/pull/775
[779]: https://github.com/natario1/CameraView/pull/779 [779]: https://github.com/natario1/CameraView/pull/779
[798]: https://github.com/natario1/CameraView/pull/798
[816]: https://github.com/natario1/CameraView/pull/816
[851]: https://github.com/natario1/CameraView/pull/851
[861]: https://github.com/natario1/CameraView/pull/861
[877]: https://github.com/natario1/CameraView/pull/877
[897]: https://github.com/natario1/CameraView/pull/897

@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-1'
google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4' google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4'
github: [metadata] # TODO What's this? github: [metadata] # TODO What's this?
github_repo: CameraView github_repo: CameraView
github_version: 2.6.2 github_version: 2.6.3
github_branch: master github_branch: master
baseurl: '/CameraView' # Keep as an empty string if served up at the root baseurl: '/CameraView' # Keep as an empty string if served up at the root
collections: collections:

Loading…
Cancel
Save