Release v2.7.2

pull/1140/head
Mattia Iavarone 4 years ago
parent 9d1306448e
commit ceaa105a22
  1. 2
      README.md
  2. 2
      cameraview/build.gradle.kts
  3. 7
      docs/_about/changelog.md
  4. 25
      docs/_about/install.md
  5. 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.7.1' api 'com.otaliastudios:cameraview:2.7.2'
``` ```
- Fast & reliable - Fast & reliable

@ -54,7 +54,7 @@ publisher {
project.addDeveloper("natario1", "mat.iavarone@gmail.com") project.addDeveloper("natario1", "mat.iavarone@gmail.com")
release.sources = Release.SOURCES_AUTO release.sources = Release.SOURCES_AUTO
release.docs = Release.DOCS_AUTO release.docs = Release.DOCS_AUTO
release.version = "2.7.1" release.version = "2.7.2"
directory() directory()

@ -9,6 +9,12 @@ 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.7.2
- Fix: fix camera rotation handling for Compose apps and other specific scenarios ([#1117][1117])
<https://github.com/natario1/CameraView/compare/v2.7.1...v2.7.2>
##### v2.7.1 ##### v2.7.1
- Fix: fix preview issues on Pixel 4A with certain FPS, thanks to [@honzasmuk][honzasmuk] ([#1089][1089]) - Fix: fix preview issues on Pixel 4A with certain FPS, thanks to [@honzasmuk][honzasmuk] ([#1089][1089])
@ -476,3 +482,4 @@ This is the last release before v2.
[1089]: https://github.com/natario1/CameraView/pull/1089 [1089]: https://github.com/natario1/CameraView/pull/1089
[1068]: https://github.com/natario1/CameraView/pull/1068 [1068]: https://github.com/natario1/CameraView/pull/1068
[1066]: https://github.com/natario1/CameraView/pull/1066 [1066]: https://github.com/natario1/CameraView/pull/1066
[1117]: https://github.com/natario1/CameraView/pull/1117

@ -8,20 +8,31 @@ order: 1
The library works on API 15+, which is the only requirement and should be met by most projects nowadays. The library works on API 15+, which is the only requirement and should be met by most projects nowadays.
It is publicly hosted on [Maven Central](https://repo.maven.apache.org/maven2/com/otaliastudios/cameraview), where you It is publicly hosted on [Maven Central](https://repo.maven.apache.org/maven2/com/otaliastudios/cameraview), where you
can download the AAR package. To fetch with Gradle, make sure you add the Maven Central repository in your root projects `build.gradle` file: can download the AAR package. To fetch with Gradle, make sure you add the Maven Central repository:
```groovy ```kotlin
allprojects {
repositories { repositories {
mavenCentral() mavenCentral()
} }
}
``` ```
Then simply download the latest version: Then simply download the latest version:
```groovy ```kotlin
api 'com.otaliastudios:cameraview:{{ site.github_version }}' api("com.otaliastudios:cameraview:{{ site.github_version }}")
```
No other configuration steps are needed. If you want to try features that were not released yet,
you can pull the latest snapshot by adding the Sonatype snapshot repository:
```kotlin
repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
``` ```
No other configuration steps are needed. And depending on the latest-SNAPSHOT version:
```kotlin
api("com.otaliastudios:cameraview:latest-SNAPSHOT")
```

@ -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.7.1 github_version: 2.7.2
github_branch: main github_branch: main
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