Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps me.saket.telephoto:zoomable from 0.14.0 to 0.18.0.

Release notes

Sourced from me.saket.telephoto:zoomable's releases.

0.18.0

Improvements

0.17.0

Highlights

  • #45, #88, #140, #150, #152, #158: Upscaled images can now be zoomed.
  • saket/telephoto#135: Zoom to a specific pixel using ZoomFocalPoint:
    val imageState = rememberZoomableImageState()
    imageState.zoomableState.zoomTo(
      zoomFactor = 2f,
      focal = ZoomFocalPoint.moveToViewportCenter(…), // or zoomAround()
    )
  • saket/telephoto#141: Selectively disable zooming or panning:
    ZoomableAsyncImage(
      model = "https://dog.ceo",
      contentDescription = "",
      gestures = EnabledZoomGestures.ZoomOnly,  // or PanOnly
    )

⚠️ Potentially breaking changes

  • When a small image is upscaled to fit the viewport, its starting scale can be larger than its maximum zoom limit. In such cases, the image wouldn't respond to zoom gestures. telephoto now automatically increases the max zoom limit when this happens, ensuring the image can still be zoomed.
    • To disable this, pass DynamicZoomSpec.fixed(…) to rememberZoomableState().
    • If you're using a custom DoubleClickToZoomListener listener, review its behavior with small images.
  • The receiver of DoubleClickToZoomListener#onDoubleClick() has changed. This API was already marked experimental.
  • FlickToDismiss() now uses rubber banding. More on this below.

Improvements

  • ZoomableImage() / Modifier.zoomable
    • Added DynamicZoomSpec for lazy calculation of zoom limits using the layout info.
    • Improved zooming using mouse-wheel scrolls on JVM.
    • Migrated to LocalHapticFeedback so haptics can be customized or disabled.
  • SubSamplingImage()

Bug fixes

  • saket/telephoto#146: Added missing contentPadding param to ZoomableAsyncImage() (by @​xertrec).
  • saket/telephoto#160: Fixed ignored overzoom effect for under-zooms (by @​FooIbar).
  • Fixed broken double-click zooming for images that use ContentScale.FillBounds.
  • zoomTo() and zoomBy() no longer crash when given invalid or out-of-bound zoom factors.

Unreleased libraries

This release also includes updates to FlickToDismiss(). While it hasn't been officially released yet, some major apps have already started using it. I plan to announce it soon, but in the meantime here are the changes:

  • Improved drag physics and added a rubber banding effect. You can customize this via rememberFlickToDismissState().

... (truncated)

Commits
  • 24f28ad Prepare to release v0.18.0
  • 46f00b5 Update readme.md
  • d3c4036 Relax screenshot diff tolerance by a bit in SubSamplingImageTest
  • 7cb83b6 Fix a test failing with FileNotFoundException
  • 4ff23fa Rename undoExifTransformations -> withReverseExifTransformations
  • ee2524e Add support for rendering images flipped using exif metadata
  • af440c9 Add failing tests for images with 2,4,5,7 exif orientations
  • db95e6c Prepare next development version
  • 010d9de Enable rubber banding in FlickToDismiss() by default
  • 9893d17 Prepare to release v0.17.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [me.saket.telephoto:zoomable](https://github.com/saket/telephoto) from 0.14.0 to 0.18.0.
- [Release notes](https://github.com/saket/telephoto/releases)
- [Commits](saket/telephoto@0.14.0...0.18.0)

---
updated-dependencies:
- dependency-name: me.saket.telephoto:zoomable
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Oct 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant