diff --git a/README.md b/README.md index c57840f..dcbf1c3 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A collection of flexible Android components that support zooming and panning of images, video streams, and much more - either programmatically or through touch events. ```groovy -implementation 'com.otaliastudios:zoomlayout:1.7.1' +implementation 'com.otaliastudios:zoomlayout:1.8.0' ``` - `ZoomLayout`: a container that supports 2D pan and zoom to a View hierarchy, even supporting clicks [[docs]](https://natario1.github.io/ZoomLayout/docs/zoom-layout) diff --git a/docs/_about/changelog.md b/docs/_about/changelog.md index 7376d02..18f052f 100644 --- a/docs/_about/changelog.md +++ b/docs/_about/changelog.md @@ -9,6 +9,18 @@ New versions are released through GitHub, so the reference page is the [GitHub R Starting from 1.7.0, you can now [support development](https://github.com/natario1/ZoomLayout/issues/125) through the GitHub Sponsors program. Companies can share a tiny part of their revenue and get private support hours in return. Thanks! +#### v1.8.0 + +- Enhancement: raise an exception if a drawable without intrinsic dimensions is used ([#157][157]) +- Enhancement: overzoom customization ([#164][164]) +- Enhancement: max less than min ([#166][166]) +- Enhancement: move to center ([#167][167]) +- Fix: cancel fling with touch ([#159][159]) +- Fix: pan to center ([#158][158]) +- Fix: updated video url ([#156][156]) + + + #### v1.7.1 - Enhancement: the Egloo library is now a declared dependency and you don't need to add it separately. ([#136][136]) @@ -88,3 +100,10 @@ Companies can share a tiny part of their revenue and get private support hours i [105]: https://github.com/natario1/ZoomLayout/pull/105 [114]: https://github.com/natario1/ZoomLayout/pull/114 [136]: https://github.com/natario1/ZoomLayout/pull/136 +[157]: https://github.com/natario1/ZoomLayout/pull/157 +[164]: https://github.com/natario1/ZoomLayout/pull/164 +[166]: https://github.com/natario1/ZoomLayout/pull/166 +[167]: https://github.com/natario1/ZoomLayout/pull/167 +[159]: https://github.com/natario1/ZoomLayout/pull/159 +[158]: https://github.com/natario1/ZoomLayout/pull/158 +[156]: https://github.com/natario1/ZoomLayout/pull/156 diff --git a/docs/_config.yml b/docs/_config.yml index 853cbbf..55af2ca 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-4' google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4' github: [metadata] # TODO What's this? github_repo: ZoomLayout -github_version: 1.7.1 +github_version: 1.8.0 github_branch: master baseurl: '/ZoomLayout' # Keep as an empty string if served up at the root collections: diff --git a/library/build.gradle.kts b/library/build.gradle.kts index 5625eae..2e82bc4 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -13,7 +13,7 @@ android { defaultConfig { setMinSdkVersion(property("minSdkVersion") as Int) setTargetSdkVersion(property("targetSdkVersion") as Int) - versionName = "1.7.1" + versionName = "1.8.0" } buildTypes {