Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## Version 2.6.1 *(2026-05-21)*

### Bug Fixes

* **Speculative fix for "Create Report" being unresponsive on Xiaomi / MIUI** – `BugReportActivity` is no longer launched with `FLAG_ACTIVITY_NEW_TASK` when invoked from an Activity context; the flag is preserved for the FAB's non-Activity overlay context where it is still required. The combination of `NEW_TASK` + a transparent destination is suspected of tripping MIUI's pop-up window gate, but the symptom reported in [#251](https://github.com/Manabu-GT/DebugOverlay-Android/issues/251) could not be reproduced on the maintainer's devices, so this is an exploratory change rather than a verified fix.

## Version 2.6.0 *(2026-05-18)*

### New Features
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ DebugOverlay gives you a lightweight, always-available look into your app's runt

```kotlin
// app/build.gradle.kts
debugImplementation("com.ms-square:debugoverlay:2.6.0")
debugImplementation("com.ms-square:debugoverlay:2.6.1")

// That's it! Overlay appears automatically on app launch.
// Tap to open debug panel. Long-press to drag.
Expand Down Expand Up @@ -73,7 +73,7 @@ Add to `gradle/libs.versions.toml`:

```toml
[versions]
debugoverlay = "2.6.0"
debugoverlay = "2.6.1"

[libraries]
debugoverlay = { module = "com.ms-square:debugoverlay", version.ref = "debugoverlay" }
Expand All @@ -99,7 +99,7 @@ dependencies {
```kotlin
// app/build.gradle.kts
dependencies {
debugImplementation("com.ms-square:debugoverlay:2.6.0")
debugImplementation("com.ms-square:debugoverlay:2.6.1")
}
```

Expand Down Expand Up @@ -154,8 +154,8 @@ For a zero-config shake trigger, add the shake extension:

```kotlin
dependencies {
debugImplementation("com.ms-square:debugoverlay:2.6.0")
debugImplementation("com.ms-square:debugoverlay-extension-trigger-shake:2.6.0")
debugImplementation("com.ms-square:debugoverlay:2.6.1")
debugImplementation("com.ms-square:debugoverlay-extension-trigger-shake:2.6.1")
}
```

Expand Down Expand Up @@ -207,8 +207,8 @@ The value also bounds the `logcat -T N` / `-t N` calls, so it caps how many line

```kotlin
dependencies {
debugImplementation("com.ms-square:debugoverlay:2.6.0")
debugImplementation("com.ms-square:debugoverlay-extension-okhttp:2.6.0")
debugImplementation("com.ms-square:debugoverlay:2.6.1")
debugImplementation("com.ms-square:debugoverlay-extension-okhttp:2.6.1")
}
```

Expand Down Expand Up @@ -239,8 +239,8 @@ val client = OkHttpClient.Builder()

```kotlin
dependencies {
debugImplementation("com.ms-square:debugoverlay:2.6.0")
debugImplementation("com.ms-square:debugoverlay-extension-timber:2.6.0")
debugImplementation("com.ms-square:debugoverlay:2.6.1")
debugImplementation("com.ms-square:debugoverlay-extension-timber:2.6.1")
}
```

Expand Down Expand Up @@ -364,7 +364,7 @@ android {
}

dependencies {
"releaseWithOverlayImplementation"("com.ms-square:debugoverlay:2.6.0")
"releaseWithOverlayImplementation"("com.ms-square:debugoverlay:2.6.1")
}
```

Expand Down
Loading