diff --git a/changelogs-stable.txt b/changelogs-stable.txt index ce7a388e..4d6f9331 100644 --- a/changelogs-stable.txt +++ b/changelogs-stable.txt @@ -1,3 +1,15 @@ +## v1.2.5 +- Fix: Prevent snap replay/missed audio voice call(tq to RSR) +- New: Call Recording UI(tq to RSR) +- Fix: weird Search bar behaviour in overlay +- New: wrong architecture detector +- Fix: Arabic Translation(tq to RSR) +- New: Fresh look of PurrAura Indicator(tq to RSR) +- Fix: no such directory auto patcher +- New: Auto Mapper for Manage Friend List(tq to RSR) +- Fix: remove audio note duration & transcription(tq to RSR) +- Fix: Missing translations + ## v1.2.0 - Fix: Prevent snap replay/missed audio voice call(thanks to RSR) - Fix: Various messaging fixes for newer snap versions(thanks to RSR) diff --git a/core/src/main/kotlin/me/eternal/purrfectsnap/core/ui/InAppOverlay.kt b/core/src/main/kotlin/me/eternal/purrfectsnap/core/ui/InAppOverlay.kt index d353d17a..df09cff0 100644 --- a/core/src/main/kotlin/me/eternal/purrfectsnap/core/ui/InAppOverlay.kt +++ b/core/src/main/kotlin/me/eternal/purrfectsnap/core/ui/InAppOverlay.kt @@ -205,15 +205,18 @@ class InAppOverlay( -1 at -deviceWidth.toFloat() 0 at 0f 1 at deviceWidth.toFloat() - }, - confirmValueChange = { - if (it == 0) return@AnchoredDraggableState true - toast.visible = false - true } ) } val flingBehavior = AnchoredDraggableDefaults.flingBehavior(draggableState) + LaunchedEffect(draggableState) { + snapshotFlow { draggableState.currentValue } + .collect { value -> + if (value != 0) { + toast.visible = false + } + } + } Box( modifier = Modifier