1 days ago
Balloon

1.7.1

What's Changed

New Contributors

Full Changelog: https://github.com/skydoves/Balloon/compare/1.7.0...1.7.1

2 days ago
ImageToolbox

3.5.2

What's Changed

  • Added 6 new filters:
    • Border Frame by #2380
    • Glitch Variant
    • VHS
    • Block Glitch
    • Crt Curvature
    • Pixel Melt
  • Added ability to select default image format and quality by #2364
  • Fixed ASCII art tool by #2383
  • Fixed splashscreen animation
  • Fixed snowfall

Full Changelog: https://github.com/T8RIN/ImageToolbox/compare/3.5.1...3.5.2

3 days ago
ImageToolbox

3.5.1

What's Changed

  • Added snowfall on main page
  • Added auto background remover to foss version through U2Net, and ability to choose it over MlKit in market version
  • Added ability to use generative inpainting (Spot Heal) by #2327
  • Added ability to view metadata in image previews by #2340
  • Added 4 new filters by #2342
    • Error Level Analysis
    • Luminance Gradient
    • Average Distance
    • Copy Move Detection
  • Added 9 new pixelization filters:
    • Simple Weave Pixelization
    • Staggered Pixelization
    • Cross Pixelization
    • Micro Macro Pixelization
    • Orbital Pixelization
    • Vortex Pixelization
    • Pulse Grid Pixelization
    • Nucleus Pixelization
    • Radial Weave Pixelization
  • Fixed TIFF converter by #2343
  • Fixed crash while scrolling crop masks by #2351
  • Fixed crash when trying to copy too large text by #2355
  • Fixed crash when trying to open several links by #2359
  • Fixed broken splashscreen on android < 12 by #2378
  • Fixed U2Net auto background remover and generative inpainting by #2376

Full Changelog: https://github.com/T8RIN/ImageToolbox/compare/3.5.0...3.5.1

4 days ago
ImageToolbox

3.5.0

What's Changed

  • Added auto background remover to foss version through U2Net, and ability to choose it over MlKit in market version
  • Added ability to use generative inpainting (Spot Heal) by #2327
  • Added ability to view metadata in image previews by #2340
  • Added 4 new filters by #2342
    • Error Level Analysis
    • Luminance Gradient
    • Average Distance
    • Copy Move Detection
  • Added 9 new pixelization filters:
    • Simple Weave Pixelization
    • Staggered Pixelization
    • Cross Pixelization
    • Micro Macro Pixelization
    • Orbital Pixelization
    • Vortex Pixelization
    • Pulse Grid Pixelization
    • Nucleus Pixelization
    • Radial Weave Pixelization
  • Fixed TIFF converter by #2343
  • Fixed crash while scrolling crop masks by #2351
  • Fixed crash when trying to copy too large text by #2355
  • Fixed crash when trying to open several links by #2359

Full Changelog: https://github.com/T8RIN/ImageToolbox/compare/3.4.0...3.5.0

5 days ago
android-gif-drawable
7 days ago
Balloon

1.7.0

Release Notes for Balloon 1.7.0.

New Features

  • Introduce Modifier.balloon() and BalloonState for Jetpack Compose (#904)
    • New modifier-based API for attaching balloon tooltips to composables
    • rememberBalloonState() for managing balloon state
    • Deprecates the Balloon() composable and BalloonWindow interface
  • Support individual properties for BalloonOverlayRoundRect (#903)
    • Allows setting individual corner radii for overlay round rectangles
  • Implement effective arrow sizes (#900)
    • Better arrow size calculations for improved positioning

Now, the Balloon composable function will be deprecated. Migration guides from Balloon composable to Modifier.balloon():

Before (Deprecated)

  var balloonWindow: BalloonWindow? by remember { mutableStateOf(null) }

  Balloon(
    builder = builder,
    onBalloonWindowInitialized = { balloonWindow = it },
    onComposedAnchor = { balloonWindow?.showAlignTop() },
    balloonContent = {
      Text(text = "Tooltip content")
    },
  ) {
    Button(onClick = { balloonWindow?.showAlignTop() }) {
      Text(text = "Show Balloon")
    }
  }

After (New API)

  val balloonState = rememberBalloonState(builder)

  LaunchedEffect(Unit) {
    balloonState.showAlignTop()
  }

  Button(
    modifier = Modifier.balloon(balloonState) {
      Text(text = "Tooltip content")
    },
    onClick = { balloonState.showAlignTop() },
  ) {
    Text(text = "Show Balloon")
  }

Bug Fixes and Improvements

  • Disable focus to prevent focus highlight on D-pad navigation (#902)
  • Apply stroke/border in non-clipped mode as well (#901)
  • Migrate to Subcompose layout to measure layout sizes (#898)
    • Fixes black screen issue during SplashScreen (#786)
  • Correct measuring logic with adjusted padding sequences (#897)
  • Use EXACTLY mode for fixed heights, AT_MOST for wrap content (#896)
    • Fixes nested layout measurement issues
  • Fix: Clear any theme-applied background tint (#893)

Deprecations

The following APIs are now deprecated in favor of the new Modifier.balloon() API:

  • Balloon() composable - Use Modifier.balloon() with rememberBalloonState()
  • BalloonWindow interface - Use BalloonState
  • rememberBalloonWindow() - Use rememberBalloonState()
  • awaitBalloonWindows() and AwaitBalloonWindowsDsl
10 days ago
react-native

0.83.1

Fixed

Android specific

  • Fix Network error that could occur for FormData uploads with binary data (471ef7212e by @huntie)

Hermes dSYMS:

Hermes V1 dSYMS:

ReactNativeDependencies dSYMs:

ReactNative Core dSYMs:


You can file issues or pick requests against this release here.


To help you upgrade to this version, you can use the Upgrade Helper ⚛️.


View the whole changelog in the CHANGELOG.md file.

18 days ago
react-native

0.83.0


Hermes dSYMS:

Hermes V1 dSYMS:

ReactNativeDependencies dSYMs:

ReactNative Core dSYMs:


You can file issues or pick requests against this release here.


To help you upgrade to this version, you can use the Upgrade Helper ⚛️.


View the whole changelog in the CHANGELOG.md file.

20 days ago
react-native

0.83.0-rc.5

Fixed

  • Fix remaining missing debugger build flags for open source builds (#54770 by @huntie)
  • Exclude legacy Hermes targets from single host assertion (#54790 by @huntie)
  • Fix multipart/form-data request payload previews on Android (#54804 by @huntie)

Hermes dSYMS:

Hermes V1 dSYMS:

ReactNativeDependencies dSYMs:

ReactNative Core dSYMs:


You can file issues or pick requests against this release here.


To help you upgrade to this version, you can use the Upgrade Helper ⚛️.


View the whole changelog in the CHANGELOG.md file.

23 days ago
GSYVideoPlayer