You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
1
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
2
2
3
3
## [Unreleased]
4
+
### Fixed
5
+
-**Threading**: `currentBackStack` and `currentApplicationBackStack` now run ADB on a background thread and show popups on EDT; PSI lookups wrapped in `ReadAction.compute`
6
+
-**Crash**: `GetFragmentsCommand` — safe split access with `getOrNull` instead of hardcoded index, avoids `ArrayIndexOutOfBoundsException`
7
+
-**Crash**: `GetApplicationBackStackCommand` — safe array bounds (`getOrNull`) and removed `!!` force-unwrap on `find {}` result
8
+
-**Crash**: `Debugger` — replaced `client!!` with null-safe early return to avoid `NullPointerException` when the debug client is unavailable
9
+
-**Resource leak**: `AdbControllerImp` now implements `Disposable` and removes the `AndroidDebugBridge` device-change listener in `dispose()`
10
+
-**Resource leak**: `BaseAction` — `AdbControllerImp` is disposed immediately after the synchronous device-list read, instead of being incorrectly registered against `Project` as a long-lived disposable parent
11
+
-**Resource leak**: `AdbDrawerViewer` — `AdbControllerImp` is now registered against `toolWindow.disposable` instead of `Project`; the controller's lifetime correctly matches the tool window, not the entire project
12
+
13
+
### Changed
14
+
-`BaseAction` no longer uses `Disposer.register(project, controller)` — the controller is disposed explicitly after `connectedDevices()` returns, which is safe because the call is synchronous
15
+
16
+
### Removed
17
+
- Debug `println` statements from `SpockAdbViewer` and `GetApplicationBackStackCommand`
18
+
- Large commented-out dead code blocks in `SpockAdbViewer`, `ConnectDeviceOverIPCommand`, and `CheckBoxDialog`
19
+
- Duplicate empty `setting.addActionListener {}` in `SpockAdbViewer`
20
+
21
+
### Internal
22
+
- Fixed exception message `"Bazinga!!"` in `GetApplicationPermission` → professional message
23
+
- Renamed `kippAppProcess` → `killAppProcess` (typo fix) in `ProcessDeathCommand`
0 commit comments