Release v2.6.2 (#794)

* Remove codecov token

* Release v2.6.2
pull/798/head v2.6.2
Mattia Iavarone 5 years ago committed by GitHub
parent fa26b2a654
commit 778cdedc00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .github/workflows/build.yml
  2. 2
      README.md
  3. 2
      cameraview/build.gradle
  4. 14
      docs/_about/changelog.md
  5. 2
      docs/_config.yml

@ -110,6 +110,5 @@ jobs:
- name: Upload merged coverage report (Codecov) - name: Upload merged coverage report (Codecov)
uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1
with: with:
token: ${{ secrets.CODECOV_KEY }}
file: ./cameraview/build/reports/mergedCoverageReport/* file: ./cameraview/build/reports/mergedCoverageReport/*
fail_ci_if_error: true fail_ci_if_error: true

@ -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.1' api 'com.otaliastudios:cameraview:2.6.2'
``` ```
- Fast & reliable - Fast & reliable

@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.bintray'
// Required by bintray // Required by bintray
version = '2.6.1' version = '2.6.2'
group = 'com.otaliastudios' group = 'com.otaliastudios'
//region android dependencies //region android dependencies

@ -9,6 +9,15 @@ 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.2
- <small>[Frame processing]</small> New: `frame.getRotationToUser()` and `frame.getRotationToView()` APIs to help with processing vs. rendering ([#745][745])
- <small>[Camera1, Camera2]</small> New: `cameraPreviewFrameRateExact="true|false"` to tell whether the desired preview frame rate should be as exact as possible, thanks to [@hualong-shen][hualong-shenn] ([#754][754])
- <small>[Logging]</small> Improvement: `CameraLogger` is now thread safe, thanks to [@Namazed][Namazed] ([#779][779])
- <small>[Permissions]</small> Improvement: added runtime API `setRequestPermissions()` that matches the XML attribute, thanks to [@Namazed][Namazed] ([#775][775])
<https://github.com/natario1/CameraView/compare/v2.6.1...v2.6.2>
##### v2.6.1 ##### v2.6.1
- <small>[Video]</small> New: `takeVideo(FileDescriptor)` for file descriptors, thanks to [@sewar][sewar] ([#732][732]) - <small>[Video]</small> New: `takeVideo(FileDescriptor)` for file descriptors, thanks to [@sewar][sewar] ([#732][732])
@ -316,6 +325,7 @@ This is the last release before v2.
[RAN3000]: https://github.com/RAN3000 [RAN3000]: https://github.com/RAN3000
[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
[73]: https://github.com/natario1/CameraView/pull/73 [73]: https://github.com/natario1/CameraView/pull/73
@ -403,3 +413,7 @@ This is the last release before v2.
[724]: https://github.com/natario1/CameraView/pull/724 [724]: https://github.com/natario1/CameraView/pull/724
[732]: https://github.com/natario1/CameraView/pull/732 [732]: https://github.com/natario1/CameraView/pull/732
[741]: https://github.com/natario1/CameraView/pull/741 [741]: https://github.com/natario1/CameraView/pull/741
[745]: https://github.com/natario1/CameraView/pull/745
[754]: https://github.com/natario1/CameraView/pull/754
[775]: https://github.com/natario1/CameraView/pull/775
[779]: https://github.com/natario1/CameraView/pull/779

@ -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.1 github_version: 2.6.2
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